C:\Windows\Assembly 文件夹有什么问题?

C:\Windows\Assembly 文件夹有什么问题?

如果您在 Windows 10(可能还有更早版本)上转到 C:\Windows\Assembly 文件夹,文件资源管理器看起来很奇怪。发生了什么?

在此处输入图片描述

正如您在图像中看到的,顶部的菜单不同,路径消失了,并且名称栏显示“程序集名称”。

此外,上下文菜单不同,并且无法打开文件。

在 powershell 中查看文件夹会得到完全不同的内容列表(如下图所示)

在此处输入图片描述

答案1

您将看到文件夹内容的专门视图 - 类似于FontsRecent Items文件夹,它们也有专门的视图。

这些文件夹均有一个desktop.ini文件(通常与指定自定义图标和特定于语言的显示名称相关),其值命名CLSID[.ShellClassInfo]

集会

[.ShellClassInfo]
CLSID={1D2680C9-0E2A-469d-B787-065558BC7D43}

字体

[.ShellClassInfo]
CLSID={BD84B380-8CA2-1069-AB1D-08000948F534}

最近的项目

[.ShellClassInfo]
LocalizedResourceName=@%SystemRoot%\system32\shell32.dll,-21797
InfoTip=@shell32,dll,-12692
IconResource=%SystemRoot%\system32\imageres.dll,-117
CLSID={0C39A5CF-1A7A-40C8-BA74-8900E6DF5FCD}

文件夹必须ReadOnly设置其属性才能desktop.ini显示文件,因此如果您想查看文件夹中的实际文件探索者,清除文件夹的ReadOnly属性电源外壳使用:

$dir = Get-Item c:\Windows\Assembly
$dir.Attributes = $dir.Attributes -band -bnot [System.IO.FileAttributes]::ReadOnly

并使用以下方法重新设置:

$dir = Get-Item c:\Windows\Assembly
$dir.Attributes = $dir.Attributes -bor [System.IO.FileAttributes]::ReadOnly

相关内容