Skip to content

Instantly share code, notes, and snippets.

@yangyer
Last active January 30, 2016 00:18
Show Gist options
  • Save yangyer/f857776b40f317fd72ac to your computer and use it in GitHub Desktop.
Save yangyer/f857776b40f317fd72ac to your computer and use it in GitHub Desktop.
Powershell sudo
function Start-ElevatedUACProcess {
$splat = @{'FilePath'=$args[0];'Verb'='runAs' }
$argList = $args[1..($args.Length)]
if ($argList) {
$splat.Add("ArgumentList", $argList);
}
Start-Process @splat }
Set-Alias sudo Start-ElevatedUACProcess
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment