Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What does rundll32.exe do

Status
Not open for further replies.

aclayborne

Programmer
May 3, 2000
49
US
What does rundll32.exe do and what type of dlls work with it. I have a SDK that requires me to register the dll's with this command:
("RUNDLL32.EXE xxxx.DLL,Install /NOUI", 1)
The OCX file associated with the dll won't run properly if I simply try to register the dlls.
Is there anyway to access the code in xxx.DLL so I can see what actually being done.


 
rundll32 will actually run the DLL. Meaning the only sub in the DLL being run will be "Initialize". They probably have code in there to register, move files, install and etc.

No once a DLL is compiled it is just like an EXE. Just binary data, there is no way to un-compile it. Craig, mailto:sander@cogeco.ca

Remember not to name the Lambs...
It only makes the chops harder to swallow
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top