I created a windows service in C# where I can start , stop, restart.
Is there anyway of creating a simple desktop application to control it.
example: button to start service
button to stop.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Please have a look at this article. It explains how to stop/start/restart a service in a nice manner.
All you then need to do is create a new WinForms/WPF Application, add 3 buttons (style as you like) and assign those methods to the click events of the buttons.
Easy as pie, let me know if you need more info.