Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 win 7 中从 GAC 中删除一个二进制文件。我知道它在 win xp 上是如何工作的,但我无法在 win 7 中执行相同的程序
只需在命令提示符下使用它:
gacutil /u <assembly name>
上面的关键字是<assembly name>. 也许您正在使用<DLL filename>这是一个常见的错误。那样不行!
<assembly name>
<DLL filename>
如果您不知道程序集名称,请尝试第二个命令...
gacutil /l > C:\GAC_Assemblies.txt
...然后在生成的 C:\GAC_Assemblies.txt 文件的内容中搜索您的 DLL 文件名。请注意相应的程序集名称,并在重试第一个命令时使用它!