使用 NSIS 脚本在远程计算机上启动 Windows 服务

发布于 2024-08-21 23:56:37 字数 158 浏览 11 评论 0原文

我可以使用 NSIS 脚本在远程计算机上启动服务吗?我知道我们可以使用:

sc \\machine start servicename

通过DOS提示符。但我们可以在 NSIS 中做同样的事情吗? SimpleSC 可以用于此目的吗?

Can I start a service on remote machine using NSIS script. I know we can use:

sc \\machine start servicename

through DOS prompt. But can we do the same in NSIS? Can SimpleSC be used for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

给我一枪 2024-08-28 23:56:37

您可以使用exec

ExecWait 'net start $servicename'

编辑:哦,你的意思是在远程计算机上启动服务......好吧:

ExecWait 'sc \\machine start servicename'

You could use exec.

ExecWait 'net start $servicename'

Edit: Oh, you meant starting the service on the remote machine...well:

ExecWait 'sc \\machine start servicename'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文