From 1d5137e8784ae55bedb81743f2809402d8d11faf Mon Sep 17 00:00:00 2001 From: John Neijzen Date: Sun, 15 Mar 2020 08:53:27 +0800 Subject: [PATCH] Same Cloudstore fixes --- Windows10DebloaterGUI.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Windows10DebloaterGUI.ps1 b/Windows10DebloaterGUI.ps1 index 6dd8d5c..e1fe830 100644 --- a/Windows10DebloaterGUI.ps1 +++ b/Windows10DebloaterGUI.ps1 @@ -79,6 +79,7 @@ $global:Bloatware = @( "Duolingo-LearnLanguagesforFree" "PandoraMediaInc" "CandyCrush" + "BubbleWitch3Saga" "Wunderlist" "Flipboard" "Twitter" @@ -696,10 +697,10 @@ $RemoveAllBloatware.Add_Click( { Write-Host "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 }