vote up 2 vote down star

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

flag

3 Answers

vote up 6 vote down check

Another option is that the PowerShell Community Extensions installs a GAC provider, so you can do this:

dir gac:

If you are on PowerShell V2, be sure to grab the 1.2 Beta.

link|flag
kewl. I did not know about that. – Cheeso May 19 at 17:11
vote up 4 vote down

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.

link|flag
vote up 0 vote down

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)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.