How to make .cab file self-deleting on windows mobile app - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T16:49:47Z http://stackoverflow.com/feeds/question/566235 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/566235/how-to-make-cab-file-self-deleting-on-windows-mobile-app 1 How to make .cab file self-deleting on windows mobile app monkeypushbutton 2009-02-19T17:04:24Z 2009-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#566464 2 Answer by kgiannakakis for How to make .cab file self-deleting on windows mobile app kgiannakakis 2009-02-19T18:03:41Z 2009-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#566509 1 Answer by Shane Powell for How to make .cab file self-deleting on windows mobile app Shane Powell 2009-02-19T18:17:57Z 2009-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#1268388 0 Answer by Greg for How to make .cab file self-deleting on windows mobile app Greg 2009-08-12T20:00:27Z 2009-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>