Is it possible for me to send the contents of variables to a new script I will be running? Like with a cmd file, I can do "Start cmd.exe /c newbat.cmd" and the newbat.cmd can still echo var's that were set in my original bat file. Is this possible? I made a test with Global $hi = "Hello" Run(@AutoItExe & ' /autoit3executescript test2.au3') and one with MsgBox(0,"Title","Hello" & $hi) I want that second one to know var data from the first. Is this possible with Autoit3?