Jump to content

Recommended Posts

Posted

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.... ;)

Posted

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.... ;)

not sure... either this

Run("C:\WINDOWS\IsUninst.exe -f", "C:\Program Files\Intel\Shiva VPN Client\Uninst.isu -a")

or

Run("C:\WINDOWS\IsUninst.exe -f C:\Program Files\Intel\Shiva VPN Client\Uninst.isu -a")

cant test it for you

8)

NEWHeader1.png

Posted

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

Posted

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....

Posted

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)

NEWHeader1.png

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
×
×
  • Create New...