From 5f7de72e498e65be20074d4b1a4710bdf574d9b5 Mon Sep 17 00:00:00 2001 From: madkarmaa Date: Tue, 11 Mar 2025 18:07:33 +0100 Subject: [PATCH] fix: use correct registry key --- config/tweaks.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/tweaks.json b/config/tweaks.json index 9a34416a..87ed40b1 100644 --- a/config/tweaks.json +++ b/config/tweaks.json @@ -3753,14 +3753,14 @@ $bags = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\Bags\" # Folder types lookup table - $bagsMRU = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\BagsMRU\" + $bagMRU = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\BagMRU\" # Flush explorer view database Remove-Item -Path $bags -Recurse -Force Write-Host \"Removed $bags\" - Remove-Item -Path $bagsMRU -Recurse -Force - Write-Host \"Removed $bagsMRU\" + Remove-Item -Path $bagMRU -Recurse -Force + Write-Host \"Removed $bagMRU\" # Every folder $allFolders = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\Bags\\AllFolders\\Shell\" @@ -3783,14 +3783,14 @@ $bags = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\Bags\" # Folder types lookup table - $bagsMRU = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\BagsMRU\" + $bagMRU = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\BagMRU\" # Flush explorer view database Remove-Item -Path $bags -Recurse -Force Write-Host \"Removed $bags\" - Remove-Item -Path $bagsMRU -Recurse -Force - Write-Host \"Removed $bagsMRU\" + Remove-Item -Path $bagMRU -Recurse -Force + Write-Host \"Removed $bagMRU\" Write-Host Please sign out and back in, or restart your computer to apply the changes! "