https://github.com/levicm/win-tools
This is the a set of Windows 10/11 tool scripts, from a creation of multiple debloat scripts and gists from github.
https://github.com/levicm/win-tools
debloat scripts tweaks windows windows-10 windows-11
Last synced: 5 months ago
JSON representation
This is the a set of Windows 10/11 tool scripts, from a creation of multiple debloat scripts and gists from github.
- Host: GitHub
- URL: https://github.com/levicm/win-tools
- Owner: levicm
- Created: 2023-08-07T00:08:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-20T19:31:06.000Z (5 months ago)
- Last Synced: 2024-11-20T20:27:41.259Z (5 months ago)
- Topics: debloat, scripts, tweaks, windows, windows-10, windows-11
- Language: PowerShell
- Homepage:
- Size: 85.9 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - levicm/win-tools - This is the a set of Windows 10/11 tool scripts, from a creation of multiple debloat scripts and gists from github. (PowerShell)
README
# WinTools
This Windows Scripts is a creation from multiple debloat scripts and gists from github. The main origin was a Chris Titus repo. I also added other tools to the script that I install on every machine I use.## Modifications
I encourage people to fork this project and comment out things they don't like!
Comment any thing you don't want out...## Running all
To do all tweaks, debloats and installations you just have to run the win-all.ps1 script and a new Windows 10/11 machine will be prepered to use as I like, with the execution of the scripts:
* **win-tweaks.ps1**: lot of tweaks for Windows 10/11;
* **win-customize.ps1**: personalize Windows options such as showing task manager details, showing file operations details, disable news and interest, and so on...;
* **win-debloat.ps1**: uninstall Microsoft and third-party bloatwares;
* **win-enable-features.ps1**: enable Windows optional features such as Hyper-V and WSL;
* **win-install.ps1**: Instalation of Chocolatey Package Manager and:
* **install-essential-apps.ps1**: Instalation of some essential apps (windows-terminal, autohotkey, GoogleChrome, Firefox, NotepadPlusPlus, FoxitReader, Adobereader, 7zip, Bitwarden, powertoys);
* **install-tool-apps.ps1**: Instalation of some tool apps (virtualbox, vmware-workstation-player, etcher, scrcpy, ccleaner, hwinfo, speedtest, ext2fsd);
* **install-office-apps.ps1**: Instalation of some office apps (MS Office 365, LibreOffice);
* **install-dev-apps.ps1**: Instalation of some develop apps (VS Code, Eclipse);
* **install-media-apps.ps1**: Instalation of some media apps (VLC, BSPlayer);Copy and paste this line on a PowerShell screen with admin rights, press ENTER and all the magic will be done:
```
iex (irm https://raw.githubusercontent.com/levicm/win-tools/master/win-all.ps1);
```
If you have problems with the command aove, try to copy and paste this line on a PowerShell screen with admin rights, press ENTER and all the magic will be done:
```
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/levicm/win10script/master/win-all.ps1'));
```