sc.exe how to set up the description for the windows Service?
Solution 1:
You need to call sc again to set the description. For example:
sc description TestService1 "This is the description of the service.."
For more information, see here.
Solution 2:
Is not
sc description TestService1 "TestService1"
as per documentation: https://technet.microsoft.com/en-us/library/cc742069.aspx ?