mirror of
https://github.com/Sycnex/Windows10Debloater.git
synced 2024-11-24 11:45:29 +00:00
Fixed IfElse that disables People/PeopleBand
I added the suggested IfElse that disables the People/PeopleBand per issue number #76
This commit is contained in:
parent
4b62408986
commit
8f353b1059
@ -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…
Reference in New Issue
Block a user