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

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

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

6条回答
  •  春和景丽
    2021-02-07 07:23

    To list entries in the GAC;

    gacutil -l
    

    In powershell you could parse the text output of the above. I don't know of a managed interface to inspect the GAC.

提交回复
热议问题