如何手动删除windows服务条目

本文关键字:服务 windows 何手动 删除 | 更新日期: 2023-09-27 18:29:23

我试图实现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.

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

如何手动删除windows服务条目

使用

sc delete "servicename"

在命令提示符下。

尝试转到命令窗口并键入:

     {your service name} /uninstall.

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

尝试以下命令sc delete"yourservice"