Ghost21 Posted March 5, 2009 Posted March 5, 2009 I compile programs for a number of pcs on a network. So instead of doing each one individually can it do it all at the same time ? eg. \\domain\Computer1\program.exe;\\domain\Computer2\program.exe;\\domain\Computer1\program.exe Something like that ? Sorry if this is in the wrong place to ask... ???
BrettF Posted March 5, 2009 Posted March 5, 2009 You could make something to do it for you, but as far as I know the compiler only supports one output location Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
ACS Posted March 5, 2009 Posted March 5, 2009 I don't understand the question... are you trying to execute several programs concurrently?
Ghost21 Posted March 5, 2009 Author Posted March 5, 2009 I don't understand the question... are you trying to execute several programs concurrently?so I just need to compile to more then 1 pc at a time.
ACS Posted March 5, 2009 Posted March 5, 2009 If you're saying you want to put the resulting compiled exe onto one more than one computer (which is my understanding) then what you need to do is compiled it on the one computer and once it's done, just copy it over to the others. As BrettF said you can't specify multiple targets.
Inverted Posted March 5, 2009 Posted March 5, 2009 Yeah, make a script to deploy the file where needed.
bo8ster Posted March 5, 2009 Posted March 5, 2009 Mate, I recommend checking out a tool called R2Build - http://r2build.sourceforge.net/ it is great! You can compile and do whatever you want! I have also written a plugin to to compile AutoIt scripts from SVN. Post your code because code says more then your words can. SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y. Use Opt("MustDeclareVars", 1)[topic="84960"]Brett F's Learning To Script with AutoIt V3[/topic][topic="21048"]Valuater's AutoIt 1-2-3, Class... is now in Session[/topic]Contribution: [topic="87994"]Get SVN Rev Number[/topic], [topic="93527"]Control Handle under mouse[/topic], [topic="91966"]A Presentation using AutoIt[/topic], [topic="112756"]Log ConsoleWrite output in Scite[/topic]
Developers Jos Posted March 5, 2009 Developers Posted March 5, 2009 When using the full SciTE4AutoIt3 package you have the #autoit3wrapper_run_after directive to copy the created program to multiple places: #AutoIt3Wrapper_Run_After=copy "%out%" "\\pc_one\xyz" #AutoIt3Wrapper_Run_After=copy "%out%" "\\pc_two\xyz" SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Ghost21 Posted March 5, 2009 Author Posted March 5, 2009 When using the full SciTE4AutoIt3 package you have the #autoit3wrapper_run_after directive to copy the created program to multiple places: #AutoIt3Wrapper_Run_After=copy "%out%" "\\pc_one\xyz" #AutoIt3Wrapper_Run_After=copy "%out%" "\\pc_two\xyz" Yay! Now thats a answer that makes sense. But thankyou to everyone for sussgestions etc.
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