2013-08-29 66 views
1

我試圖實施wcf服務並將其託管在Windows服務上。那時我能夠使用installutil.exe命令安裝和卸載wcf服務。我錯誤地刪除了項目,並且我的測試wcf服務被安裝在計算機中。現在我想手動刪除該服務。任何想法?如何手動刪除Windows服務條目

當我試圖用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

使用

sc delete "servicename" 

在命令提示符。

1

嘗試將一個命令行窗口,鍵入:

 {your service name} /uninstall. 
0

你的路徑似乎因此該命令失敗是不正確的:InstallUtil.exe/U YourService.exe

嘗試下面的命令 SC刪除「yourservice」