I have installed a .Net Console application EXE as service using SC create command as below
sc create DemoApp displayname= "Test App" binpath= "Path to exe"
Trying to start the service 'sc start' I want to pass parameter during startup and it has to be accessible in my Main method. Used the following command
sc start DemoApp Sample
I am using below code to retrieve the parameters in main method.
string[] arguments = Environment.GetCommandLineArgs();
But I see only exe path available as part of arguments array retrieved. I am not getting the parameter I passed along with 'sc start' which is string 'Sample' in this case.
Can anyone suggest me how to access the argument I passed with sc start inside my console app main method?
Thanks.
question from:
https://stackoverflow.com/questions/66058922/sc-start-with-parameters-not-able-to-access-parameters-in-application 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…