12 lines
444 B
PowerShell
12 lines
444 B
PowerShell
$registryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent"
|
|
$Name = "DisableWindowsConsumerFeatures "
|
|
$value = "1"
|
|
|
|
IF(!(Test-Path $registryPath))
|
|
{
|
|
New-Item -Path $registryPath -Force | Out-Null
|
|
New-ItemProperty -Path $registryPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null
|
|
}
|
|
ELSE {
|
|
New-ItemProperty -Path $registryPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null
|
|
} |