赞
踩
在没有管理员权限的 PowerShell 中,可以用以下脚本打开 Windows 服务:
Start-Process -Verb RunAs -FilePath net -ArgumentList start,服务名称
运行后,Windows 会弹出 UAC 对话框,请求权限。
如果要关闭服务,可以使用以下脚本:
Start-Process -Verb RunAs -FilePath net -ArgumentList stop,服务名称
以上两条命令以管理员身份运行 C:\WINDOWS\system32\net.exe,通过向 net.exe 传递命令行参数,来控制 Windows 中的服务。
在以管理员身份运行的 PowerShell 中,可以用以下脚本打开或关闭 Windows 服务:
<code class="language-plaintext hljs">Start-Service 服务名称
Stop-Service 服务名称</code>
开关多个服务可用如下命令:
- Start-Service 服务1,服务2,服务3
- Stop-Service 服务1,服务2,服务3
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。