Shioon Posted April 19, 2020 Posted April 19, 2020 Hello, I have read multiple examples of using Command line to send parms to an exe that is a compiled au3. question? Is this running the exe or sending it to an already running exe? What I am wanting to do is the following if possible. Multiple computers connected to a network that has a server that acts as a shared drive. lets say that drive is \\gboTest\testfolder inside of testfolder is a au3 exe that is running and it has a command along the lines of this. func message ($a) "writes $a to a ini file" IniWrite('\\gboTest\testfolder\test.ini', 'Test', $a, "test") endfunc How can I have computer A send something to the already compiled and running exe on server A so that one device is writing to the ini? how can I have server B tell computer A that it got the request? and how can I do this without starting another exe up on the server. my goal is to have only one program writing to the ini files while everything else just sends a request to the exe till it responds your done or something.
Nine Posted April 19, 2020 Posted April 19, 2020 (edited) IPC. Look at Wiki. You could also use UDP/TCP functions. Look at Network Management in help file. Edited April 19, 2020 by Nine “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
rudi Posted May 7, 2020 Posted May 7, 2020 You could run a compiled EXE on the clients write to a separate INI per desktop pc, or alternatively to a separate ini section per PC. The compiled EXE on the server has to monitor for INI files (Sections) for incoming, new data. Then process these data. Rudi. Earth is flat, pigs can fly, and Nuclear Power is SAFE!
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