Use PowerShell to view contents of the Global Assembly Cache (GAC)

前端 未结 6 662
臣服心动
臣服心动 2021-02-07 07:04

Is there a way to use PowerShell to view the contents of the GAC?

6条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-07 07:20

    You can do it just from a command prompt:

    cd C:\Windows\assembly
    dir
    

    The GAC has a specific directory structure, and you should not go moving or deleting things in there using the command prompt - rather use windows explorer (gui) or gacutil (cli)

提交回复
热议问题