Skip to content

Instantly share code, notes, and snippets.

@tmr232
Created January 25, 2016 17:48
Show Gist options
  • Select an option

  • Save tmr232/8724dc3eaf83bef4a59b to your computer and use it in GitHub Desktop.

Select an option

Save tmr232/8724dc3eaf83bef4a59b to your computer and use it in GitHub Desktop.
Sudo for Windows - Run Elevated applications
if (!$args)
{
Write-Host "Usage: sudo <executable> [<arguments...>]"
return
}
$arguments = $args[1..$args.Length]
if ($arguments)
{
Start-Process -FilePath $args[0] -ArgumentList $arguments -Verb runAs
}
else
{
Start-Process -FilePath $args[0] -Verb runAs
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment