如何以提升的访问权限运行 powershell
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论