2014-09-10 57 views
1

我目前正在使用WMI在我的C#代碼中啓動服務,並且我想設置其啓動參數。WMI StartService參數

有沒有辦法做到這一點?到目前爲止,我找不到任何相關的東西。

在此先感謝。

Thomas。

回答

0

檢查開源項目

Services+

包含與StartService

實例VB.Net WMI的完整用法:大量的調查

Dim objPath = "\\ComputerName\root\cimv2:Win32_Service.Name='ServiceName'" 
Using objService As New ManagementObject(objPath) 
    Dim outParams = objService.InvokeMethod("StartService", Nothing) 
    rtnVal.WmiValue = CInt(outParams) 
End Using 
+0

是,和之後出現,這是不可能的,在使用WMI服務的發送開始參數。 看看我的答案(第二個鏈接),看看我採用的解決方案。 – 2014-10-24 13:25:15