Jump to content

Recommended Posts

Posted

Hi,

I want to send this command to cmd line:

psexec \\10.5.31.12 -u Administrateur -p xxx -i -e cmd "/C net use i: \\server\folder /user:SERVER\acount xxx & I:\msg.exe"

I know I can use RunWait(@COMSPEC & "/c My commande")

But If my command contains quotes....

The quote create a problem in the command RunWait.

HELP ME PLEASE!!!

  • Developers
Posted

Just use single quotes around the string. something like:

RunWait(@COMSPEC & '/c psexec \\10.5.31.12 -u Administrateur -p xxx -i -e cmd "/C net use i: \\server\folder /user:SERVER\acount xxx & I:\msg.exe"')

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Posted

Mouhaha! Ok! thanks!

I'm not understand one quote or two in autoit, because i'm used one quote it's for one caracter and two quotes it's for the string.

Thanks!

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