Sorta long, but here is an example xml file I use out of the attached OEM that organizes the start menu. Basically I delete what is there, then move it where I want to. Remember, this can't delete files cooked into your rom, it can overwrite them, and if there are any syntax errors in what your doing, the whole file is no good.
Quote:
Originally Posted by mxipcold_MyStartMenu_ppck_100.provxml
<wap-provisioningdoc>
<!-- Delete Program locations installed by ppcKitchen and moved to initflashfiles.txt -->
<characteristic type="FileOperation">
<!-- \Windows\Start Menu -->
<characteristic type="\Windows\Start Menu\Windows Media.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Calendar.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Contacts.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Phone.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<!-- \Windows\Start Menu\Programs -->
<characteristic type="\Windows\Start Menu\Programs\ActiveSync.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\Calculator.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\Bluetooth Explorer.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\Camera.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\File Explorer.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\Pictures & Videos.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\Internet Sharing.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\Notes.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\QuickMenu.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\Search.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\Tasks.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
<characteristic type="\Windows\Start Menu\Programs\Windows Media.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
|