ActiveX Dll Component Register: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Wikipedia python library)
 
m (Updated author and download links, and changed format of some pages.)
Line 14: Line 14:
</highlight-nsis>
</highlight-nsis>


Page author: Lorien
Page author: [[User:Lorien|Lorien]]

Revision as of 12:41, 23 April 2005

Description

Superseded by: Install Library header.
Supported on: Windows 95-98.

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

The Script

;To Register a DLL
Exec 'regsvr32.exe /s "$INSTDIR\MyDLL.dll"'
 
;To Unregister a DLL
Exec 'regsvr32.exe /s /u "$INSTDIR\MyDLL.dll"'

Page author: Lorien