Changed Microsoft.FreshPaint to Paint3d

On lines 22 and 30 I changed the name of the app/package from Microsoft.FreshPaint to Paint3D
This commit is contained in:
Richard Newton 2017-12-28 20:25:14 -08:00 committed by GitHub
parent ac34625cc4
commit 3555fec619
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,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*"} |
@ -27,7 +27,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*"} |