Good morning
Is there a way I can have mandatory parameters filled up by user input in a message box?
Param(
[Parameter(Mandatory=$True)][string]$parameter1,
[Parameter(Mandatory=$True)][string]$parameter2,
[Parameter(Mandatory=$True)][string]$parameter3
)
For instance, I want a pop-up box with a text field which the user must fill-up the value required by the mandatory parameter
$confirm = [System.Windows.MessageBox]::Show('Please confirm you want to start)
thanks a million to anyone who answers.