How to Install Windows Service via Command Line

Channel: Linux
Abstract: The .net framework provides and command-line installer utility for installing services on the Windows system. You can use installutil.exe to install W

The .net framework provides and command-line installer utility for installing services on the Windows system. You can use installutil.exe to install Windows service via the command line. For .net 4 framework it’s available under C:\Windows\Microsoft.NET\Framework\v4.0.30319 directory.

How to Install Windows Service

First of all, navigate to the .net framework directory and then run installutil.exe followed by the Windows server exe file path.

cd "C:\Windows\Microsoft.NET\Framework\v4.0.30319\" 
installutil.exe 
 C:\Users\Rahul\WindowsService\bin\Debug\WindowsService.exe" 

This will install service on your system. In case it prompts for the authentication, Inputs the username, and password of your Windows system. Remember the user name must start with 「.\」 followed by username as shown in the below screen.

See the onscreen messages and check if the command successfully completed.

How to Uninstall Windows Service

To Uninstall the Windows service use 「-u」 option with the same command as installation. The command to uninstall service look like below:

cd "C:\Windows\Microsoft.NET\Framework\v4.0.30319\" 
installutil.exe -u "C:\Users\Rahul\WindowsService\bin\Debug\WindowsService.exe" 
Conclusion

This tutorial helped you to install service on Windows system using command prompt. Also provides you instructions to delete existing service. Next, you may like to read about managing Windows service via command line.

Ref From: tecadmin
Channels: windows

Related articles