ActiveX Dll Component Register: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Added category links.) |
(UnRegDLL call fixed (changing "R" hightcase from "r" lowercase)) |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{ | {{PageAuthor|Lorien}} | ||
== Description == | == Description == | ||
'''Superseded by:''' ''Install Library'' header.<br> | '''Superseded by:''' ''Install Library'' header.<br> | ||
'''Supported on:''' ''Windows | '''Supported on:''' ''All Windows versions''. | ||
This example use | This example use RegDLL and UnregDLL to register and unregister a DLL. | ||
== The Script == | == The Script == | ||
<highlight-nsis> | <highlight-nsis> | ||
;To Register a DLL | ;To Register a DLL | ||
RegDLL "$INSTDIR\MyDLL.dll" | |||
;To Unregister a DLL | ;To Unregister a DLL | ||
UnRegDLL "$INSTDIR\MyDLL.dll" | |||
</highlight-nsis> | </highlight-nsis> | ||
[[ | [[Category:DLL, OCX, TLB Functions]] |