What you would need to do is create 2 different xml files, let say win.xml and droid.xml. Here is what the two would look like:
win.xml
Code:
<wap-provisioningdoc>
<characteristic type="FileOperation">
<characteristic type="%CE4%" translation="install">
<characteristic type="MakeDir" />
<characteristic type="quickmenu.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\winstartup\quickmenu.lnk" translation="install" />
</characteristic>
</characteristic>
<characteristic type="wktask.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\winstartup\wktask.lnk" translation="install" />
</characteristic>
</characteristic>
<characteristic type="voice command.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\winstartup\voice command.lnk" translation="install" />
</characteristic>
</characteristic>
<characteristic type="battclock.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\winstartup\battclock.lnk" translation="install" />
</characteristic>
</characteristic>
<characteristic type="setcpuspeed.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE2%\winstartup\setcpuspeed.lnk" translation="install" />
</characteristic>
</characteristic>
</characteristic>
<characteristic type="\Windows\StartUp\Haret.lnk" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete" />
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
droid.xml
Code:
<wap-provisioningdoc>
<characteristic type="FileOperation">
<characteristic type="%CE2%\winstartup" translation="install">
<characteristic type="MakeDir" />
<characteristic type="quickmenu.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE4%\quickmenu.lnk" translation="install" />
</characteristic>
</characteristic>
<characteristic type="wktask.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE4%\wktask.lnk" translation="install" />
</characteristic>
</characteristic>
<characteristic type="voice command.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE4%\voice command.lnk" translation="install" />
</characteristic>
</characteristic>
<characteristic type="battclock.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE4%\battclock.lnk" translation="install" />
</characteristic>
</characteristic>
<characteristic type="setcpuspeed.lnk" translation="install">
<characteristic type="Move">
<parm name="Source" value="%CE4%\setcpuspeed.lnk" translation="install" />
</characteristic>
</characteristic>
</characteristic>
<characteristic type="%CE4%" translation="install">
<characteristic type="MakeDir" />
<characteristic type="Haret.lnk" translation="install">
<characteristic type="Shortcut">
<parm name="Source" value="\Storage Card\andboot\haret.exe" translation="install"/>
</characteristic>
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
You'd want to add/remove shortcuts as needed based on what is actually in the \Windows\StartUp folder. Once you have all the shortcuts in the xml and the files saved (assume the root of the storage card for this), you would need to create two shortcuts somewhere. It doesn't look like you can add different commands together with the task manager, so you'd be able to move the files automatically, but you'd have to restart manually. Create the shortcuts with the following paths:
Windows.lnk
Code:
"\Program Files\FdcSoft\TaskMgr\TaskMgr.exe" /provxml "\Storage Card\win.xml"
Android.lnk
Code:
"\Program Files\FdcSoft\TaskMgr\TaskMgr.exe" /provxml "\Storage Card\droid.xml"
With those shortcuts created (in \Windows\Start Menu\Programs\ somewhere), all you should have to do is click on whichever one you want, and it will move the files around for you. If you wanted to create another one to restart, that would work too.
Restart.lnk
Code:
"\Program Files\FdcSoft\TaskMgr\TaskMgr.exe" /r
or, if you want a confirmation, add /rq rather than just /r