Uninstall DLL with regasm

0

I am trying to install / uninstall DLL to install an update of the DLL but it does not update it even if I restart, it remains the same and I have tried changing the name to the new one and removing the old one but still when I am going to erase the dll previous does not leave me because it is in use. The code I use is the following: Install:

"$REGASMPATH\RegAsm.exe" /tlb /register /codebase  /nologo /s "$INSTDIR\MyDll2.dll"

Uninstall:

$REGASMPATH\RegAsm.exe" /u /codebase "$INSTDIR\MyDll1.dll"
    
asked by jooooooooota 19.02.2018 в 10:21
source

0 answers