Thursday, 15 May 2014

Windows service through CMD

To create a service with out using visual studio:
 
We need the exe file what we have to create the ser vice
 sc create **Abcd** start= auto binPath= "E:\Projects\Service\bin\Debug\Service.exe"
 
To Delete a windows Service through CMD:
sc delete **Abcd**

No comments:

Post a Comment