我正在使用Visual Studio(2017)安装程序项目创建安装程序。我要在安装软件后运行可执行文件(postRun.exe)。可执行文件(postRun.exe)将与所有其他文件一起安装在目标目录中。我跟随了裁判:run exe on post build event
当前,我正在使用构建后事件来执行此可执行文件。我尝试了以下两个命令:
"$(TargetPath)postRun.exe"
"$(TargetDir)postRun.exe"
但是两个命令都出现以下错误:
Starting post-build events...
'"postRun.exe"' is not recognized as an internal or external command,
operable program or batch file.
ERROR: 'PostBuildEvent' failed with error code '1' 'Unspecified error'
我想念东西吗?
此外,是否可以在命令中传递参数?例如,安装过程中的用户输入(所有用户还是当前用户)?像这样:
"$(TargetDir)postRun.exe" [ALLUSERS]