A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.
Here's a brief example of doing that:
Add-Type -AssemblyName Microsoft.VisualBasic
$title = 'Account'
$msg = 'Enter the user account name:'
$text = [Microsoft.VisualBasic.Interaction]::InputBox($msg, $title)
If ($text){
Get-LocalUser $text
}
Else {
"Sorry" # either no input from user or the "Cancel" button was used
}