Is there ... any difference in view settings between Downloads and Document, I could not find any.
Downloads now has its own template:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes{885a186e-a440-4ada-812b-db871b942259}
Its default view groups items by Date Mmodified.
whereas prior to 1903, it used the Generic template ({5c4f28b5-f869-4e84-8e60-f11db97c5cc7}). Its default view settings have no grouping.
So, the situation is more questiionable design decision than outrigit bug.
I also think this has confounded many because while Apply to Folders will delete saved views used by regular
Explorer windows, it doesn't reset the Common Dialogs if they have already saved a view. But, if the dialogs haven't already saved a view, they will use the modified template created by
Apply to Folders.
So, to cover all bases, it's three steps:
- Set Downloads view to your liking
- Apply to Folders
- Copy & paste the following into a PowerShell window:
$Bags = 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags'
$DLID = '{885A186E-A440-4ADA-812B-DB871B942259}'
gci $bags -recurse |
?{$_.GetSubkeyNames() -contains $DLID} |
remove-item -Path { join-path $_.PSPath $DLID }
Press <Enter> to execute the above code.
Keith