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

BUG folder with space.

Open kkm opened this issue 7 years ago • 0 comments

BEFORE in index.js row 98: exec(windowsFocusManagementBinary + " " + arg, (error, stdout, stderr)

FIX: exec('"' + windowsFocusManagementBinary + '" ' + arg, (error, stdout, stderr)

Because command line cant find if Bin folder with space. Can you fix soon with pull? C:\User\kkm\Test Folder\Bin ==> wont work C:\User\kkm\Test_Folder\Bin ==> works well.

kkm avatar Nov 02 '18 00:11 kkm