Hello,
I'm attempting to install a service via C# from an installer's custom action.
I've tracked most of the topics related to my problem on Stack-Overflow however I've failed to find a solution to my problem.
The problem is : I need to pass additional arguments to my service, here's how it looks like in cmd.exe :
my_service -installMY_SERVICE_NAME cmdLine="commands in here" auxCommands="aux commands in here"
net start "My Service (MY_SERVICE_NAME)"
It works if I do it from the command line however I fail to get it done in C# therefore I'm forced to ask for help
Regards