How to make .cab file self-deleting on windows mobile app - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T16:49:47Zhttp://stackoverflow.com/feeds/question/566235http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/566235/how-to-make-cab-file-self-deleting-on-windows-mobile-app1How to make .cab file self-deleting on windows mobile appmonkeypushbutton2009-02-19T17:04:24Z2009-08-12T20:00:27Z
<p>I have my first Windows Mobile app ready for deployment (Windows Mobile 6). I have made my CABProject and made a .cab file that will install successfully. How can the .cab be made to delete itself after installation? Some things I read seem to indicate that this should be the default behavior.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/566235/how-to-make-cab-file-self-deleting-on-windows-mobile-app/566464#5664642Answer by kgiannakakis for How to make .cab file self-deleting on windows mobile appkgiannakakis2009-02-19T18:03:41Z2009-02-19T18:22:58Z<p>Cab files are installed using <a href="http://msdn.microsoft.com/en-us/library/ms933760.aspx" rel="nofollow">wceload</a> utility. Deleting the cab is indeed the default behaviour.</p>
<p>For more advanced features see <a href="http://www.opennetcf.com/Products/CABInstallerSDK/tabid/272/Default.aspx" rel="nofollow">CABInstallerSDK</a>.</p>
http://stackoverflow.com/questions/566235/how-to-make-cab-file-self-deleting-on-windows-mobile-app/566509#5665091Answer by Shane Powell for How to make .cab file self-deleting on windows mobile appShane Powell2009-02-19T18:17:57Z2009-02-19T18:17:57Z<p>CAB files are installed using the wceload utility as kgiannakakis says, but the default behavior for what happens when you run the CAB either through explorer or through actiesync install varies from device to device. Typically I've seen SmartPhone devices default to deleting the cab file. On Pocket PC's I mostly seen the CAB not being deleted.</p>
<p>So what I've saying is that you can't guarantee that the CAB file is deleted after install unless you arrange for your code to be calling the "wceload" utility and therefore have control over it's parameters.</p>
http://stackoverflow.com/questions/566235/how-to-make-cab-file-self-deleting-on-windows-mobile-app/1268388#12683880Answer by Greg for How to make .cab file self-deleting on windows mobile appGreg2009-08-12T20:00:27Z2009-08-12T20:00:27Z<p>kgiannakakis is correct that the default behavior of the wceload utility is to delete the cab file after installing, but the /nodelete flag changes this behavior.</p>
<p>you'll find:
[HKEY_CLASSES_ROOT\cabfile\Shell\Open\Command]
@="wceload.exe "%1" /nodelete"</p>
<p>on some devices which will cause the default behavior on that device to differ.</p>