mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-04-01 17:12:09 +00:00
refactor: add comments
This commit is contained in:
parent
d0c8f43b5a
commit
04607864b0
@ -3749,15 +3749,20 @@
|
|||||||
"Order": "a017_",
|
"Order": "a017_",
|
||||||
"InvokeScript": [
|
"InvokeScript": [
|
||||||
"
|
"
|
||||||
|
# Previously detected folders
|
||||||
$bags = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\Bags\"
|
$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\"
|
$bagsMRU = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\BagsMRU\"
|
||||||
|
|
||||||
|
# Flush explorer view database
|
||||||
Remove-Item -Path $bags -Recurse -Force
|
Remove-Item -Path $bags -Recurse -Force
|
||||||
Write-Host \"Removed $bags\"
|
Write-Host \"Removed $bags\"
|
||||||
|
|
||||||
Remove-Item -Path $bagsMRU -Recurse -Force
|
Remove-Item -Path $bagsMRU -Recurse -Force
|
||||||
Write-Host \"Removed $bagsMRU\"
|
Write-Host \"Removed $bagsMRU\"
|
||||||
|
|
||||||
|
# Every folder
|
||||||
$allFolders = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\Bags\\AllFolders\\Shell\"
|
$allFolders = \"HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\Shell\\Bags\\AllFolders\\Shell\"
|
||||||
|
|
||||||
if (!(Test-Path $allFolders)) {
|
if (!(Test-Path $allFolders)) {
|
||||||
@ -3765,8 +3770,11 @@
|
|||||||
Write-Host \"Created $allFolders\"
|
Write-Host \"Created $allFolders\"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Generic view
|
||||||
New-ItemProperty -Path $allFolders -Name \"FolderType\" -Value \"NotSpecified\" -PropertyType String -Force
|
New-ItemProperty -Path $allFolders -Name \"FolderType\" -Value \"NotSpecified\" -PropertyType String -Force
|
||||||
Write-Host \"Set FolderType to NotSpecified\"
|
Write-Host \"Set FolderType to NotSpecified\"
|
||||||
|
|
||||||
|
Write-Host Please sign out and back in, or restart your computer to apply the changes!
|
||||||
"
|
"
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user