ActiveX Dll Component Register: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(removed extra quotes)
No edit summary
Line 3: Line 3:
== Description ==
== Description ==
'''Superseded by:''' ''Install Library'' header.<br>
'''Superseded by:''' ''Install Library'' header.<br>
'''Supported on:''' ''Windows 95-98''.
'''Supported on:''' ''All Windows versions''.


This example use "regsvr32.exe" to register and unregister a dll.
This example use RegDLL and UnregDLL to register and unregister a DLL.


== The Script ==
== The Script ==

Revision as of 12:23, 25 August 2006

Author: Lorien (talk, contrib)


Description

Superseded by: Install Library header.
Supported on: All Windows versions.

This example use RegDLL and UnregDLL to register and unregister a DLL.

The Script

;To Register a DLL
RegDLL "$INSTDIR\MyDLL.dll"
 
;To Unregister a DLL
UnregDLL "$INSTDIR\MyDLL.dll"