1 2 3 4 5 6 7 8 9 10 |
Start-Job {powershell -command ' using assembly System.Windows.Forms using namespace System.Windows.Forms $Form = New-Object System.Windows.Forms.Form $Form.Text=\"Formulario\" $Form.Size=New-Object System.Drawing.Size(500,500) $Form.StartPosition=\"CenterScreen\" $Form.ShowDialog()'} |