如何以提升的访问权限运行 powershell

发布于 2025-01-11 18:16:51 字数 495 浏览 0 评论 0原文

使用 Powershell 正常模式,我想使用具有提升访问权限的脚本来停止和启动 tomcat。 我能够使用下面的脚本成功实现这一目标。

if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
  Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -Command Stop-Service Tomcat9" -Verb RunAs
  exit
}

但我不希望它要求确认提示才能继续。我什至尝试在 stop-service 命令后添加 -Confirm:$false 但它仍然提示确认。

有什么办法可以跳过确认提示吗?

Using Powershell normal mode, I want to stop and start tomcat using a script with elevated access.
Im able to achieve this successfully using below script.

if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
  Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -Command Stop-Service Tomcat9" -Verb RunAs
  exit
}

But I dont want it to ask for confirmation prompt to proceed. I even tried adding -Confirm:$false after the stop-service command but it still prompting for confirmation.

Is there any way i can skip the Confirmation prompt?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文