Jelajahi Sumber

This fixes issue #76

Richard Newton 6 tahun lalu
induk
melakukan
3f39bf232f
1 mengubah file dengan 3 tambahan dan 4 penghapusan
  1. 3 4
      Windows10SysPrepDebloater.ps1

+ 3 - 4
Windows10SysPrepDebloater.ps1

@@ -152,10 +152,9 @@ Function Protect-Privacy {
     
     
     #Disables People icon on Taskbar
     #Disables People icon on Taskbar
     Write-Output "Disabling People icon on Taskbar"
     Write-Output "Disabling People icon on Taskbar"
-    $People = 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People'    
-    If (!(Test-Path $People)) {
-        mkdir $People -ErrorAction SilentlyContinue
-        New-ItemProperty $People -Name PeopleBand -Value 0 -Verbose
+    $People = 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People'
+    If (Test-Path $People) {
+        Set-ItemProperty $People -Name PeopleBand -Value 0 -Verbose
     }
     }
 
 
     #Disables suggestions on start menu
     #Disables suggestions on start menu