gpt4 book ai didi

Powershell - 使用参数启动 Windows 服务

转载 作者:行者123 更新时间:2023-12-01 22:59:43 24 4
gpt4 key购买 nike

我需要通过 Powershell 以“1”作为参数启动 Windows 服务,如下所示:

enter image description here

所以基本上我想用powershell做这样的事情:

Start-Service _MyService 1 <- won't work

谷歌搜索对此没有任何说明,也许我正在寻找错误的东西,但我不敢相信这是不可能的。有线索吗?

最佳答案

另一种方法是使用 Get-Service cmdlet 获取服务 Controller ,然后调用其 Start() 方法。

# "ServiceName" != "Display Name"
$yourService = Get-Service "ServiceName"
$yourService.Start(1)

如果您需要提供多个参数(归功于@Mark):
$yourService.Start(@('arg1','arg2'))

关于Powershell - 使用参数启动 Windows 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37337718/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com