Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
162 views
in Technique[技术] by (71.8m points)

.net - SC start with parameters. Not able to access parameters in application

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...