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 f85d30555d
Add a line after the Win10 GUI image
2 weeks ago
src Fix GUI visual inconsistences 2 weeks ago
.gitignore Reorganize folder architecture 2 weeks ago
LICENSE Switch to the MIT License 2 weeks ago
OpenPowershellHere.cmd Make the execution less difficult and changes on #Resume 2 weeks ago
README.md Add a line after the Win10 GUI image 2 weeks ago
Win10Script.ps1 Reorganize folder architecture 2 weeks ago
Win10ScriptGUI.ps1 Fix GUI visual inconsistences 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 Should work on Build Editions Powershell version

🚀 Download [Zip]

21H2 and Older 22000.xxxx 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/Newer.

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

Common Script Features

Click to expand

*Optional: Means that you decide what to do.

Known Issues

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

Solutions

Click to expand

Open PowerShell as admin and copy paste:

Solution 1

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

Solution 5

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

Solution 6

Dism -Online -Disable-Feature -NoRestart -FeatureName:"Microsoft-Hyper-V-All"
Dism -Online -Disable-Feature -NoRestart -FeatureName:"HypervisorPlatform"
Dism -Online -Disable-Feature -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.