Archive: How to register DLL in GAC without blinking of commandprompt


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


Try using
nsExec::Exec "Gacutil /i myAssembly.dll"

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

DOCa Cola


It's great and i found it very much useful.
Thanks a lot
krisbabu