Skip to content
View Colisian's full-sized avatar
πŸ’­
Forever learning...
πŸ’­
Forever learning...

Highlights

  • Pro

Block or report Colisian

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Colisian/README.md
  • πŸ‘‹ Hi, I’m @Colisian
  • πŸ‘€ CUrrently working as a LEad IT Engineer at the University of Maryland.
  • 🌱 Completed a Software Engineering Master's Degree at the UMGC while also employed at the University of Maryland.
  • πŸ’žοΈ Looking to use this page to post the different projects I am working on and to find learning resources to advance my skills.
  • πŸ“« How to reach me Email: [email protected] and https://www.linkedin.com/in/colisian-mcleod/
  • πŸ‘“ I mostly work with Powershell and Bash scripting, but also growing in .NET.

Pinned Loading

  1. PowerShell script that will delete a... PowerShell script that will delete all files in the folder "PanoptoRecorder" located in the C:\ drive that haven't been modified in the last 30 days:
    1
    Get-ChildItem -Path "C:\PanoptoRecorder" -Recurse | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-30) } | Remove-Item -Force -Recurse -Confirm:$false
    2
    
                  
    3