zeno Posted October 12, 2005 Posted October 12, 2005 I just like to ask how can I wrap this command in the Run command C:\WINDOWS\IsUninst.exe -f"C:\Program Files\Intel\Shiva VPN Client\Uninst.isu" -a I've tried Run(C:\WINDOWS\IsUninst.exe -f"C:\Program Files\Intel\Shiva VPN Client\Uninst.isu" -a) and it doesn't work... Tried adding quotes Run("C:\WINDOWS\IsUninst.exe -f"C:\Program Files\Intel\Shiva VPN Client\Uninst.isu" -a") that doesn't work either...... Any suggestions/reasons why....
Valuater Posted October 12, 2005 Posted October 12, 2005 I just like to ask how can I wrap this command in the Run commandC:\WINDOWS\IsUninst.exe -f"C:\Program Files\Intel\Shiva VPN Client\Uninst.isu" -aI've tried Run(C:\WINDOWS\IsUninst.exe -f"C:\Program Files\Intel\Shiva VPN Client\Uninst.isu" -a) and it doesn't work...Tried adding quotesRun("C:\WINDOWS\IsUninst.exe -f"C:\Program Files\Intel\Shiva VPN Client\Uninst.isu" -a")that doesn't work either......Any suggestions/reasons why.... not sure... either thisRun("C:\WINDOWS\IsUninst.exe -f", "C:\Program Files\Intel\Shiva VPN Client\Uninst.isu -a")orRun("C:\WINDOWS\IsUninst.exe -f C:\Program Files\Intel\Shiva VPN Client\Uninst.isu -a")cant test it for you8)
zeno Posted October 12, 2005 Author Posted October 12, 2005 Thanks valuater.......... This one didn't work Run("C:\WINDOWS\IsUninst.exe -f", "C:\Program Files\Intel\Shiva VPN Client\Uninst.isu -a") But this did.... Run("C:\WINDOWS\IsUninst.exe -f C:\Program Files\Intel\Shiva VPN Client\Uninst.isu -a") cant test it for you Cheers
zeno Posted October 12, 2005 Author Posted October 12, 2005 Actually maybe I was a bit too fast to reply............ Sorry Valuater.......... The script compiles without problems but the actual command wrapped in the Run( ) doesn't work properly... It doesn't execute I guess the origianl command C:\WINDOWS\IsUninst.exe -f"C:\Program Files\Intel\Shiva VPN Client\Uninst.isu" -a must have the quotation marks around it ....... but how do I wrap it for the Run command....
Valuater Posted October 12, 2005 Posted October 12, 2005 ok........ to keep those quotes do it like this Run ('C:\WINDOWS\IsUninst.exe -f "C:\Program Files\Intel\Shiva VPN Client\Uninst.isu" -a') remember that spacing is very important also 8)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now