Jammer Posted February 21, 2005 Posted February 21, 2005 How can I start a program with a command line using autoit? I need an example... i need to run hl.exe wirth command line "-console -game cstrike" I tryed Run("hl.exe", "-console -game cstrike") and many more variants but still dont get it Need and example...
Blue_Drache Posted February 21, 2005 Posted February 21, 2005 How can I start a program with a command line using autoit?I need an example... i need to run hl.exe wirth command line "-console -game cstrike"I tryed Run("hl.exe", "-console -game cstrike") and many more variants but still dont get it Need and example...<{POST_SNAPBACK}>Ok, re-read the help file on the "RUN()" command. What you're telling it to do is use "-console -game cstrike" as the working directory. Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache
golfjrr Posted February 21, 2005 Posted February 21, 2005 Ok, re-read the help file on the "RUN()" command. What you're telling it to do is use "-console -game cstrike" as the working directory.<{POST_SNAPBACK}>I did something like this$workingdir = "c:/whatever" $exe = $workingdir & "/" & "hl.exe -console -game cstrike" Run($exe, $workingdir)
eJan Posted February 21, 2005 Posted February 21, 2005 Try:$workingdir = "c:\whatever"$exe = $workingdir & "\hl.exe -console -game cstrike"Run($exe)
zcoacoaz Posted February 22, 2005 Posted February 22, 2005 how about this, its how i always do command line Run ( 'hl.exe "-console" "-game cstrike"' ) i hope that helps [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now