I’m using node.js in my server side. Now I wanna run some binary file compiled from a .c code, how to do that?
I’ve already tried
var obj = new ActiveXObject("WwScript.Shell");
obj.run("myBinary");
But doesn’t work… Thanks a lot!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Update:
It seems that
sysmodule is is deprecated, useutilinstead as @loganfsmyth mentioned.