Last active
March 19, 2025 09:18
-
-
Save cjfarrelly/1c1609913b1de1d602c2 to your computer and use it in GitHub Desktop.
Powershell self elevating as admin in 64bit mode script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$myWindowsID=[System.Security.Principal.WindowsIdentity]::GetCurrent() | |
$myWindowsPrincipal=new-object System.Security.Principal.WindowsPrincipal($myWindowsID) | |
$adminRole=[System.Security.Principal.WindowsBuiltInRole]::Administrator | |
if ($myWindowsPrincipal.IsInRole($adminRole)) | |
{ | |
$Host.UI.RawUI.WindowTitle = $myInvocation.MyCommand.Definition + "(Elevated)" | |
$Host.UI.RawUI.BackgroundColor = "DarkBlue" | |
Clear-Host | |
} | |
else | |
{ | |
$newProcess = new-object System.Diagnostics.ProcessStartInfo "PowerShell"; | |
$scriptName = $myInvocation.MyCommand.Definition | |
$newProcess.Arguments = "-File $scriptName" | |
$newProcess.Verb = "runas"; | |
[System.Diagnostics.Process]::Start($newProcess); | |
exit | |
} | |
if ($pshome -like "*syswow64*") { | |
write-warning "Restarting script under 64 bit powershell" | |
& (join-path ($pshome -replace "syswow64", "sysnative") powershell.exe) -file ` | |
(join-path $psscriptroot $myinvocation.mycommand) @args | |
exit | |
} | |
Set-ExecutionPolicy RemoteSigned -Force | |
#add your code here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the help of ChatGPT, after numerous attempts, I have managed to write the shortest code for self-elevating PowerShell permissions: