Changed Microsoft.FreshPaint to Paint3D

On lines 16 and 24 I changed Microsoft.FreshPaint to Microsoft.Paint3D
This commit is contained in:
Richard Newton 2017-12-28 20:26:09 -08:00 committed by GitHub
parent 3555fec619
commit f1e1187ba9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ Function Start-Debloat {
#Removes AppxPackages
Get-AppxPackage -AllUsers |
Where-Object {$_.name -notlike "*Microsoft.FreshPaint*"} |
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*"} |
@ -21,7 +21,7 @@ Function Start-Debloat {
#Removes AppxProvisionedPackages
Get-AppxProvisionedPackage -online |
Where-Object {$_.packagename -notlike "*Microsoft.FreshPaint*"} |
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*"} |