powershell 确保PS脚本以提升的权限运行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 确保PS脚本以提升的权限运行相关的知识,希望对你有一定的参考价值。

# Works in Powershell >= v4.0, add to top of file
#Requires -RunAsAdministrator
# Works in all versions of powershell, add to top of file
If (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {    
    Write-Output "This script needs to be run As Admin"
    Break
}

以上是关于powershell 确保PS脚本以提升的权限运行的主要内容,如果未能解决你的问题,请参考以下文章

获取PowerShell脚本的文字命令行

使用 powershell 和 Get-WmiObject 检查给定进程是不是以提升的权限运行

Powershell脚本执行权限

仅在 ISE 中运行的 Powershell 脚本

Powershell管理系列(三十五)PowerShell操作之以管理员权限运行脚本

如何运行PowerShell的脚本文件