Skip to content

Instantly share code, notes, and snippets.

@tackme31
Created October 27, 2020 09:25
Show Gist options
  • Select an option

  • Save tackme31/78f6a73d4cdcf3be8961aa19c0598b4f to your computer and use it in GitHub Desktop.

Select an option

Save tackme31/78f6a73d4cdcf3be8961aa19c0598b4f to your computer and use it in GitHub Desktop.
A sudo-like command for PowerShell.
function Invoke-AsAdmin() {
if($args.count -eq 0){
Start-Process -Verb runas powershell
}
else {
Start-Process -Verb runas -ArgumentList @('-command', "cd $(Get-Location); $($args -join ' ')") powershell
}
}
Set-Alias -Name sudo -Value Invoke-AsAdmin -Option None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment