cmdコンソールで次のように実行される.exeファイルを実行してみてください。
nameFile.exe-inffileDriver.infインストール
Inno Setupには、次のものがあります。
var
command: Srtring;
Begin
command := 'nameFile.exe -inf fileDriver.inf install';
command := AddQuotes(command);
Exec(command, '', 'C:\pathOfFileName', SW_SHOWNORMAL, ewWaitUntilTerminated, ResultCode);
S:= SysErrorMessage(ResultCode);
MsgBox(S, mbInformation, MB_OK);
end;
メッセージはパラメータが無効であることを示していますが、パラメータを使用してexeファイルを実行するにはどうすればよいですか?