瀏覽代碼

Changed Microsoft.FreshPaint to Paint3D

On lines 16 and 24 I changed Microsoft.FreshPaint to Microsoft.Paint3D
Richard Newton 7 年之前
父節點
當前提交
f1e1187ba9
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Windows10DebloaterSilent.ps1

+ 2 - 2
Windows10DebloaterSilent.ps1

@@ -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*"} |