From Wikipedia :
gacutil.exe is the .NET utility used to work with the GAC.
You can check the availability of the general assembly in the GAC using the command:
gacutil.exe /l "assemblyName"
You can register a general assembly in the GAC using the command:
gacutil.exe /i "assemblyName"
Or by dropping the build file in the following location using the GUI:
%windir%\assembly\
Other options for this utility will be briefly described if you use the /? Flag , which the:
gacutil.exe /?
tbischel Feb 02 2018-10-02T00 : 00Z
source share