|
@@ -174,10 +174,10 @@ Function Protect-Privacy {
|
|
|
|
|
|
|
|
|
Write-Output "Removing CloudStore from registry if it exists"
|
|
|
- $CloudStore = 'HKCUSoftware\Microsoft\Windows\CurrentVersion\CloudStore'
|
|
|
+ $CloudStore = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\CloudStore'
|
|
|
If (Test-Path $CloudStore) {
|
|
|
Stop-Process Explorer.exe -Force
|
|
|
- Remove-Item $CloudStore
|
|
|
+ Remove-Item $CloudStore -Recurse -Force
|
|
|
Start-Process Explorer.exe -Wait
|
|
|
}
|
|
|
|