Browse Source

Run sctipt as administrator

Signed-off-by: Konctantin <gawrilyako@gmail.com>
pull/5/head
Konctantin 6 years ago
parent
commit
373150d130
  1. 10
      Win 10.ps1

10
Win 10.ps1

@ -1,9 +1,17 @@
# Remove all text from the current display
# Remove all text from the current display
# Очистить экран
Clear-Host
# Сlear $Error variable
# Очистка переменной $Error
$Error.Clear()
# Run sctipt as administrator
# Запуск скрипта от имени администратора
if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
Start-Process powershell.exe "-noexit -NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs;
exit
}
# Get information about the current culture settings
# Получить сведения о параметрах текущей культуры
IF ((Get-Culture).Name -eq "ru-RU")

Loading…
Cancel
Save