Does WinCE support rundll32.exe ? This exe is there in system32 folder in PC.
If we can not use it is there any equivalent exe which will load a dll and
call a function and populate the argument lists just like rundll32.exe does.
Pls help

Re: Support for rundll32.exe ? by Chris

Chris
Fri Aug 22 08:49:17 PDT 2008

There's nothing already there, no, but it would be pretty trivial to create
one. rundll32 simply calls LoadLibrary, GetProcAddress and then makes the
call based on the input syntax:

RUNDLL32.EXE <dllname>,<entrypoint> <optional arguments>

Why would you need to do this? Why not just load and call the DLL in your
app to begin with?


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Giving back to the embedded community
http://community.OpenNETCF.com


"cute_eye" <cuteeye@discussions.microsoft.com> wrote in message
news:B4407FB4-997C-431C-965C-73AAD55F32B7@microsoft.com...
> Does WinCE support rundll32.exe ? This exe is there in system32 folder in
> PC.
> If we can not use it is there any equivalent exe which will load a dll and
> call a function and populate the argument lists just like rundll32.exe
> does.
> Pls help