User Tools

Site Tools


script:powershell:messagebox

Gestion des messages dans Powershell

MessageBox

$UserResponse= [System.Windows.Forms.MessageBox]::Show("We are proceeding with next step." , "Status" , 4)
if ($UserResponse -eq "YES" ) 
{
#Yes activity
} 
else 
{ 
#No activity
} 

script/powershell/messagebox.txt · Last modified: 2020/08/10 23:07 (external edit)