Mateo 0 Posted January 3 Hello everyone I have a problem, I am running a process on the SYSTEM user and I want to display messages to the user, so what I want to do is another process that will run on the user himself, and then I want to send him some "update" so that he can display the message. Anyone have an idea how to do this? Thank you! Share this post Link to post Share on other sites
Dan_555 72 Posted January 3 (edited) I remember that there were some threads on this forum, and there is a wiki with the same thema: interprocess communication,. As for ideas : maybe use a file or ini file to communicate with the processes. The System process would create a file, and the User process would look if the file exists, then display the message and delete the file. The same would go for the ini, but there, instead of deleting the message, the user process would write back that it has read the last message, so that the system can write new ones. Edited January 3 by Dan_555 Share this post Link to post Share on other sites
Mateo 0 Posted January 3 Thanks for this thread, I'll take a look now. As for file communication, I considered it, but the problem is that it costs me time (I need a response of less than a second) Share this post Link to post Share on other sites
Nine 921 Posted January 3 Look in my signature I made 2 IPCs that can be used for that purpose. Named Pipe and WCD both are very fast and can be easily implemented. Not much of a signature, but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites
Mateo 0 Posted January 3 Thank you very much! I just checked this UDF of yours, it looks really good! thanks again! Share this post Link to post Share on other sites