3 lines
197 B
PowerShell
3 lines
197 B
PowerShell
[void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
|
|
$name = [Microsoft.VisualBasic.Interaction]::InputBox("Enter your name", "Name", "Lastname")
|
|
"Your name is $name" |