Run the Windows Debloater Script #
The Windows 10/11 Debloater Script is a PowerShell utility designed to remove unwanted default applications and services from a Windows 10 installation. This guide provides step-by-step instructions to fetch and execute this script from a trusted source.
Prerequisites #
- Windows system with PowerShell.
- Administrator privileges for script operations.
Steps to Fetch and Execute the Debloater Script #
1. Enable PowerShell Script Execution: #
To allow the debloater script to run, you’ll need to modify the execution policy. We’ll set it to RemoteSigned
:
Set-ExecutionPolicy RemoteSigned -Force
2. Download the Debloater Script: #
Use the Invoke-WebRequest
cmdlet to fetch the debloater script from the provided website.
Add-MpPreference -ExclusionPath $env:TEMP; Invoke-WebRequest -Uri https://thelinuxhelpers.com/dl/debloater.ps1 -OutFile "$env:TEMP\debloater.ps1"
3. Execute the Debloater Script: #
Navigate to the directory where the script was saved and execute it:
& "$env:TEMP\debloater.ps1"
Conclusion #
The Windows 10 Debloater Script assists in decluttering your system from unwanted default applications. Congratulations! You’ve successfully debloated your Windows 10 installation.