Changed $_.name on lines 24, 25, 32 and 33.

I changed the $_.name on lines 24, 25, 32, and 33 to $_.packagename since the whitelisted apps "Photos" and "Store" were still being removed.

Now they shouldn't be removed.
pull/11/merge
Richard Newton 7 years ago committed by GitHub
parent f1e1187ba9
commit d02dfa39ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 {

Loading…
Cancel
Save