Run CMD / Batch
cmd.exe コマンド(インライン)または .bat/.cmd ファイルを実行し、出力を取得します。
プログラム・プロセスRunCmdWindows専用
概要
cmd.exe コマンド(インライン)または .bat/.cmd ファイルを実行し、出力を取得します。
Run a cmd.exe command (inline) or a .bat/.cmd file and capture its output.
パラメータ
| パラメータ | 型 | 必須 | 既定値 | 説明 |
|---|---|---|---|---|
| Command | multiline | 任意 | Inline cmd command. Ignored if a batch file is given below. 例: echo Hello && dir 変数に対応 | |
| Batch file (.bat/.cmd) | file | 任意 | Optional. If set, this file is run instead of the inline command. 例: C:/scripts/task.bat 変数に対応 | |
| Arguments | string | 任意 | Passed to the batch file (only used with a file). 変数に対応 | |
| Store stdout in | variable | 任意 | 例: output |