Jump to content

Xplode and Multiple Commands


x00783

Recommended Posts

I don't know if this can work. I was using WPI and moving to xPlode.

Here is a sample of my WPI code.

prog[pn]=['Ad-Aware SE 1.5']
desc[pn]=['Removes Un-Wanted AdWare programs and trackers.']
cmd1[pn]=['%systemdrive%\Install\aawsepersonal.exe /silent']
cmd2[pn]=['TASKKILL /F /IM HH.exe']
cmd3[pn]=['TASKKILL /F /IM ad-aware.exe']
dflt[pn]=['yes']
cat[pn]=['System Security']
ordr[pn]=[10]
pn+

Here is what I want in xplode

 <execute
 display=’Installing Ad-Aware SE 1.5’
 program=’ %systemdrive%\Install\aawsepersonal.exe’
 arguments=’/silent’
 program=’ TASKKILL /F /IM HH.exe’
 program=’ TASKKILL /F /IM ad-aware.exe’
/>

Will this work correctly?

Thanks!

Link to comment
Share on other sites


no must be along these lines...

<item display='Installing Ad-Aware SE 1.5'>
<execute display='Installing aawse Personal........'
program='%systemdrive%\Install\aawsepersonal.exe'
arguments='/silent' />
<!-- -->
<execute display='Killing Task HH.exe........'
program='TASKKILL /F /IM HH.exe' />
<!-- -->
<execute display='Killing Task Ad-Aware.......'
program='TASKKILL /F /IM ad-aware.exe' />
</item>

This should work only if the syntax's are ok. I have extra <!-- --> just to split up my programmes so i can read my xml file better.

That is why i try and keep my file with

execute

program

arguments

always under each other.

A quick check to see if the XPlode.xml file is ok is to do a right click on it and load it in internet explorer or other browser. If it lists up ok then the file itself is ok. It is only a basic check but it comes up with errors with certain things wrong.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...