diff --git a/Windows10SysPrepDebloater.ps1 b/Windows10SysPrepDebloater.ps1 index df9d026..f97de1b 100644 --- a/Windows10SysPrepDebloater.ps1 +++ b/Windows10SysPrepDebloater.ps1 @@ -176,7 +176,7 @@ Function Protect-Privacy { Write-Output "Removing CloudStore from registry if it exists" $CloudStore = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\CloudStore' If (Test-Path $CloudStore) { - Stop-Process Explorer.exe -Force + Stop-Process -Name explorer -Force Remove-Item $CloudStore -Recurse -Force Start-Process Explorer.exe -Wait }