Jump to content

Recommended Posts

Posted

Hello,

I'm looking for a way to replace any variable name by its value in a line...

; Mail.au3
$username = "myLoginName"
$password = "AzErTy"
$command = IniRead("ext_cmd.ini", "COMMANDS", "CMD1", "echo Nothing to do")
Run(@ComSpec & " /c " & $command)

;ext_cmd.ini

[COMMANDS]

CMD1=net use M: \\server\share /user:$username $password

$command is set to "net use M: \\server\share /user:$username $password"

I want to replace each variable by its value, to finaly have "net use M: \\server\share /user:myLogiName AzErTy"

But my commands can contain other variables names.

Thank's for your help... !

Posted

This should help

Opt("ExpandVarStrings", 0) ;0=don't expand, 1=do expand

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Posted

Very good !

It works with $username$ and $password$ in my command line, and Opt("ExpandVarStrings", 1)

Thank you very much for this solution.

No, problem. Once I had the same issue, so I remembered.

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

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