Zero_Truths Posted June 16, 2005 Posted June 16, 2005 (edited) Does anyone know how to integrate extensions for an autoIt script? Edited June 16, 2005 by Zero_Truths ---------------------------------------------------------------------------------------------GAMING TERMSStock Item: It Was Shipped Once Before, And It Can Be Done Again, Possibly.Unprecedented Performance: Nothing Has Ever Ran This Slow Before.Years Of Development: We Finally Got This Shit To Work.Stunning Graphics: We Used MS Paint.The Best Sequel Ever: The 1st one Sucked. This One Sucks Even More.100+ Hours Gameplay: If You Don't Die From Boredom, Sucker.Superb Control: Your Wrist Will Break After The 3rd Try.Amazing Gameplay: One Guy Played This For 10 Minures, Nonstop!Excellent Story: We Ripped An Old Pron Movie Script.Online Gameplay: If We Are Not Using Our Internet To Download Pron and MP3s.Best Game Of The Year: A Homeless Guy Made This Statement After We Gave Him $25.In-Depth Characters: They Have Big BoobsALL JOKES FROM LITTLEGAMERS.COM
Valuater Posted June 16, 2005 Posted June 16, 2005 only thing i found is Only a few file extensions are usually "runable" - these are .exe, .bat, .com, .pif. Other file types like .txt and .msi are actually executed with another program. When you double click on a "myfile.msi" file what actually happens in the background is that "msiexec.exe myfile.msi" is executed. So to run a .msi file from AutoIt you would do: RunWait("msiexec myfile.msi") Or, an even simpler way is to run the command "start" which will automatically work out how to execute the file for you: RunWait(@COMSPEC " /c Start myfile.msi") If this does not answer your question, then you should explain a little more *********** THIS INFO IS DIRECTLY FROM HELP
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