How to install and uninstall Windows Services ?

 Posted by Chvrsri on 12/15/2010 | Category: C# Interview questions | Views: 4263 | Points: 40
Answer:

In order to install and uninstall Window Services. First we have to open the command prompt of Visual Studio and we have to move to the project folder where the .exe file is located and then we have to type :

For Installing :

installutil -i ServiceName.exe


For UnInstalling :

installutil -u ServiceName.exe


Source: My Own Observation | Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response