I am having no success in modifying a Windows Installer MSI to run a batch file after the primary output has been installed. I have searched for this and found many suggesti
I was able to solve this by creating an EXE consisting essentially of:
System.Diagnostics.Process.Start(pathToBatchFile);
Adding the EXE to the MSI file then running it as a custom action.