web-dev-qa-db-ja.com

複数の引数を渡す方法は?

バッチファイルのWindowsタスクスケジューラでStart a programアクションのmultipleパラメータを渡す方法は?組み込みの構文ヒントはありません...

2
Nae

コマンドプロンプトで渡す方法と基本的に同じです。

  • 引数はスペースで区切り、
  • metacharacter sが関係する場合は、各引数を二重引用符で囲みます。"

のように:

"super user:" 810934

How the Arguments Should Look Like in the Textbox


または、Program/scriptの横に Akinapoints out として引数を追加することもできます。

D:\my_script.bat "super user:" 810934

simply add the arguments next to <code>Program/script</code>

選択後 OK 次のプロンプトが表示されます。

Resolved Arguments

1
Nae