From 3f997bf3f2111a226e5d90fd5534a1e2030e086e Mon Sep 17 00:00:00 2001 From: Richard Newton Date: Mon, 19 Feb 2018 07:59:58 -0800 Subject: [PATCH] Added comments to Start-Debloat function and FixWhitelistedApps function --- Windows10Debloater.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Windows10Debloater.ps1 b/Windows10Debloater.ps1 index 38b6986..dab69a9 100644 --- a/Windows10Debloater.ps1 +++ b/Windows10Debloater.ps1 @@ -18,6 +18,7 @@ Function Start-Debloat { Param() #Removes AppxPackages + #Credit to /u/GavinEke for a modified version of my whitelist code [regex]$WhitelistedApps = 'Microsoft.Paint3D|Microsoft.WindowsCalculator|Microsoft.WindowsStore|Microsoft.Windows.Photos' Get-AppxPackage -AllUsers | Where-Object {$_.Name -NotMatch $WhitelistedApps} | Remove-AppxPackage -ErrorAction SilentlyContinue Get-AppxProvisionedPackage -Online | Where-Object {$_.PackageName -NotMatch $WhitelistedApps} | Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue @@ -340,6 +341,7 @@ Function FixWhitelistedApps { If(!(Get-AppxPackage -AllUsers | Select Microsoft.Paint3D, Microsoft.WindowsCalculator, Microsoft.WindowsStore, Microsoft.Windows.Photos)) { + #Credit to abulgatz for these 4 lines of code Get-AppxPackage -allusers Microsoft.Paint3D | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} Get-AppxPackage -allusers Microsoft.WindowsCalculator | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}