From 7a1bac6f8a3f7241649d39fc1e9a5364dc518b60 Mon Sep 17 00:00:00 2001 From: farag2 Date: Thu, 29 Aug 2019 14:19:53 +0300 Subject: [PATCH] Update Win 10.ps1 --- Win 10.ps1 | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Win 10.ps1 b/Win 10.ps1 index 35ac86af..43e5bbe5 100644 --- a/Win 10.ps1 +++ b/Win 10.ps1 @@ -1,17 +1,16 @@ -# 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 +if (-not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) +{ + Start-Process -FilePath powershell.exe -ArgumentList "-noexit -NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs + exit } - # Get information about the current culture settings # Получить сведения о параметрах текущей культуры IF ((Get-Culture).Name -eq "ru-RU")