OpenNETCF Process class and installing CAB's

  • Thread starter Thread starter Rob Blij
  • Start date Start date
R

Rob Blij

I have a situation where I am trying to run a few cabs as part of my
install.

I am testing on the new Windows Mobile 2nd edition (i-mate Jam and PDA2k).

My problem is: when I start the process to execute the cab installer, I get
the popup message saying "This software might not work on the device etc"
but when I click ok in the top right the cab installer never seems to exit.
So I can never wait for the process to finish and let my main thread carry
on with the next cab.

Anyone know a way around this issue?

Thanks in advance,
Rob
 
Try launching the cab with supressed UI, I can't remember if this does stop
the generic compatibility prompt on Second Edition but is worth a try e.g.

OpenNETCF.Diagnostics.Process.Start("\\Windows\\wceload.exe","/noaskdest
/noui \"\\mypackage.cab\"");

Peter
 
Back
Top