Microsoft.Sdc.Tasks.ServiceProcess.ControlService
我正在尝试使用该任务检查远程计算机上是否存在服务。
<ControlService MachineName="$(TargetMachineName)" Action="Exists" ServiceName="w3svc">
<Output PropertyName="W3ServiceExists" TaskParameter="ServiceExists" />
</ControlService>
当我使用上述任务声明时,我会从 MSBUILD 获得此输出。
(42,54): error MSB4065: The "ServiceExists" parameter is not marked for output by the "ControlService" task.
有没有办法使用 ControlService 类来获取远程机器上是否存在服务?