The following will give you a fresh sart with Medium Icons as the default for all FolderTypes. Copy & paste the follwoing into an AdministratorPowerShell Console:
$FT = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes'
$Root = 'HKLM:\SOFTWARE\Microsoft\Windows\Shell\Bags\AllFolders\Shell'
new-item $Root -Force | Out-Null
$Filter = 'Generic|Documents|Downloads|Pictures|Music|Videoss'
(gci $FT | ?{(gp $_.PSPath).CanonicalName -match $Filter}).PSChildName | %{
$Path = (New-Item -Path $Root -Name $_).PSPath
@{
'Mode' = 1
'LogicalViewMode' = 3
'IconSize' = 48
}.GetEnumerator() | %{
New-ItemProperty $Path -Name $_.Name -Value $_.Value | Out-Null
}
}
Remove-Item 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults' -ea silent
$SHell = "HKCU:\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell$_"
'BagMRU', 'Bags' | %{Remove-Item $Shell -Recurse -ea silent}
gps explorer | spps
Keith