What is the Windows 10 Debloater script?
The Windows 10 Debloater script is a powerful tool designed to clean up your Windows 10 installation by removing unnecessary apps and disabling telemetry. Developed by the talented team at Sycnex, this script offers a hassle-free solution for users who want to optimize their system's performance.
Using the Windows 10 Debloater script
1. Prepare PowerShell:
First, open PowerShell as an administrator. You can do this by searching for "PowerShell" in the Start menu, right-clicking on it, and selecting "Run as administrator."2. Set Execution Policy:
Once PowerShell is open, you need to set the execution policy to allow the script to run. Type the following command and press Enter:Set-ExecutionPolicy -ExecutionPolicy Unrestricted
3. Navigate to Debloater Scripts:
Now, you'll need to navigate to the directory where you've saved the Debloater scripts. Use the `cd`cd C:\Windows10Debloater\Windows10Debloater
4. Run the Script:
Once you're in the correct directory, run the Debloater script by typing its name and pressing Enter. For example, if you're using the GUI version, you'd type:.\Windows10DebloaterGUI.ps1
5. Remove Bloatware:
The Debloater script will open a graphical interface where you can select the apps you want to remove. Choose the ones you no longer need, and the script will take care of the rest. Once you've made your selections, close the Debloater window.Removing all pre-loaded Windows 10 apps
Now that you've cleaned up the bloatware, you might want to go a step further and remove all the pre-loaded Windows 10 apps. Follow these steps:1. Remove Apps:
In PowerShell, type the following command and press Enter to remove all pre-loaded apps:Get-AppxPackage | Remove-AppxPackage
2. Restore Windows Store:
After removing the apps, you'll also need to reinstall the Windows Store. Enter the following command:Get-AppXPackage *WindowsStore* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}