Paste this into PowerShell — that's it:
irm https://raw.githubusercontent.com/MilcioSSQ/win-tools/main/install.ps1 | iexDownloads the latest version, elevates to admin, and opens the menu. Nothing is installed permanently.
| # | Tool | What it does |
|---|---|---|
| 1 | Bloatware Remover | Removes pre-installed UWP junk (News, Bing Weather, Skype, TikTok, …) |
| 2 | Autostart Cleaner | Lists and disables unnecessary startup entries; protects drivers and audio |
| 3 | Temp & Cache Cleaner | Clears %TEMP%, Windows Temp, Prefetch, browser cache, pip cache |
| 4 | Mouse Jiggle | Moves the mouse ±1 px every 5 min to prevent sleep / screensaver |
| 5 | Gaming Tweaks | Mouse acceleration off, Game DVR off, GPU scheduling, MMCSS, power plan |
| 6 | Defender Scan | Update signatures + quick / full / offline scan from one menu |
| 7 | Network Info | Local IPs, gateway, DNS, MAC, public IP, ping target |
| 8 | System Info | OS, CPU, GPU, RAM, disk, uptime, process count |
| 9 | Power Plan Switcher | Switch between Balanced, High Performance, and Power Saver |
| 10 | Dark Mode Toggle | Switch Windows dark / light mode without opening Settings |
If you cloned or downloaded the repo:
powershell -ExecutionPolicy Bypass -File .\win-tools.ps1Or run any tool standalone:
powershell -ExecutionPolicy Bypass -File .\tools\sysinfo.ps1
powershell -ExecutionPolicy Bypass -File .\tools\cleaner.ps1The launcher elevates itself automatically — just approve the UAC prompt.
win-tools/
├── install.ps1 # one-line launcher (irm | iex)
├── win-tools.ps1 # main launcher / menu
├── tools/
│ ├── bloatware.ps1
│ ├── autostart.ps1
│ ├── cleaner.ps1
│ ├── jiggle.ps1
│ ├── gaming.ps1
│ ├── defender.ps1
│ ├── network.ps1
│ ├── sysinfo.ps1
│ ├── powerplan.ps1
│ └── darkmode.ps1
├── screenshots/
├── LICENSE
└── README.md
- All changes made by Gaming Tweaks and Autostart Cleaner are reversible — backups are stored in
%LOCALAPPDATA%. - Bloatware Remover only targets known junk. Xbox, Store, and your drivers are never touched.
- Mouse Jiggle runs until you close the window or press
Ctrl+C.




