script set-exlorer-viewmode.ps1 now deletes all GrouBy settings for explorer in current user, fix for issue #26

This commit is contained in:
Michael H.G. Schmidt 2022-05-29 11:35:55 +02:00
parent 3599bc02a6
commit 5b9ee8d98b

View File

@ -24,9 +24,15 @@ Copy-Item $src "$(Split-Path $dst)" -Recurse
# Set all 'LogicalViewMode' values to the desired style
Get-ChildItem $topViews | % {
$key2edit = (get-item $_.PSParentPath).OpenSubKey($_.PSChildName, $True);
$key2edit.SetValue('LogicalViewMode', $ViewMode)
# delete ANY "GroupBy" mode in any folder of explorer ...
$key2edit.SetValue('GroupBy','')
$key2edit.Close()
}
# restart explorer ...