我希望 Explorer 的每个实例始终以“详细信息”视图打开,无论我正在查看哪个文件夹。我希望这个默认设置永远不会改变;我可以选择不同的视图(如果需要)。我希望文件资源管理器和所有“另存为”和“打开”对话框都采用这种设置。
Windows 10,但如果可能的话,我甚至会切换回 Windows 7。
答案1
这电源外壳将为已登录用户创建自定义视图模板,并将图标模式设置为细节对全部文件夹类型,包括库和搜索结果。只需将代码复制并粘贴到电源外壳窗口。按 <进入> 执行。
$FolderTypes = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes'
cd 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer'
$CopySplat = @{
Destination = { $RelPath = ($_.PSParentPath -split 'Explorer\\')[-1]
If ( -not ( Test-Path $RelPath )) { md $RelPath -force | out-null }
$RelPath }
PassThru = $True
}
$spSplat = @{
Name = 'LogicalViewMode'
Value = 1
PassThru = $True
}
gci $FolderTypes -recurse | ? Property -contains 'LogicalViewMode' |
Copy-Item @CopySplat | Set-ItemProperty @spSplat | Remove-ItemProperty -Name IconSize -ea Silent
这不会覆盖已保存的视图或由应用于文件夹. 要删除已保存的视图:
$BagMRU = 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU'
$Bags = 'HKCU:\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags'
$BagMRU, $Bags | Remove-Item -recurse
gps explorer | spps
并删除应用于文件夹模板:
$Defaults = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams\Defaults'
Remove-ItemProperty $Defaults * -ea silent
答案2
这可以通过窗口设置窗口。
有关详细信息,请参阅文档。