0
啓動的服務我有一臺遠程機器上啓動的服務的PowerShell腳本。遠程使用PowerShell
它確實是這樣的:
Invoke-Command -ComputerName $serverName -ScriptBlock { param($serviceexe) & $serviceexe -install }-ArgumentList $localExePath
它的工作原理確定在本地機器上也TeamCity的作爲構建步驟。
但是,當我試圖從開始其他一些工具的服務,我得到的消息:
"cannot start service from the command line or a debugger".
這其他工具是用C#,使用System.Management.Automation.
從來就也嘗試過使用Process類,但仍然是同樣的問題。
任何想法?