Skip to content
⌘ NSIS Forum Archive

How to register DLL in GAC without blinking of commandprompt

3 posts

krisbabu#

How to register DLL in GAC without blinking of commandprompt

Hi All,
For my installer i have to register dll in Gac.For that am using the command:

ExecWait "Gacutil /i myAssembly.dll"

Butwhile executing am finding command prompt blinking -
what shall be done?

krisbabu
DOCa Cola#
Try using
nsExec::Exec "Gacutil /i myAssembly.dll"

or with output to your log
nsExec::ExecToLog "Gacutil /i myAssembly.dll"

DOCa Cola