You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Peering through the portal of PowerShell,
Perched a repository, most powerful.
Packed with scripts of all shapes and sizes,
Poised to pounce on your admin crises.
A dual-purpose PowerShell repository: an educational reference for learning PowerShell deeply, and a practical toolkit of real utility scripts.
The Learn/ files are annotated transcriptions of the LearnXInYMinutes PowerShell guide, with deep commentary on why PowerShell works the way it does. Comments explain concepts that seem weird compared to Python, Bash, C#, or JavaScript.
Finds existing software with Chocolatey packages and brings it under management
Update-PythonInstallation.ps1
Upgrades Python, removes old versions, upgrades pip, cleans venvs
Invoke-ScoopBrowser.ps1
Interactive Scoop package browser with background installs
Safe Mode
Script
What it does
Enter-SafeMode.ps1
Sets bcdedit safe mode flag and reboots (Safe Mode with Networking)
Exit-SafeMode.ps1
Clears safe mode flag (run before rebooting to return to normal)
Utilities
Script
What it does
Get-OpenWindows.ps1
Lists all processes with visible windows + their titles
Set-AdminAutoElevate.ps1
Adds auto-elevation to PowerShell profile
Remove-Silverlight.ps1
Fully removes Microsoft Silverlight (EOL Oct 2021)
Get-ScreenGeometry.ps1
Reports bounds + working area for all connected monitors
Sync-Directories.ps1
Robocopy-based directory sync with 64-thread parallel copy
Start-MSRewards.ps1
Opens Edge to search clicker for Microsoft Rewards points
AWS
Script
What it does
Invoke-AwsConfigure.ps1
Interactive AWS CLI setup with credential reuse and region selection
New-AwsAccount.ps1
Full AWS account hardening checklist (IAM, MFA, billing, CloudTrail, SSO)
Gaming
Script
What it does
Start-EDMultiAccount.ps1
Launches multiple Elite Dangerous accounts via Sandboxie
Invoke-SteamVerification.ps1
Forces Steam to verify all installed game files
Fun
Script
What it does
Get-PiApproximation.ps1
Approximates Pi via the Leibniz formula
Discord
Script
What it does
Send-RichEmbed.ps1
Posts a rich embed message to a Discord channel via webhook
Quick Start
# Run any script directly (some require admin)
.\Scripts\Windows\Maintenance\Invoke-SystemUpgrade.ps1# Get help for any scriptGet-Help .\Scripts\Windows\Utilities\Sync-Directories.ps1-Full
# Open a Learn file in VS Code
code .\Learn\01-Basics\01-datatypes-and-operators.ps1