在这里的一个线程中,我找到了一种检查用户是否具有管理权限的方法。但是,当我尝试对此使用布尔逻辑时,它无法正常工作。
$user = [Security.Principal.WindowsIdentity]::GetCurrent();
(New-Object Security.Principal.WindowsPrincipal $user).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)
if($user = $false){cls;Write-warning "Starting and stopping services can only be done with administrative privileges.`nPlease restart this script from an elevated prompt!";Read-host;exit
}
问题是,在从我的计算机运行脚本而没有使用管理权限启动 Powershell 时,会出现文本“False”。但是,if 语句没有启动。我是否定义错误?
编辑:当我使用$true
而不是$false
if 语句时,当我从提升的提示符运行和不运行脚本时都会启动。