diff --git a/Windows10Debloater.ps1 b/Windows10Debloater.ps1 index 11c3018..4e4f2d7 100644 --- a/Windows10Debloater.ps1 +++ b/Windows10Debloater.ps1 @@ -21,16 +21,16 @@ Function Start-Debloat { Get-AppxPackage -AllUsers | Where-Object {$_.name -notlike "*Microsoft.Paint3D*"} | Where-Object {$_.name -notlike "*Microsoft.WindowsCalculator*"} | - Where-Object {$_.name -notlike "*Microsoft.WindowsStore*"} | - Where-Object {$_.name -notlike "*Microsoft.Windows.Photos*"} | + Where-Object {$_.packagename -notlike "*Microsoft.WindowsStore*"} | + Where-Object {$_.packagename -notlike "*Microsoft.Windows.Photos*"} | Remove-AppxPackage -ErrorAction SilentlyContinue #Removes AppxProvisionedPackages Get-AppxProvisionedPackage -online | Where-Object {$_.packagename -notlike "*Microsoft.Paint3D*"} | Where-Object {$_.packagename -notlike "*Microsoft.WindowsCalculator*"} | - Where-Object {$_.name -notlike "*Microsoft.WindowsStore*"} | - Where-Object {$_.name -notlike "*Microsoft.Windows.Photos*"} | + Where-Object {$_.packagename -notlike "*Microsoft.WindowsStore*"} | + Where-Object {$_.packagename -notlike "*Microsoft.Windows.Photos*"} | Remove-AppxProvisionedPackage -online -ErrorAction SilentlyContinue } Function Remove-Keys {