I need to interface with a program suite that uses named. Win32 Events (eg, CreateEvent()
API) to communicate between running processes.
I'm able to do this with some very simple C code
h = CreateEvent(NULL, FALSE, FALSE, argv[1]);
if (h != INVALID_HANDLE_VALUE) SetEvent(h);
However, due to policy issues, I can't install custom binaries on production machines!
Is there a way to do this with Windows Scripting Host?
I could possibly get signed binaries added to the production environment - so other scripting language might be viable. Recommendations are welcome.