Syntax
REGSVR32 [/U] [/S] [/C] [/I:[Command_Line]] DLL_Name
REGSVR32 [/U] [/S] [/C] /N /I:[Command_Line] DLL_Name
Key
/u Unregister Server.
/s Silent - no dialogue boxes.
/c Console output.
/n Don't call DllRegisterServer
/i Call DllInstall (or DllUninstall if /u is specified)
Command_Line An optional command line for DllInstall
Examples
Unregister (disable) a dll
REGSVR32 /u C:\Windows\System32\sample.dll
Register (enable) a dll
REGSVR32 sample.dll
REGSVR32 c:\myfolder\sample.dll
On Microsoft Windows operating systems, a DLL stands for Dynamic Link Library. DLL's are relatively small files that include a library of functions- usually data that can be shared across multiple applications. DLL's are called upon by various applications and can be loaded and utilized by these applications concurrently.
Comments
Post a Comment