Skip to content

Instantly share code, notes, and snippets.

@cd01
Created July 6, 2013 14:35
Show Gist options
  • Save cd01/5940090 to your computer and use it in GitHub Desktop.
Save cd01/5940090 to your computer and use it in GitHub Desktop.
sudo command in Powershell
function sudo {
$args[1] = (Convert-Path $args[1])
Start-Process $args[0] -Verb "runas" -ArgumentList $args[1..($args.Length - 1)]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment