What does this do? gacutil /l | find /i “about”

Q

What does this do? gacutil /l | find /i “about”

✍: Guest

A

Answer1:
This command is used to install strong typed assembly in GAC

Answer2:
gacutil.exe is used to install strong typed assembly in GAC. gacutil.exe /l is used to lists the contents of the global assembly cache. |(pipe) symbol is used to filter the output with another command. find /i “about” is to find the text “about” on gacutil output. If any lines contains the text “about” then that line will get displayed on console window.

2014-02-19, 2169👍, 0💬