View Single Post
  #4959 (permalink)  
Old 02-27-2010, 04:09 PM
indagroove's Avatar
indagroove
AWOL
Offline
 
Join Date: Nov 2007
Posts: 3
Reputation: 120
indagroove is keeping up the good workindagroove is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [ Kitchen ][ 2-27 ][ v1.6 RC ][28232 / 23541 / 21893 / 21056] Calkulin's WVGA Kit

Quote:
Originally Posted by zone23 View Post
OK well I created a cab that will install my icons no problem but I need to create a xml to delete the start menu or program files. Any help?

<wap-provisioningdoc>
<characteristic type="\windows\start menu" translation="install">
<characteristic type="RemoveDir" />
</characteristic>
</wap-provisioningdoc>
Quote:
Originally Posted by Calkulin View Post
A xml won't delete a folder that has items in it, so you have to delete all the links 1 by one, like

Code:
<wap-provisioningdoc>
<characteristic type="FileOperation">
<characteristic type="%CE11%\Calendar.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="%CE11%\Contacts.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="%CE11%\Phone.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="%CE11%\Search.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="%CE11%\Tasks.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
It seems to me that simply moving or deleting the shortcuts in the kitchen via an EXT with app.dat gives you more control, and will speed up first boot time by eliminating unecessary .provxml files. That's what I do anyway.


Last edited by indagroove; 02-27-2010 at 04:11 PM.
This post has been thanked 2 times.