1

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

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

4

3 回答 3

3

利用

sc delete "servicename"

在命令提示符下。

于 2013-08-29T07:09:27.507 回答
1

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

     {your service name} /uninstall.
于 2013-08-29T07:13:55.350 回答
0

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

试试下面的命令 sc delete "yourservice"

于 2013-08-29T07:22:40.370 回答