[Windows10]callコマンドでexeファイルを実行するサンプル
書式
call exeファイル名
使用例
フェイル名 test.bat
サンプルコード
@echo off rem 電卓起動 call calc.exe rem エクスプローラー起動 call explorer.exe rem メモ帳起動 call notepad.exe
Coding Changes the World
書式
call exeファイル名
使用例
フェイル名 test.bat
サンプルコード
@echo off rem 電卓起動 call calc.exe rem エクスプローラー起動 call explorer.exe rem メモ帳起動 call notepad.exe