node-process-windows icon indicating copy to clipboard operation
node-process-windows copied to clipboard

Manage application windows via a Node API - set focus, cycle active windows, and get active windows

Results 14 node-process-windows issues
Sort by recently updated
recently updated
newest added

BEFORE in index.js row 98: `exec(windowsFocusManagementBinary + " " + arg, (error, stdout, stderr)` FIX: `exec('"' + windowsFocusManagementBinary + '" ' + arg, (error, stdout, stderr)` Because command line cant...

Hey, would it be possible to get the full path of the process? Trying to kill everything running from a certain folder.

I'm particularly interested in getting the `MainWindowHandle` integer back from the process info, could you also include that? So for example, the result would be something like: ``` var processWindows...

This event listen would listen for when a user changes process windows. The function in user32.dll is SetWinEventHook with EVENT_SYSTEM_FOREGROUND You may also need EVENT_SYSTEM_MINIMIZESTART and EVENT_SYSTEM_MINIMIZEEND Reference: [https://msdn.microsoft.com/en-us/library/windows/desktop/dd373640(v=vs.85).aspx](https://msdn.microsoft.com/en-us/library/windows/desktop/dd373640(v=vs.85).aspx) I...