Link to home
Start Free TrialLog in
Avatar of kristofer
kristofer

asked on

Register dll

How do you manually register mydll.dll into windows registry?
ASKER CERTIFIED SOLUTION
Avatar of deighton
deighton
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Guy Hengel [angelIII / a3]
In VB:
shell "regsrv32 /S ""yourpath\yourfile.dll"""
Cheers
or go to a command prompt, change the prompt paTH TO THE .DLL PATH AND DO

regsvr32 mydll.dll


is sometimes more convenient.
aaahh, too slow...
Ok, the /S will make the registration silent, no message box will appear...
Cheers
Avatar of guyms
guyms

regsvr32/c  "Path of file that is to be registered"

regsvr32/u  "Path of file that is to be unregistered"

space after /c and /u is compulsory

A message box will appear after registration is successful.
Avatar of kristofer

ASKER

thx, simple but efficient!