我有一個Windows服務。 現在我要反安裝並重新安裝它,但如果我嘗試用這個命令安裝它,我有這樣的錯誤:如何unistall窗口服務
InstallUtil.exe GestoreService.exe
的錯誤是
它和異常發生在安裝過程。 System.ArgumentException:原始GestoreService已經存在於本地計算機中
我該如何解決這個錯誤?
這是主代碼:
public GestoreService()
{
InitializeComponent();
try
{
if (!System.Diagnostics.EventLog.SourceExists("LoggerGestore"))
{
System.Diagnostics.EventLog.CreateEventSource(
"LoggerGestore", "LoggerGestore");
}
}
catch (Exception e)
{
log.Error(e);
}
log.Info("preparazione file di config in corso...");
}