Created
November 27, 2017 17:06
-
-
Save veritas06/d790ce69d6bbefeb21605f2a11e14cab to your computer and use it in GitHub Desktop.
[CMD: Register & Unregister DLL's] This is how to use the .NET RegAsm tool to REGISTER & UNREGISTER DLL's. #CMD #dotNET #DLL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment