I have a .Net Windows service. I want to create an installer to install that windows service.
Basically, it has to do the following:
- Pack
installutil.exe(Is it required?) - Run
installutil.exeMyService.exe - Start MyService
Also, I want to provide an uninstaller which runs the following command:
installutil.exe /u MyService.exe
How to do these using Inno Setup?