Jump to content

Recommended Posts

Guest hakcenter
Posted

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?

Posted (edited)

$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
Guest hakcenter
Posted

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.

Guest hakcenter
Posted

use the commas around what? and i forgot to post the c:\path\test me

Posted (edited)

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
  • 2 weeks later...
Posted (edited)

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

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
  • Recently Browsing   0 members

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