I have a BAT file with this content:
"XYNTService.exe" "-i"
I am currently building up an installation package using Visual Studio Installe开发者_StackOverflow中文版r. I added this BAT file inside the Application Folder
. Now I want to execute it during installation process. How can it be done?
I have surf a lot about custom actions, but still fail to understand how to do it. Need help.
Thank you.
Ultimately, you can always run a batch file by doing ShellExecute or CreateProcess on cmd.exe with the relevant parameters.
However, rememeber that MSI custom actions run in a different user context from the user who is installing. You may struggle to get the batch file to do what you want to.
Martyn
精彩评论