Jump to content

Use of Environment variable


Recommended Posts

Hello all. I'm a newbie to using AutoIt and am enjoying playing around with its functionality however I'm struggling to use the @TEMPDIR variable to run an external VBS and was hoping with some help with the syntax.

The script looks like this at the moment

BlockInput (1)

WinMinimizeAll ()

;Sleep (1000)

RunAsSet ("Username", "Domain", "Password")

Run ("wscript @TEMPDIR & testme.vbs")

Send ("S3ntinal{ENTER}")

RunAsSet ()

Thanks alot guys!

Link to comment
Share on other sites

  • Developers

BlockInput (1)

WinMinimizeAll ()

;Sleep (1000)

RunAsSet ("Username", "Domain", "Password")

Run ("wscript @TEMPDIR & testme.vbs")

Send ("S3ntinal{ENTER}")

RunAsSet ()

Thanks alot guys!

@tempdir is a variable which you have put inside a literal.

you will have to concatenate literals and variables like:

"wscript " & @TEMPDIR & "\testme.vbs"

Edited by JdeB

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

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
 Share

  • Recently Browsing   0 members

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