script set-exlorer-viewmode.ps1 now deletes all GrouBy settings for explorer in current user, fix for issue #26
This commit is contained in:
parent
3599bc02a6
commit
5b9ee8d98b
@ -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 ...
|
||||
|
Loading…
Reference in New Issue
Block a user