Mutsje
Admin
| Posts: 468 |  |
|
Register DLL files - 2006/05/10 10:56
Not very often you want manually register a dll file and wonder how did I do that a few weeks ago.
DLL's are always registerd in System32 or System(windows9X)
C:WindowsSystem32> regsvr32 name.dll
Example
| Code: |
C:\regsvr32 "C:\windows\system32\name.dll"
|
Switches
| Code: |
/u Unregister Server
/s Sieltn; display no message boxes
/i Call Dllnstall passing it an optional [cmdline];when used with /u calls dll uninstall
/n Do not call dllRegisterServer;this option must be used with /i
|
GPO adicted |