windows mobile - WCELOAD is not installing my CAB file -


we trying install cab file on windows mobile device. wceload.exe present on device on ram because able tap on cab , install it, not see in windows folder. have tried see hidden file, checking "show files". need on 1000 devices , need able programatically. can please recommend how can launch wceload in rom commandline or move windows folder?

i need able install cab file command line. tried \windows\wceload.exe /silent xyz.cab did not work. have tried \windows\wceload.exe xyz.cab , did not work. can please tell me doing wrong? not see error messages.

i'm not you're asking here. wceload.exe present in every windows mobile device. period. yes, it's hidden file, , can't see in explorer (remote file viewer show it), why, exactly, need "see" it? guaranteed there. , cannot deleted.

what underlying problem you're trying solve here? suspect maybe you're getting error when attempting run cab file, question far clear.

edit

based on comment, you're having problem getting wceload install cab, notactually finding app. that's different issue.

things note:

  1. windows ce has no notion of "current directory" must provide qualified path both wceload and cab file:

    process.start("\\windows\\wceload.exe", "\\folder\\myapp.cab"); 
  2. the cab file path single parameter wceload. means if has space in path, have delimit it, otherwise looks space, , give ambiguous error.

    process.start("\\windows\\wceload.exe", "'\\storage card\\myapp.cab'"); // note single quotes in there 

Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -