Назад | Перейти на главную страницу

Как в сценарии PowerShell проверить, работаю ли я с правами администратора?

Как в сценарии PowerShell проверить, работаю ли я с правами администратора?

В Powershell 4.0 вы можете использовать требует вверху вашего скрипта:

#Requires -RunAsAdministrator

Выходы:

Сценарий MyScript.ps1 не может быть запущен, поскольку он содержит инструкцию «#requires» для запуска от имени администратора. Текущий сеанс Windows PowerShell не запущен с правами администратора. Запустите Windows PowerShell, используя параметр «Запуск от имени администратора», а затем попробуйте запустить сценарий еще раз.

$currentPrincipal = New-Object Security.Principal.WindowsPrincipal([Security.Principal.WindowsIdentity]::GetCurrent())
$currentPrincipal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)

(из Уловки безопасности в командной строке)

function Test-Administrator  
{  
    $user = [Security.Principal.WindowsIdentity]::GetCurrent();
    (New-Object Security.Principal.WindowsPrincipal $user).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator)  
}

Выполните указанную выше функцию. ЕСЛИ результат True, пользователь имеет права администратора.

Это проверит, являетесь ли вы администратором, если нет, то он снова откроется в PowerShell ISE в качестве администратора.

Надеюсь это поможет!

    $ver = $host | select version
    if ($ver.Version.Major -gt 1)  {$Host.Runspace.ThreadOptions = "ReuseThread"}

    # Verify that user running script is an administrator
    $IsAdmin=[Security.Principal.WindowsIdentity]::GetCurrent()
    If ((New-Object Security.Principal.WindowsPrincipal $IsAdmin).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator) -eq $FALSE)
    {
      "`nERROR: You are NOT a local administrator.  Run this script after logging on with a local administrator account."
        # We are not running "as Administrator" - so relaunch as administrator

        # Create a new process object that starts PowerShell
        $newProcess = new-object System.Diagnostics.ProcessStartInfo "PowerShell_ise";

        # Specify the current script path and name as a parameter
        $newProcess.Arguments = $myInvocation.MyCommand.Definition;

        # Indicate that the process should be elevated
        $newProcess.Verb = "runas";

        # Start the new process
        [System.Diagnostics.Process]::Start($newProcess);

        # Exit from the current, unelevated, process
        exit
    }

в качестве комбинации приведенных выше ответов вы можете использовать что-то вроде следующего в начале вашего скрипта:

# todo: put this in a dedicated file for reuse and dot-source the file
function Test-Administrator  
{  
    [OutputType([bool])]
    param()
    process {
        [Security.Principal.WindowsPrincipal]$user = [Security.Principal.WindowsIdentity]::GetCurrent();
        return $user.IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator);
    }
}

if(-not (Test-Administrator))
{
    # TODO: define proper exit codes for the given errors 
    Write-Error "This script must be executed as Administrator.";
    exit 1;
}

$ErrorActionPreference = "Stop";

# do something

Другой способ - запустить ваш скрипт с этой строки, что предотвратит его выполнение, если он запущен без прав администратора.

#Requires -RunAsAdministrator