Effortless deployment, optimization, and system fixes.
Author: shouravx | GitHub: shouravx/Windows-Scripts | Live: itrun.pages.dev
irm https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/windowsScripts.ps1 -OutFile "$env:USERPROFILE\Downloads\windowsScripts.ps1"Then run it:
powershell -NoProfile -ExecutionPolicy Bypass -File "$env:USERPROFILE\Downloads\windowsScripts.ps1"Two steps instead of one, and worth it: the file lands on disk where Defender can scan it normally and you can read it before it runs. This is the path to use on a managed or corporate machine.
irm itrun.pages.dev | iexConvenient, but fetch-and-execute-in-memory is the shape of the ClickFix malware technique, so Microsoft Defender scores it on behaviour rather than content. On machines with current signatures it can be terminated outright — see Blocked by Defender below. Prefer the download-then-run method above.
powershell -NoProfile -ExecutionPolicy Bypass -Command "iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/windowsScripts.ps1')"If a window flashes and closes instantly, or you see:
[process exited with code 3221225506 (0xc0000022)]
that is STATUS_ACCESS_DENIED — the process was terminated, not a script that failed. A script that fails returns 1. This code means security software stopped it before it could run.
Confirm it: Windows Security → Virus & threat protection → Protection history. A block from this toolkit appears as Trojan:Win32/ClickFix.*.
Why it happens: Defender's ClickFix family matches the behaviour of downloading a script and executing it, which is what a remote-run toolkit does by design. It is a false positive on intent, not on behaviour — the behaviour really is the same. It hits some machines and not others depending on signature version and cloud-protection state.
What to do, in order:
- Use the download-then-run method above rather than the one-liner.
- Report the false positive to Microsoft at microsoft.com/wdsi/filesubmission — this is the only route that fixes it for everyone.
- On managed fleets, have IT add a path exclusion for
%LOCALAPPDATA%\WindowsScriptsvia policy.
Do not disable Defender or tell users to. If a tool needs real-time protection turned off to run, that is a reason to distrust the tool.
windowsScripts.ps1 is a centralized Admin-elevated menu built for IT professionals and power users. It collapses complex multi-step tasks into single-key commands.
- Compatibility: Windows 10 (all builds) & Windows 11
- Smart Elevation: Requests UAC once — handles the rest automatically
- Multi-Tasking: Launches each tool in its own window so the main menu stays open
- Zero Install: Run directly from the cloud via
wsrun.pages.devor GitHub Raw
Run a specific tool immediately — no need to open the main menu.
| Tool | Command |
|---|---|
| App Framework | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/Auto-App-Installer-Framework/autoInstallFromLocal.ps1') |
| Office 365 | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/office-Install/o365.ps1') |
| Office LTSC 2021 | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/office-Install/oLTSC-2021.ps1') |
| Microsoft Store (LTSC) | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/LTSC-ADD-MS_Store-2019/DL-RUN.ps1') |
| Edge Installer | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/MicroSoft-Edge/installEdge.ps1') |
| RICHO Printer Setup | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/AddPrinterRICHO/aoRICHO.ps1') |
| Tool | Command |
|---|---|
| New Outlook | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/New%20Outlook%20Uninstaller/uninstall-NOU.ps1') |
| Microsoft Edge | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/MicroSoft-Edge/edge-Uninstall.ps1') |
| Tool | Command |
|---|---|
| Windows Tuner | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/Windows-Optimizer/wp-Tuner.ps1') |
| Windows Optimizer | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/Windows-Optimizer/Windows-Optimizer.ps1') |
| Disable Updates | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/Windows-Update/Disable-WindowsUpdate.ps1') |
| Enable Updates | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/Windows-Update/Enable-WindowsUpdate.ps1') |
| Win 10 → 11 Upgrade | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/main/TO-Win11-Auto-Upgrade/Win11-AutoUpgrade.ps1') |
| Remove Duplicate Files | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/DupReaper/drip.ps1') |
| Time / Zone Formatter | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/timeZoneFormat/timeZoneFormat.ps1') |
| IP Config Tool | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/IPConfig/Ipconfig.ps1') |
| Tool | Command |
|---|---|
| MediCat USB Installer | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/main/Install-MediCatUSB/installMUSVB.ps1') |
| Disk Manager | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/main/DiskManager/diskmgr.ps1') |
| Extract Drivers | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/Driver-Extractor/dExtractor.ps1') |
| Install Extracted Drivers | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/Driver-Extractor/dInstaller.ps1') |
| DriverDex (Auto Driver Install) | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/DriverDex/DriverDex.ps1') |
| Auto Driver Deploy | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/main/AutoDriverDeploy/AutoDriverDeploy.ps1') |
| ERP Font Install | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/ERP-Automate/font_install.ps1') |
| ERP Automate Setup | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/ERP-Automate/run_Auto-ERP.ps1') |
| WARDEN [Registry Nexus] | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/regBack/WARDEN.ps1') |
| Intel Interrupt Fix | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/SystemInterrupt-Fix/Intel-SystemInterrupt-Fix.ps1') |
| WPT Interrupt Fix | iex (irm 'https://raw.githubusercontent.com/shouravx/Windows-Scripts/refs/heads/main/SystemInterrupt-Fix/wpt_interrupt_fix_plus.ps1') |
- UAC Elevation — Scripts require Administrator privileges to modify system settings, registry keys, and install software. Elevation is requested once and scoped to the session.
- Execution Policy —
-ExecutionPolicy Bypassonly affects the current PowerShell session. Your system-wide policy is not changed. - Review Before Running — Always inspect the raw source on GitHub before executing any script that touches system binaries or configuration.
Licensed under the MIT License — free to fork, modify, and distribute.