Re-imagining Windows like a minimal OS install, already debloated with minimal impact for most functionality.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Plínio Larrubia 8ed6460cbc
Update known issues order
- Add remaining solutions, except for Sysprep
2 weeks ago
.github/ISSUE_TEMPLATE Update issue templates 2 weeks ago
src Add Legacy Components required by DirectPlay 2 weeks ago
.gitignore Reorganize folder architecture 2 weeks ago
LICENSE Revert "Fixing README" 2 weeks ago
OpenPowershellHere.cmd Make the execution less difficult and changes on #Resume 2 weeks ago
README.md Update known issues order 2 weeks ago
Win10Script.ps1 Remove Repair windows part from CLI ver. 2 weeks ago
Win10ScriptGUI.ps1 Big changes on GUI and softwares 2 weeks ago

README.md

Win10 Smart Debloat

Adapted from W4RH4WK's Project

🚀 Download Latest Version

Code located in the main branch is always considered under development, but you'll probably want the most recent version anyway.

Download Version Supported Build Editions Powershell version

🚀 Download [Zip]

21H2 and Older 22000 Home/Pro v5.1

📄 Resume

This is an adapted version from another project. These scripts will Customize, Debloat and Improve Security/Performance on Windows 10/+.

⚠️ Disclaimer: If something breaks, it's under your responsibility.

🔄 Roll-Back

There is a undo (if works), because i did a restoration point script before doing everything.

Use on a fresh windows install to note the differences, and if something breaks, you can rely on a pre-made restoration point and the repair-windows.ps1 file.

Usage Requirements

The Script-Win10.ps1 do not make everything automatically, follow these steps.

  • Open OpenPowershellHere.cmd (For beginners) or the Powershell as admin on its folder.
  • Enable execution of PowerShell scripts and Unblock PowerShell scripts and modules within this directory.

GUI Version

  • Copy and Paste this entire line below on Powershell:
Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force; ls -Recurse *.ps*1 | Unblock-File; .\"Win10ScriptGUI.ps1"

Script GUI

The Apply Tweaks button is the main one.

CLI Version (Advice - If you want FULL Output to be displayed on the console, use this version)

  • Copy and Paste this entire line below on Powershell:
Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force; ls -Recurse *.ps*1 | Unblock-File; .\"Win10Script.ps1"

Scripts can be run individually, pick what you need.

GUI Script Features

Click to expand
  • Apply Tweaks: Run every 'non-interactive' Tweak scripts;
  • Repair Windows: Try to Completely fix the Windows worst problems via Command Line; (backup-system.ps1 and repair-windows.ps1)
  • Revert Tweaks: Re-apply some tweaks and revert all possible ones, covering the Scheduled Tasks, Services, Privacy and Performance and Personal Optimizations tweaks;
  • Dark Mode & Light Mode: Apply Dark Mode or Light Mode exclusively from GUI;
  • Enable Cortana & Disable Cortana: Let you choose whether the cortana is enabled or disabled;
  • Install CPU/GPU Drivers (Winget/Chocolatey): Install CPU and GPU drivers. (install-drivers.ps1);
    • The Latest CPU (Intel (Winget) and AMD) driver installer;
    • The Lastest Graphics driver of your GPU (Except AMD). See Intel (Winget) and NVIDIA, including GeForce Experience (Winget));
  • Install Gaming Dependencies: Install all Gaming Dependencies required to play games. (install-gaming-dependencies.ps1);
  • Every software installation is explicitly showed;

☑️ Common Script Features

Click to expand

Known Issues

  1. Start menu Search (WSearch indexing service will be disabled)
  2. Xbox Wireless Adapter (Fixed by not disabling the XboxGipSvc service)
  3. Issues with Skype (Microsoft.SkypeApp app will be uninstalled)
  4. Fingerprint Reader / Facial Detection not Working (WbioSrvc service will be disabled)
  5. Bluestacks doesn't work with Hyper-V enabled
  6. Sysprep will hang (Not Tested)

Solutions

Click to expand

Open PowerShell as admin and copy paste:

Solution 1

Get-Service WSearch | Set-Service -StartupType Automatic -PassThru | Start-Service

Solution 2

Get-Service Xb* | Set-Service -StartupType Automatic -PassThru | Start-Service

Solution 3

# Winget required first
winget install --silent "Microsoft.Skype"

Solution 4

Get-Service WbioSrvc | Set-Service -StartupType Automatic -PassThru | Start-Service

Solution 5

Disable-WindowsOptionalFeature -Online -NoRestart -FeatureName "Microsoft-Hyper-V-All"
Disable-WindowsOptionalFeature -Online -NoRestart -FeatureName "HypervisorPlatform"
Disable-WindowsOptionalFeature -Online -NoRestart -FeatureName "VirtualMachinePlatform"

Contribute

I would be happy to extend the collection of scripts. Just open an issue or send me a pull request. (Yes, if its useful, you can).

🤍 Credits

🏅 More Debloat Scripts (Community)

Click to expand

The scripts are designed to run With/Without (GUI/CLI) any user interaction. Modify them beforehand. If you want a more interactive approach check out:

🔎 How did i find specific Tweaks?

Click to expand

How To (Advanced Users)

By using SysInternal Suite Procmon(64).exe i could track the SystemSettings.exe by filtering it per Process Name, then Clearing the list (Ctrl + X) (But make sure it is Capturing the Events (Ctrl + E)) and finally, applying an option of the Windows Configurations and searching the Registry Key inside Procmon(64).exe.

Grab the current tweak on registry with Procmon64.exe

After finding the right register Key, you just need to Right-Click and select Jump To... (Ctrl + J) to get on its directory.

Showing on regedit

📝 License

Check the License file here.