在 Windows 7 中,当我在 Windows 资源管理器中选择一个视频文件时,它会在窗口底部显示有关该文件的信息。例如:

但是,这似乎已在 Windows 8 中删除。无论如何我可以恢复此功能吗?
编辑:我知道我可以随时打开详细信息窗格,但这不是我想要的。我希望它在窗口的底部,而不是在侧面
Rak*_*ary 14
Windows 8 有一个详细信息窗格,显示视频文件的详细信息。打开详细信息窗格

对 EDIT 的回应:目前似乎无法将“详细信息”窗格置于底部。我猜微软的这个设计决定是基于现在大多数人使用宽屏显示器的事实,并且细节窗格(以及新的功能区)将占据大量的垂直空间。
XP1*_*XP1 11
您需要编辑系统文件。
修改系统文件后,您可能同时拥有底部的详细信息窗格和右侧的预览窗格。

%WinDir%\System32\shell32.dll和%WinDir%\SysWOW64\shell32.dll到桌面或临时目录。获取原始shell32.dll文件的所有权并重命名它们。
保存Rename shell32.dll.bat:
takeown /f "%WinDir%\System32\shell32.dll"
icacls "%WinDir%\System32\shell32.dll" /grant Administrators:F
ren "%WinDir%\System32\shell32.dll" "shell32.dll.bak"
takeown /f "%WinDir%\SysWOW64\shell32.dll"
icacls "%WinDir%\SysWOW64\shell32.dll" /grant Administrators:F
ren "%WinDir%\SysWOW64\shell32.dll" "shell32.dll.bak"
Run Code Online (Sandbox Code Playgroud)右键单击Rename shell32.dll.bat> 以管理员身份运行 > 是。
shell32.dll在桌面或临时目录中为每个重复以下步骤:
shell32.dll> 属性 > 对于“属性”,禁用“只读”> 确定。资源黑客
shell32.dll文件。用户界面文件
3 > 1033 > 替换文本 > 编译脚本:
<duixml>
<Element resid="FolderLayout" layout="shellborderlayout()" sheet="genericlayoutstyle">
<StatusBarModule ModuleID="StatusBarModule" layoutpos="bottom" layout="filllayout()"/>
<TemplateBackground id="atom(PreviewContainer)" height="53rp" layoutpos="bottom" layout="filllayout()">
<TemplateBackground id="atom(PreviewShineLayer)"/>
<PreviewBackground id="atom(BackgroundClear)" background="ARGB(0, 0, 0, 0)" layout="borderlayout()">
<PreviewThumbnail ModuleID="PreviewThumbnailModule" MaxThumbSize="256" layoutpos="Left"/>
<Element layoutpos="Client" layout="filllayout()">
<PreviewMetadata ModuleID="PreviewMetadataModule" NullSelectPropertyString="prop:*System.OfflineStatus;*System.OfflineAvailability" layoutpos="Client"/>
</Element>
</PreviewBackground>
<Sizer id="atom(PreviewPaneSizer)" sizingtarget="atom(PreviewContainer)" FramePersistType="2" SlidesUpAndDown="true" layoutpos="top" DownOrRightGrowsTarget="false"/>
</TemplateBackground>
<TemplateBackground id="atom(ReadingPane)" layout="filllayout()" layoutpos="right">
<PreviewThumbnail ModuleID="ReadingPaneThumbnailModule" HideProperty="PreviewHandlerRunning" Vertical="true" layoutpos="client" background="ARGB(0, 0, 0, 0)"/>
<ReadingPaneModule ModuleID="ReadingPaneModule" layoutpos="none"/>
</TemplateBackground>
<Sizer id="atom(ReadingPaneSizer)" sizingtarget="atom(ReadingPane)" GrowTargetFirst="true" SlidesUpAndDown="false" PrioritySizer="atom(PageSpaceControlSizer)" DownOrRightGrowsTarget="false" FramePersistType="2" layoutpos="Right"/>
<ProperTreeModule id="atom(ProperTree)" ModuleID="ProperTreeModule" sheet="documentslayoutstyle" layoutpos="Left"/>
<Element id="atom(ViewHostContainer)" layoutpos="Client" sheet="documentslayoutstyle" layout="borderlayout()">
<ViewHost id="atom(clientviewhost)" layout="borderlayout()" layoutpos="client">
</ViewHost>
</Element>
</Element>
</duixml>
Run Code Online (Sandbox Code Playgroud)4 > 1033 > 替换文本 > 编译脚本:
<duixml>
<Element resid="FolderLayout" layout="shellborderlayout()" sheet="musiclayoutstyle">
<StatusBarModule ModuleID="StatusBarModule" layoutpos="bottom" layout="filllayout()"/>
<TemplateBackground id="atom(PreviewContainer)" height="53rp" layoutpos="bottom" layout="filllayout()">
<TemplateBackground id="atom(PreviewShineLayer)"/>
<PreviewBackground id="atom(BackgroundClear)" background="ARGB(0, 0, 0, 0)" layout="borderlayout()">
<PreviewThumbnail ModuleID="PreviewThumbnailModule" MaxThumbSize="256" layoutpos="Left"/>
<Element layoutpos="Client" layout="filllayout()">
<PreviewMetadata ModuleID="PreviewMetadataModule" NullSelectPropertyString="prop:*System.OfflineStatus;*System.OfflineAvailability" layoutpos="Client"/>
</Element>
</PreviewBackground>
<Sizer id="atom(PreviewPaneSizer)" sizingtarget="atom(PreviewContainer)" FramePersistType="2" SlidesUpAndDown="true" layoutpos="top" DownOrRightGrowsTarget="false"/>
</TemplateBackground>
<TemplateBackground id="atom(ReadingPane)" layout="filllayout()" layoutpos="right">
<PreviewThumbnail ModuleID="ReadingPaneThumbnailModule" HideProperty="PreviewHandlerRunning" Vertical="true" layoutpos="client" background="ARGB(0, 0, 0, 0)"/>
<ReadingPaneModule ModuleID="ReadingPaneModule" layoutpos="none"/>
</TemplateBackground>
<Sizer id="atom(ReadingPaneSizer)" sizingtarget="atom(ReadingPane)" GrowTargetFirst="true" SlidesUpAndDown="false" PrioritySizer="atom(PageSpaceControlSizer)" DownOrRightGrowsTarget="false" FramePersistType="2" layoutpos="Right"/>
<ProperTreeModule id="atom(ProperTree)" ModuleID="ProperTreeModule" sheet="musiclayoutstyle" layoutpos="Left"/>
<Element id="atom(ViewHostContainer)" layoutpos="Client" sheet="documentslayoutstyle" layout="borderlayout()">
<ViewHost id="atom(clientviewhost)" layout="borderlayout()" layoutpos="client">
</ViewHost>
</Element>
</Element>
</duixml>
Run Code Online (Sandbox Code Playgroud)5 > 1033 > 替换文本 > 编译脚本:
<duixml>
<Element resid="FolderLayout" layout="shellborderlayout()" sheet="photolayoutstyle">
<StatusBarModule ModuleID="StatusBarModule" layoutpos="bottom" layout="filllayout()"/>
<TemplateBackground id="atom(PreviewContainer)" height="53rp" layoutpos="bottom" layout="filllayout()">
<TemplateBackground id="atom(PreviewShineLayer)"/>
<PreviewBackground id="atom(BackgroundClear)" background="ARGB(0, 0, 0, 0)" layout="borderlayout()">
<PreviewThumbnail ModuleID="PreviewThumbnailModule" MaxThumbSize="256" layoutpos="Left"/>
<Element layoutpos="Client" layout="filllayout()">
<PreviewMetadata ModuleID="PreviewMetadataModule" NullSelectPropertyString="prop:*System.OfflineStatus;*System.OfflineAvailability" layoutpos="Client"/>
</Element>
</PreviewBackground>
<Sizer id="atom(PreviewPaneSizer)" sizingtarget="atom(PreviewContainer)" FramePersistType="2" SlidesUpAndDown="true" layoutpos="top" DownOrRightGrowsTarget="false"/>
</TemplateBackground>
<TemplateBackground id="atom(ReadingPane)" layout="filllayout()" layoutpos="right">
<PreviewThumbnail ModuleID="ReadingPaneThumbnailModule" HideProperty="PreviewHandlerRunning" Vertical="true" layoutpos="client" background="ARGB(0, 0, 0, 0)"/>
<ReadingPaneModule ModuleID="ReadingPaneModule" layoutpos="none"/>
</TemplateBackground>
<Sizer id="atom(ReadingPaneSizer)" sizingtarget="atom(ReadingPane)" GrowTargetFirst="true" SlidesUpAndDown="false" PrioritySizer="atom(PageSpaceControlSizer)" DownOrRightGrowsTarget="false" FramePersistType="2" layoutpos="Right"/>
<ProperTreeModule id="atom(ProperTree)" ModuleID="ProperTreeModule" sheet="photolayoutstyle" layoutpos="Left"/>
<Element id="atom(ViewHostContainer)" layoutpos="Client" sheet="documentslayoutstyle" layout="borderlayout()">
<ViewHost id="atom(clientviewhost)" layout="borderlayout()" layoutpos="client">
</ViewHost>
</Element>
</Element>
</duixml>
Run Code Online (Sandbox Code Playgroud)6 > 1033 > 替换文本 > 编译脚本:
<duixml>
<Element resid="FolderLayout" layout="shellborderlayout()" sheet="documentslayoutstyle">
<StatusBarModule ModuleID="StatusBarModule" layoutpos="bottom" layout="filllayout()"/>
<TemplateBackground id="atom(PreviewContainer)" height="90rp" layoutpos="bottom" layout="filllayout()">
<TemplateBackground id="atom(PreviewShineLayer)"/>
<PreviewBackground id="atom(BackgroundClear)" background="ARGB(0, 0, 0, 0)" layout="borderlayout()">
<PreviewThumbnail ModuleID="PreviewThumbnailModule" MaxThumbSize="256" layoutpos="Left"/>
<Element layoutpos="Client" layout="filllayout()">
<PreviewMetadata ModuleID="PreviewMetadataModule" NullSelectPropertyString="prop:*System.OfflineStatus;*System.OfflineAvailability" layoutpos="Client"/>
</Element>
</PreviewBackground>
<Sizer id="atom(PreviewPaneSizer)" sizingtarget="atom(PreviewContainer)" FramePersistType="2" SlidesUpAndDown="true" layoutpos="top" DownOrRightGrowsTarget="false"/>
</TemplateBackground>
<TemplateBackground id="atom(ReadingPane)" layout="filllayout()" layoutpos="right">
<PreviewThumbnail ModuleID="ReadingPaneThumbnailModule" HideProperty="PreviewHandlerRunning" Vertical="true" layoutpos="client" background="ARGB(0, 0, 0, 0)"/>
<ReadingPaneModule ModuleID="ReadingPaneModule" layoutpos="none"/>
</TemplateBackground>
<Sizer id="atom(ReadingPaneSizer)" sizingtarget="atom(ReadingPane)" GrowTargetFirst="true" SlidesUpAndDown="false" PrioritySizer="atom(PageSpaceControlSizer)" DownOrRightGrowsTarget="false" FramePersistType="2" layoutpos="Right"/>
<ProperTreeModule id="atom(ProperTree)" ModuleID="ProperTreeModule" sheet="documentslayoutstyle" layoutpos="Left"/>
<Element id="atom(ViewHostContainer)" layoutpos="Client" sheet="documentslayoutstyle" layout="borderlayout()">
<ViewHost id="atom(clientviewhost)" layout="borderlayout()" layoutpos="client">
</ViewHost>
</Element>
</Element>
</duixml>
Run Code Online (Sandbox Code Playgroud)19 > 1033 > 替换文本 > 编译脚本:
<duixml>
<Element resid="FolderLayout" layout="shellborderlayout()" sheet="documentslayoutstyle">
<StatusBarModule ModuleID="StatusBarModule" layoutpos="bottom" layout="filllayout()"/>
<TemplateBackground id="atom(PreviewContainer)" height="53rp" layoutpos="bottom" layout="filllayout()">
<TemplateBackground id="atom(PreviewShineLayer)"/>
<PreviewBackground id="atom(BackgroundClear)" background="ARGB(0, 0, 0, 0)" layout="borderlayout()">
<PreviewThumbnail ModuleID="PreviewThumbnailModule" MaxThumbSize="256" layoutpos="Left"/>
<Element layoutpos="Client" layout="filllayout()">
<PreviewMetadata ModuleID="PreviewMetadataModule" NullSelectPropertyString="prop:*System.OfflineStatus;*System.OfflineAvailability" layoutpos="Client"/>
</Element>
</PreviewBackground>
<Sizer id="atom(PreviewPaneSizer)" sizingtarget="atom(PreviewContainer)" FramePersistType="2" SlidesUpAndDown="true" layoutpos="top" DownOrRightGrowsTarget="false"/>
</TemplateBackground>
<TemplateBackground id="atom(ReadingPane)" layout="filllayout()" layoutpos="right">
<PreviewThumbnail ModuleID="ReadingPaneThumbnailModule" HideProperty="PreviewHandlerRunning" Vertical="true" layoutpos="client"/>
<ReadingPaneModule ModuleID="ReadingPaneModule" layoutpos="none"/>
</TemplateBackground>
<Sizer id="atom(ReadingPaneSizer)" sizingtarget="atom(ReadingPane)" GrowTargetFirst="true" SlidesUpAndDown="false" PrioritySizer="atom(PageSpaceControlSizer)" DownOrRightGrowsTarget="false" FramePersistType="2" layoutpos="Right"/>
<ProperTreeModule id="atom(ProperTree)" ModuleID="ProperTreeModule" sheet="documentslayoutstyle" layoutpos="Left"/>
<Element id="atom(ViewHostContainer)" layoutpos="Client" sheet="documentslayoutstyle" layout="borderlayout()">
<ViewHost id="atom(clientviewhost)" layout="borderlayout()" layoutpos="client">
</ViewHost>
</Element>
</Element>
</duixml>
Run Code Online (Sandbox Code Playgroud)20 > 1033 > 替换文本 > 编译脚本:
<duixml>
<Element resid="FolderLayout" layout="shellborderlayout()" sheet="documentslayoutstyle">
<StatusBarModule ModuleID="StatusBarModule" layoutpos="bottom" layout="filllayout()"/>
<TemplateBackground id="atom(PreviewContainer)" height="53rp" layoutpos="bottom" layout="filllayout()">
<TemplateBackground id="atom(PreviewShineLayer)"/>
<PreviewBackground id="atom(BackgroundClear)" background="ARGB(0, 0, 0, 0)" layout="borderlayout()">
<PreviewThumbnail ModuleID="PreviewThumbnailModule" MaxThumbSize="256" layoutpos="Left"/>
<Element layoutpos="Client" layout="filllayout()">
<PreviewMetadata ModuleID="PreviewMetadataModule" NullSelectPropertyString="prop:*System.OfflineStatus;*System.OfflineAvailability" layoutpos="Client"/>
</Element>
</PreviewBackground>
<Sizer id="atom(PreviewPaneSizer)" sizingtarget="atom(PreviewContainer)" FramePersistType="2" SlidesUpAndDown="true" layoutpos="top" DownOrRightGrowsTarget="false"/>
</TemplateBackground>
<TemplateBackground id="atom(ReadingPane)" layout="filllayout()" layoutpos="right">
<PreviewThumbnail ModuleID="ReadingPaneThumbnailModule" HideProperty="PreviewHandlerRunning" Vertical="true" layoutpos="client" background="ARGB(0, 0, 0, 0)"/>
<ReadingPaneModule ModuleID="ReadingPaneModule" layoutpos="none"/>
</TemplateBackground>
<Sizer id="atom(ReadingPaneSizer)" sizingtarget="atom(ReadingPane)" GrowTargetFirst="true" SlidesUpAndDown="false" PrioritySizer="atom(PageSpaceControlSizer)" DownOrRightGrowsTarget="false" FramePersistType="2" layoutpos="Right"/>
<ProperTreeModule id="atom(ProperTree)" ModuleID="ProperTreeModule" sheet="documentslayoutstyle" layoutpos="Left"/>
<Element id="atom(ViewHostContainer)" layoutpos="Client" sheet="documentslayoutstyle" layout="borderlayout()">
<ViewHost id="atom(clientviewhost)" layout="borderlayout()" layoutpos="client">
</ViewHost>
</Element>
</Element>
</duixml>
Run Code Online (Sandbox Code Playgroud)21 > 1033 > 替换文本 > 编译脚本:
<duixml>
<Element resid="FolderLayout" layout="shellborderlayout()" sheet="genericlayoutstyle">
<StatusBarModule ModuleID="StatusBarModule" layoutpos="bottom" layout="filllayout()"/>
<TemplateBackground id="atom(PreviewContainer)" height="53rp" layoutpos="bottom" layout="filllayout()">
<TemplateBackground id="atom(PreviewShineLayer)"/>
<PreviewBackground id="atom(BackgroundClear)" background="ARGB(0, 0, 0, 0)" layout="borderlayout()">
<PreviewThumbnail ModuleID="PreviewThumbnailModule" MaxThumbSize="256" layoutpos="Left"/>
<Element layoutpos="Client" layout="filllayout()">
<PreviewMetadata ModuleID="PreviewMetadataModule" NullSelectTitlePropertyString="prop:System.Computer.SimpleName;*System.Computer.Description" NullSelectPropertyString="prop:*System.Computer.DomainName;*System.Computer.Workgroup;*System.Computer.Processor;System.Computer.Memory" layoutpos="Client"/>
</Element>
</PreviewBackground>
<Sizer id="atom(PreviewPaneSizer)" sizingtarget="atom(PreviewContainer)" SlidesUpAndDown="true" layoutpos="top" DownOrRightGrowsTarget="false"/>
</TemplateBackground>
<TemplateBackground id="atom(ReadingPane)" layout="filllayout()" layoutpos="right">
<PreviewThumbnail ModuleID="ReadingPaneThumbnailModule" HideProperty="PreviewHandlerRunning" Vertical="true" layoutpos="client" background="ARGB(0, 0, 0, 0)"/>
<ReadingPaneModule ModuleID="ReadingPaneModule" layoutpos="none"/>
</TemplateBackground>
<Sizer id="atom(ReadingPaneSizer)" sizingtarget="atom(ReadingPane)" GrowTargetFirst="true" SlidesUpAndDown="false" PrioritySizer="atom(PageSpaceControlSizer)" DownOrRightGrowsTarget="false" FramePersistType="2" layoutpos="Right"/>
<ProperTreeModule id="atom(ProperTree)" ModuleID="ProperTreeModule" sheet="documentslayoutstyle" layoutpos="Left" RootMgrClsid="{93319CCC-B277-48FF-95BD-6CDCCAFCBD31}"/>
<Element id="atom(ViewHostContainer)" layoutpos="Client" sheet="genericlayoutstyle" layout="filllayout()">
<ViewHost id="atom(clientviewhost)" layout="borderlayout()">
</ViewHost>
</Element>
</Element>
</duixml>
Run Code Online (Sandbox Code Playgroud)文件 > 保存。
将修改后的内容复制shell32.dll到其系统目录中。
右键单击开始角 > 命令提示符(管理员)> 是。
类型:
cd %SystemDirectory%
copy %DllPath%
Run Code Online (Sandbox Code Playgroud)
%SystemDirectory%为shell32.dll的系统目录和文件%DllPath%路径shell32.dll。验证shell32.dll存在于其系统目录中。
类型:
dir "shell32.dll"
Run Code Online (Sandbox Code Playgroud)关闭命令提示符。
Detailbereich -details pane- im Explorer wieder nach unten setzen Windows 8 – Deskmodder Wiki:
到目前为止,我注意到的缺点是需要提升的资源管理器操作会提示用户帐户控制 (UAC) 对话框,其中包含“未知发布者”。但是,这对我来说不是什么大问题,因为我不需要经常编辑受保护的文件,并且拥有详细信息窗格的好处大于坏处。
| 归档时间: |
|
| 查看次数: |
27670 次 |
| 最近记录: |