4 lines
125 B
PowerShell
4 lines
125 B
PowerShell
function Start-RDP ($computername)
|
|
{
|
|
Start-Process "$env:windir\system32\mstsc.exe" -ArgumentList "/v:$computername"
|
|
} |