mirror of
https://github.com/Xevion/powershell.git
synced 2025-12-06 07:15:48 -06:00
5 lines
233 B
PowerShell
5 lines
233 B
PowerShell
Function Start-WindowsTerminalAsAdmin {
|
|
Start-Process wt -Verb runas -ArgumentList "-d ."
|
|
}
|
|
|
|
Set-Alias -Name wta -Value Start-WindowsTerminalAsAdmin -Description "Starts Windows Terminal as Administrator in the current directory" |