我的Windows服務「monitoringservice」(帳戶:本地服務)和另一個名爲服務如何從另一個窗口服務啓動Windows服務
「uploadService」(賬號:本地系統),我setupproject安裝uploadService和
當我啓動這個上傳服務其工作正常。但是當我開始
的「monitoringservice」的幫助下,上傳服務IAM無法喲啓動服務IAM提示以下錯誤:
「可以在電腦‘’上不開uploadService」
任何一個可以建議我請的IAM解決這個問題strck了
我用下面的代碼
ServiceController sc = new ServiceController("UploadService");
if(sc!=null)
{
try
{
if (sc.Status != ServiceControllerStatus.Running && sc.Status != ServiceControllerStatus.StartPending)
{
sc.Start();
}
}
catch (Exception ex)
{
}
}
預先感謝您
檢查這個其他問題如它可能是相關http://stackoverflow.com/questions/1545355/stop-start-service-in-code-in-windows-7 –
我已經通過上述鏈接已經,但我沒有找到確切的答案我的問題 – sree