How can I install the service using installutil.exe [closed]
开发者_Python百科
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this questionHow can I install the web service using installutil.exe?
I get a Windows Service start failure error every time I start.
Your service is probably throwing an exception on startup. Check the windows event log
I think installutil.exe is use to install the windowservice Ex: To Install the windowservice
C:>installutil Path(windowservice.exe)
To Uninstall the windowservice
C:>installutil /u Path(windowservice.exe)
精彩评论