Fixed IfElse that disables People/PeopleBand

I added the suggested IfElse that disables the People/PeopleBand per issue number #76
pull/82/head^2
Richard Newton 5 years ago committed by GitHub
parent 4b62408986
commit 8f353b1059
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save