Skip to content

Instantly share code, notes, and snippets.

@veritas06
Created November 27, 2017 17:06
Show Gist options
  • Save veritas06/d790ce69d6bbefeb21605f2a11e14cab to your computer and use it in GitHub Desktop.
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
# 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