如何手动删除Windows服务条目

时间:2013-08-29 07:00:27

标签: c# wcf

我正在尝试实现wcf服务并将其托管在Windows服务上。那时我可以使用 installutil.exe 命令安装和卸载wcf服务。我错误地删除了项目,我的测试wcf服务安装在计算机上。现在我想手动删除该服务。任何的想法?

当我尝试使用 Installutil.exe / u路径删除时,它会抛出异常

Exception occurred while initializing the installation:
System.IO.FileNotFoundException: Could not load file or assembly 'XXX' or one of its dependencies. The system cannot find the file specified.

我已从我的服务属性 - >复制了路径可执行文件的路径

3 个答案:

答案 0 :(得分:3)

使用

sc delete "servicename"

在命令提示符下。

答案 1 :(得分:1)

尝试进入命令窗口并输入:

     {your service name} /uninstall.

答案 2 :(得分:0)

您的路径似乎不正确,因此此命令失败:InstallUtil.exe / U YourService.exe

尝试以下命令 sc删除“yourservice”