-
oneDeno.run({cmd: ['start "" "C:\\Users"']});
twoDeno.run({cmd: ["c:\\windows\\system32\\cmd.exe", "/c", "echo", "hi"]});
setTimeout(()=>{}, 2000)
twoDeno.run({cmd: ["c:\\windows\\system32\\cmd.exe", "/c", `start "" "C:\\Users"`]});
setTimeout(()=>{}, 2000)
nodejs can execute
|
Beta Was this translation helpful? Give feedback.
Answered by
jtoppine
Dec 25, 2021
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
yefu24324
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Deno.run({cmd: ["c:\\windows\\system32\\cmd.exe", '/C', 'start', "C:\\Users"]});