How to run Windows cmd ' start "" "c:\\Users" ' #13197
Answered
by
jtoppine
rabbitkiller-dev
asked this question in
Q&A
-
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
rabbitkiller-dev
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"]});