i have created a installation setup in C#.net using Setup Wizard. I want to run a cmd command or batch file as soon as the setup finishes its work. Is it possible and how?
Asked
Active
Viewed 2,897 times
1
-
I think you could do this via `Process` and `ShellExec`. – Rolice Dec 10 '13 at 12:26
-
where to add this command...setup is build using setup wizard... – Khushi Dec 11 '13 at 05:28
1 Answers
3
Found the solution for my question...would like to mention if anybody else searching for it:
How do I launch an application after install in a Visual Studio Setup Project
Add required commands to the Installer class in the main application.
Thanks all