5 lines
100 B
PowerShell
5 lines
100 B
PowerShell
Invoke-Command -ComputerName . -AsJob -Scriptblock {
|
|
Start-Sleep -s 5
|
|
Start-Process notepad.exe
|
|
}
|