how to detecting return code from CeAppMgr.exe - Again

  • Thread starter Thread starter salimgbelim
  • Start date Start date
S

salimgbelim

Hi Guys,

I have a setup program that lunch CeAppMgr.exe with the
appropriate .ini file.

What I really want to detect,when user hits the "Cancel" button
so that I can stop the setup program.
Does CeAppMrg.exe return value indicates that the "Cancel" button was
pressed?

Thanks,

Salim
 
WHy don;t you launch it from a batch file like this:

REM ----begin launch.cmd -----
"c:\program files\Microsoft ActiveSync\CeAppMgr.exe" <path to ini file>
echo CeAppMgr returned %ERRORLEVEL%

REM ----end launch.cmd -----

and see for yourself, and then tell us?
 
Back
Top