From 04607864b07fc1832d4ebe353495f6131c5a3083 Mon Sep 17 00:00:00 2001 From: madkarmaa Date: Tue, 11 Mar 2025 17:56:54 +0100 Subject: [PATCH] refactor: add comments --- config/tweaks.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config/tweaks.json b/config/tweaks.json index d99fea30..44bfaab3 100644 --- a/config/tweaks.json +++ b/config/tweaks.json @@ -3749,15 +3749,20 @@ "Order": "a017_", "InvokeScript": [ " + # Previously detected folders $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\" + # Flush explorer view database Remove-Item -Path $bags -Recurse -Force Write-Host \"Removed $bags\" Remove-Item -Path $bagsMRU -Recurse -Force Write-Host \"Removed $bagsMRU\" + # Every folder $allFolders = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\Bags\\AllFolders\\Shell\" if (!(Test-Path $allFolders)) { @@ -3765,8 +3770,11 @@ Write-Host \"Created $allFolders\" } + # Generic view New-ItemProperty -Path $allFolders -Name \"FolderType\" -Value \"NotSpecified\" -PropertyType String -Force Write-Host \"Set FolderType to NotSpecified\" + + Write-Host Please sign out and back in, or restart your computer to apply the changes! " ], },