Step 1 is downloading the application to the PDA, this works fine. The next
part is executing the cab file, this all works fine but the user does need to
interact to say "Yes" to the overwriting of the exe file.
My question is, is there anyway for this to be done automatically ?
I notice Visual Studio doesn't prompt you to overwrite the file when you run
it from the development environment, how does it do that ?
Many thanks
Rob
wceload.exe /noui /noaskdest yourcab.cab
--
Sergey Bogdanov [.NET CF MVP, MCSD]
http://www.sergeybogdanov.com
Currently, i'm downloading the file, and then on startup i'm running the cab.
So... as you suggest, i'm changing my code to something like this:
success = SHCreateShortcut(@"\WINDOWS\Startup\SAMSLoad.lnk", @"wceload.exe
/noui /noaskdest \Program Files\SAMS PDA\download.cab");
However, no error but doesn't seem to do anything.
Does that look right?
Thanks again.
I'm running Qtek2020 with PocketPC 2003
hmm... any ideas?
SHCreateShortcut(@"\WINDOWS\Startup\SAMSLoad.lnk", @"wceload.exe
/noui /noaskdest ""\Program Files\SAMS PDA\download.cab""");
Anyway to supress that as well?
Thanks Sergey
It will make think the wceload that a cab have not been installed.
I'm using the below code but it doesn't seem to be deleting it (still
prompting me to reinstall)
Registry.LocalMachine.DeleteSubKey(@"HKLM\SOFTWARE\SM SAMS PDA",false);
Does that look right?
many thanks for the help
Registry.LocalMachine.DeleteSubKey("SOFTWARE\\SM SAMS PDA",false);
--
Chris Tacke
Co-founder
OpenNETCF.org
Are you using the SDF? Let's do a case study.
Email us at d c s @ o p e n n e t c f . c o m
http://www.opennetcf.org/donate
"Rob S" <Ro...@discussions.microsoft.com> wrote in message
news:295F0E09-B66F-4889...@microsoft.com...
That's superb, works now.
Thanks for the assistance (both of you)
Rob