Sfoglia il codice sorgente

Fixed IfElse that disables People/PeopleBand

I added the suggested IfElse that disables the People/PeopleBand per issue number #76
Richard Newton 6 anni fa
parent
commit
8f353b1059
1 ha cambiato i file con 4 aggiunte e 3 eliminazioni
  1. 4 3
      Windows10Debloater.ps1

+ 4 - 3
Windows10Debloater.ps1

@@ -268,12 +268,13 @@ Function Protect-Privacy {
     Set-ItemProperty $LocationConfig Status -Value 0 
         
     #Disables People icon on Taskbar
+        #Disables People icon on Taskbar
     Write-Output "Disabling People icon on Taskbar"
-    $People = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People"    
+    $People = 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People'
     If (!(Test-Path $People)) {
-        New-Item $People
+        mkdir $People -ErrorAction SilentlyContinue
+        New-ItemProperty $People -Name PeopleBand -Value 0 -Verbose
     }
-    Set-ItemProperty $People  PeopleBand -Value 0 
         
     #Disables scheduled tasks that are considered unnecessary 
     Write-Output "Disabling scheduled tasks"