错误1001.指定的服务已存在

时间:2011-12-05 19:42:50

标签: service windows-services installer

我正在编写一个C#windows服务,我能够在Visual Studio中安装和卸载,然后不确定我在代码中做了什么,搞砸了。现在,当我尝试安装时,我收到错误1001:

The specified service already exists.

但是当我尝试卸载时,它会给我:

Another program is being installed. Please wait until that installation is complete, and then try installing this software again.  

我确实看到我的服务仍列在服务中。我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:7)

sc delete [服务名称]对我有用。请务必以管理员身份打开cmd,否则您将收到拒绝访问错误。