5 lines
221 B
Plaintext
5 lines
221 B
Plaintext
Set fso = CreateObject("Scripting.FileSystemObject")
|
|
Set WshShell = CreateObject("WScript.Shell")
|
|
WshShell.CurrentDirectory = fso.GetParentFolderName(WScript.ScriptFullName)
|
|
WshShell.Run "cmd /c node server.js", 0, False
|