Skip to content

Commit 3672cd5

Browse files
committed
checking: for admin acces
1 parent 1b1add7 commit 3672cd5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

webInstall.ps1

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Add-Type -AssemblyName System.Windows.Forms
2+
[System.Windows.Forms.Application]::EnableVisualStyles()
3+
4+
$ErrorActionPreference = 'SilentlyContinue'
5+
$wshell = New-Object -ComObject Wscript.Shell
6+
$Button = [System.Windows.MessageBoxButton]::YesNoCancel
7+
$ErrorIco = [System.Windows.MessageBoxImage]::Error
18
If (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]'Administrator')) {
29
Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs
310
Exit

0 commit comments

Comments
 (0)