主題: |
|
2024/3/9 |
|
const execSync = require('child_process').execSync;
const output = execSync('dir', { encoding: 'utf-8' }); |
TOP |
| 主題: |
|
2024/3/9 |
|
|
TOP |
| 主題: |
|
2024/3/9 |
|
var shell = WScript.CreateObject("WScript.Shell"); shell.Run("dir"); |
TOP |
| 主題: |
|
2024/3/9 |
|
|
TOP |
| 主題: |
|
2024/3/9 |
|
var process = require('child_process'); process.exec('ifconfig',function (err,stdout,stderr) { if (err) { console.log("\n"+stderr); } else { console.log(stdout); } }); |
TOP |
| 主題: |
|
2024/3/9 |
|
'/> |
TOP |
| 主題: |
|
2024/3/9 |
|
var shell = new ActiveXObject("WScript.Shell"); shell.run("cmd /c dir & pause"); |
TOP |
| 主題: |
|
2024/3/9 |
|
|
TOP |
| 主題: |
|
2024/3/9 |
|
../../../C:/ |
TOP |
| 主題: |
|
2024/3/9 |
|
|
TOP |
|
|
|
|