PPCGeeks Forums HTC Arrive HTC HD2 HTC Thunderbolt HTC Touch Pro 2 HTC Evo 4G HTC Evo 3D Samsung Galaxy S II Motorola Droid X Apple iPhone Blackberry
Go Back   PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro > CDMA TP Development
Register Community Search

Notices


Reply
 
LinkBack Thread Tools Display Modes
  #151 (permalink)  
Old 03-21-2009, 12:52 AM
reigndropz's Avatar
Halfway to VIP Status
Offline
Pocket PC: Evo
Carrier: Sprint
Location: VA
 
Join Date: Feb 2009
Posts: 550
Reputation: 805
reigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!

Quote:
Originally Posted by elephant007 View Post
as for shortcuts on the start menu, I'd suggest using a command in the SDConfig
CPY1:\Storage Card\Shortcut.lnk
CPY2:\Windows\Start Menu\Shortcut.lnk
tried that....no good
Reply With Quote
  #152 (permalink)  
Old 03-21-2009, 11:07 AM
elephant007's Avatar
domo arigato mr roboto
Offline
Pocket PC: Samsung Moment
Carrier: Sprint since Feb 11, 2002
 
Join Date: Jan 2007
Posts: 1,248
Reputation: 3584
elephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!

Quote:
Originally Posted by reigndropz View Post
tried that....no good
Post your SDConfig
that is the only way I know how to copy a file from one destination to the other
Reply With Quote
  #153 (permalink)  
Old 03-21-2009, 11:16 AM
lnchbx13's Avatar
Almost a VIP
Offline
Pocket PC: ME - EVO, WIFE - EVO
Carrier: Sprint
Location: Houston, TX
 
Join Date: Mar 2008
Posts: 769
Reputation: 690
lnchbx13 knows their stufflnchbx13 knows their stufflnchbx13 knows their stufflnchbx13 knows their stufflnchbx13 knows their stufflnchbx13 knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!

how do you have it move the ones that are in there already back to the programs folder? Since you can only have 7, if you put in 7 more it messes it up.
Reply With Quote
  #154 (permalink)  
Old 03-21-2009, 02:54 PM
reigndropz's Avatar
Halfway to VIP Status
Offline
Pocket PC: Evo
Carrier: Sprint
Location: VA
 
Join Date: Feb 2009
Posts: 550
Reputation: 805
reigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!

Quote:
Originally Posted by elephant007 View Post
Post your SDConfig
that is the only way I know how to copy a file from one destination to the other
Quote:
Originally Posted by lnchbx13 View Post
how do you have it move the ones that are in there already back to the programs folder? Since you can only have 7, if you put in 7 more it messes it up.

Thats one of my points. I already tried this method below by taking the shortcuts and placing them in the a shortcut folder on the storage card

CPY1:\Storage Card\Shortcuts\SpbScreenshot
CPY2:\Windows\Start Menu\SpbScreenshot

That didnt work. I also added ".ink" at the end of the file and it still didnt work. Any ideas?

I was working with an xml file to try this too, but it got pretty complicated so I kind of retired with that thought. I know there must be a way to do this though....

it didnt work
Reply With Quote
  #155 (permalink)  
Old 03-21-2009, 03:45 PM
badwolf's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: Sprint
 
Join Date: Jan 2007
Posts: 414
Reputation: 219
badwolf is keeping up the good workbadwolf is keeping up the good workbadwolf is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!

Quote:
Originally Posted by reigndropz View Post
tried that....no good

I think this is the answer. Had same problem with slingbox.lnk and tomtom.lnk

see http://forum.xda-developers.com/show...00&postcount=3 there they say

%CE2% is a shorthand way for saying "\windows". As you can see, the first characteristic types set the working directory to \windows\startup, the destination file to "StartTimeSync.lnk" and the file operation to "Copy". Finally, the source file is set and the CSP copies \windows\SP TimeSync.lnk to \windows\startup\StartTimeSync.lnk.

Here's a great example from booda. It shows shortcut creation, move, directory creation and remove operations:

<characteristic type="FileOperation">

<!--Create folder in Programs called "Docs and Ref" and move Google Maps shortcut into it-->

<characteristic type="%CE2%\Start Menu\Programs\Docs and Ref" translation="install">
<characteristic type="MakeDir" />

<characteristic type="Google Maps.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\Start Menu\Programs\Google Maps.lnk" translation="install"/>
</characteristic>
</characteristic>

</characteristic>

<!--Create "Doom" shortcut from exe on storage card and copy it into Games folder-->

<characteristic type="%CE2%\Start Menu\Programs\Games" translation="install">
<characteristic type="MakeDir" />

<characteristic type="gfDoom.lnk" translation="install">
<characteristic type="Shortcut">
<parm name="Source" value="\Storage Card\Games\Doom\gfDoom.exe" translation="install"/>
</characteristic>
</characteristic>

</characteristic>

<!-- Move Office folder from Start Menu into Docs and Ref folder -->

<characteristic type="%CE2%\Start Menu\Programs\Docs and Ref\Office Mobile" translation="install">
<characteristic type="MakeDir" />

<characteristic type="Excel Mobile.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\Start Menu\Programs\Office Mobile\Excel Mobile.lnk" translation="install"/>
</characteristic>
</characteristic>

<characteristic type="icon.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\Start Menu\Programs\Office Mobile\icon.lnk" translation="install"/>
</characteristic>
</characteristic>

<characteristic type="OneNote Mobile.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\Start Menu\Programs\Office Mobile\OneNote Mobile.lnk" translation="install"/>
</characteristic>
</characteristic>

<characteristic type="PowerPoint Mobile.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\Start Menu\Programs\Office Mobile\PowerPoint Mobile.lnk" translation="install"/>
</characteristic>
</characteristic>

<characteristic type="Word Mobile.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\Start Menu\Programs\Office Mobile\Word Mobile.lnk" translation="install"/>
</characteristic>
</characteristic>

</characteristic>

<characteristic type="%CE2%\Start Menu\Programs\Office Mobile" translation="install">
<characteristic type="RemoveDir" />
</characteristic>

</characteristic>
Reply With Quote
This post has been thanked 1 times.
  #156 (permalink)  
Old 03-21-2009, 04:52 PM
reigndropz's Avatar
Halfway to VIP Status
Offline
Pocket PC: Evo
Carrier: Sprint
Location: VA
 
Join Date: Feb 2009
Posts: 550
Reputation: 805
reigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuffreigndropz knows their stuff
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!

Quote:
Originally Posted by badwolf View Post
I think this is the answer. Had same problem with slingbox.lnk and tomtom.lnk

see http://forum.xda-developers.com/show...00&postcount=3 there they say
Thanks Badwolf for this but I already went this route....still didnt work for me.
Reply With Quote
  #157 (permalink)  
Old 03-21-2009, 06:30 PM
slydog43's Avatar
Regular 'Geeker
Offline
Pocket PC: HTC Touch Pro
Carrier: Sprint
Location: New Jersey
 
Join Date: Nov 2007
Posts: 267
Reputation: 140
slydog43 is keeping up the good workslydog43 is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Notes Settings

I'm having trouble findingout where my Notes program settings are stored, any1 know?
Reply With Quote
  #158 (permalink)  
Old 03-21-2009, 07:27 PM
badwolf's Avatar
Regular 'Geeker
Offline
Pocket PC: Touch Pro 2
Carrier: Sprint
 
Join Date: Jan 2007
Posts: 414
Reputation: 219
badwolf is keeping up the good workbadwolf is keeping up the good workbadwolf is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!

Quote:
Originally Posted by reigndropz View Post
Thanks Badwolf for this but I already went this route....still didnt work for me.
how can i test the xml without hardresting, what to run?
Reply With Quote
  #159 (permalink)  
Old 03-21-2009, 08:25 PM
elephant007's Avatar
domo arigato mr roboto
Offline
Pocket PC: Samsung Moment
Carrier: Sprint since Feb 11, 2002
 
Join Date: Jan 2007
Posts: 1,248
Reputation: 3584
elephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIPelephant007 is still contributing even after becoming a VIP
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!

Quote:
Originally Posted by badwolf View Post
how can i test the xml without hardresting, what to run?
http://forum.ppcgeeks.com/showpost.p...&postcount=148
Reply With Quote
  #160 (permalink)  
Old 03-21-2009, 09:41 PM
dave01978's Avatar
PPCGeeks Regular
Offline
Pocket PC: HTC Touch Pro 2
Carrier: Sprint
Location: IL
 
Join Date: Mar 2008
Posts: 242
Reputation: 150
dave01978 is keeping up the good workdave01978 is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: Post Your SDconfig.txt, provisioning.xml, etc. Files Here!

thanks for the info on the task manager elephant, that saves a ton of time

Anyone else have any other ideas in setting up more then 1 email?
__________________
Dave


Reply With Quote
Reply

  PPCGeeks > Windows Mobile > WM HTC Devices > HTC Touch Pro > CDMA TP Development


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT -4. The time now is 11:57 PM.


Powered by vBulletin® ©2000 - 2024, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0
©2012 - PPCGeeks.com