8
0
2024-01-24 16:42:38 +01:00

4 lines
125 B
PowerShell

function Start-RDP ($computername)
{
Start-Process "$env:windir\system32\mstsc.exe" -ArgumentList "/v:$computername"
}