veritas06
11/27/2017 - 5:06 PM

[CMD: Register & Unregister DLL's] This is how to use the .NET RegAsm tool to REGISTER & UNREGISTER DLL's. #CMD #dotNET #DLL

[CMD: Register & Unregister DLL's] This is how to use the .NET RegAsm tool to REGISTER & UNREGISTER DLL's. #CMD #dotNET #DLL

# The below commands are used for registering & unregistering DLL's with the .NET RegAsm tool:
#To Register:
SET WorkFolder= '<directory>'
regasm.exe %WorkFolder%\xxx.dll /Codebase

#To Unregister:
SET WorkFolder= '<directory>'
regasm.exe /unregister %WorkFolder%\xxx.dll