Browser view only. Use the download link if you want to save the file.
Back to Toolboxhttps://superuser.com/questions/1575226/changing-to-list-view-in-file-explorer-everywhere
-Value 4 for LocicalViewMode is list view, other values there are
0: Medium-sized icons View
1: Details View
2: Tiles View
4: List View
5: Content View
In Admin Powershell:
$FT = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes'
gci $FT -Recurse | ? Property -Contains 'LogicalVIewMode' | %{
$_.Name -match 'FolderTypes\\(.+)\\TopViews' | out-null
$matches[1]
} | select -unique | %{
New-Item "HKLM:\SOFTWARE\Microsoft\Windows\Shell\Bags\AllFolders\Shell\$_" -force |
Set-ItemProperty -Name 'Mode' -Value 3 -PassThru |
Set-ItemProperty -Name 'LogicalViewMode' -Value 4
}
Then:
ri 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU' -Recurse
ri 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags' -Recurse