PPCGeeks

PPCGeeks (http://forum.ppcgeeks.com/index.php)
-   CDMA Diamond Development (http://forum.ppcgeeks.com/forumdisplay.php?f=67)
-   -   OEMVERSION Folder (http://forum.ppcgeeks.com/showthread.php?t=47388)

catchacold 12-02-2008 12:15 PM

OEMVERSION Folder
 
I am looking at the mxipupdate_zzPIED_100 file in the OEMVERSION Folder - I see some entries to delete pictures

-----------------------------------------------
<characteristic type="FileOperation">
<characteristic type="%CE5%\My Pictures\Grass.jpg" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
-------------------------------------------------------

I could use this to delete the Games Icon from \Windows\Start Menu\Programs

<characteristic type="FileOperation">
<characteristic type="%CE5%\Windows\Start Menu\Programs\Games.LNK" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>

If not how could I do this?

TIA


Sorry this might need to go in the How to Kitchen Folder

rstoyguy 12-02-2008 01:32 PM

Re: OEMVERSION Folder
 
Quote:

Originally Posted by catchacold (Post 554862)
I am looking at the mxipupdate_zzPIED_100 file in the OEMVERSION Folder - I see some entries to delete pictures

-----------------------------------------------
<characteristic type="FileOperation">
<characteristic type="%CE5%\My Pictures\Grass.jpg" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>
-------------------------------------------------------

I could use this to delete the Games Icon from \Windows\Start Menu\Programs

<characteristic type="FileOperation">
<characteristic type="%CE5%\Windows\Start Menu\Programs\Games.LNK" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>

If not how could I do this?

TIA


Sorry this might need to go in the How to Kitchen Folder

That would work fine. Just delete the following in orange...And you should be fine. I specify the link directly and don't use the variables much...

Code:


<characteristic type="FileOperation">
<characteristic type="%CE5%\Windows\Start Menu\Programs\Games.LNK" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>


catchacold 12-02-2008 01:45 PM

Re: OEMVERSION Folder
 
Thanks - I will give it a try!

vboyz103 12-02-2008 04:08 PM

Re: OEMVERSION Folder
 
how can we use wildcard on delete?

Let's say I want to delete *.dat.

rstoyguy 12-02-2008 04:30 PM

Re: OEMVERSION Folder
 
xml as far as I know doesn't allow dos-type wildcards.

catchacold 12-02-2008 05:26 PM

Re: OEMVERSION Folder
 
Didnt work - I tried with and without the backslash in front of Windows

<characteristic type="FileOperation">
<characteristic type="\Windows\Start Menu\Programs\Games.LNK" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>

I am going to read some of your tutorials



Quote:

Originally Posted by rstoyguy (Post 555079)
That would work fine. Just delete the following in orange...And you should be fine. I specify the link directly and don't use the variables much...

Code:


<characteristic type="FileOperation">
<characteristic type="%CE5%\Windows\Start Menu\Programs\Games.LNK" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete"/>
</characteristic>



rstoyguy 12-02-2008 05:33 PM

Re: OEMVERSION Folder
 
1 Attachment(s)
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 &amp; 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>


catchacold 12-02-2008 05:41 PM

Re: OEMVERSION Folder
 
Instead of me trying to put my changes in the mxipupdate_zzPIED_100 file I think I should be putting them in the OEMizer XML location -

Thanks for the help -


All times are GMT -4. The time now is 05:10 AM.

Powered by vBulletin® ©2000 - 2025, Jelsoft Enterprises Ltd.
©2012 - PPCGeeks.com


Content Relevant URLs by vBSEO 3.6.0