Jump to content

Run( Variable Problems


Guest hakcenter
 Share

Recommended Posts

Guest hakcenter

I can't seem to get the run function to work properly with any variables that i set for them.

ex:

$TESTPATH = IniRead("config.ini", "Delays", "TESTPATH", "NotFound")

$TESTEXE = IniRead("config.ini", "Delays", "TESTEXE", "NotFound")

run("$TESTEXE", "$TESTPATH")

help?

Link to comment
Share on other sites

$TESTPATH = IniRead("config.ini", "Delays", "TESTPATH", "NotFound")

$TESTEXE = IniRead("config.ini", "Delays", "TESTEXE", "NotFound")

run($TESTEXE, $TESTPATH)

Variables do not have the "

Edited by ezzetabi
Link to comment
Share on other sites

Guest hakcenter

still not working

(Inside INI)

ex:

TESTPATH=Test Me

TESTEXE=Test.exe

I don't know if having the space inside the path is a problem... but it refuses to work still.

Link to comment
Share on other sites

TEST.AU3

$TESTPATH = IniRead("config.ini", "Delays", "TESTPATH", "NotFound")
$TESTEXE = IniRead("config.ini", "Delays", "TESTEXE", "NotFound")

run($TESTEXE, $TESTPATH)

Config.ini

[Delays]
testpath="C:\Documents and Settings\Ezzetabi\Desktop"
testexe="C:\Documents and Settings\Ezzetabi\Desktop\WinAudit.exe"

Worked perfecly, I can't understand what problems you can still have.

Edited by ezzetabi
Link to comment
Share on other sites

  • 2 weeks later...

I am having a similar problem here

TSO.au3:

$Path = IniRead("TSO.ini", "Global", "Path", "")
$File = IniRead("TSO.ini", "Global", "File", "")

Run($Path, $File)
TSO.ini:
[Global]
Path="C:\TSO"
File="C:\TSO\tso.exe"

Error Returned:

AutoIt Error

Line 33 (File "C:\blah\blah\TSO.au3")L

Run($Path, $File)

Error: Unable to execute the external program.

Access is denied.
Edited by NiCoTiNe
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...