Páginas

Tipo de Mensajes de alerta Batch

ESTO ES UNA VISUALIZACION DE TIPOS DE MENSAJES DE ALERTA EN BATCH

CODIGO ESTANDAR:

@echo off
:: Define el mensaje y el título
set "message=Este es un mensaje de alerta."
set "title=Mensaje de Alerta"

:: Llama a PowerShell para mostrar el mensaje
powershell -Command "Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.MessageBox]::Show('COMO ESTAN', 'HOLA', [System.Windows.Forms.MessageBoxButtons]::OK, [System.Windows.Forms.MessageBoxIcon]::Information)"

BOTONES:

OK: 

 [System.Windows.Forms.MessageBoxButtons]::OK

OK y Cancelar: 

 [System.Windows.Forms.MessageBoxButtons]::OKCancel

Sí y No: 

 [System.Windows.Forms.MessageBoxButtons]::YesNo 

 Sí, No y Cancelar:

[System.Windows.Forms.MessageBoxButtons]::YesNoCancel 

 


 Abort, Reintentar y Cancelar: 

 [System.Windows.Forms.MessageBoxButtons]::AbortRetryIgnore


ICONOS:

Información: 

[System.Windows.Forms.MessageBoxIcon]::Information 


Advertencia: 

[System.Windows.Forms.MessageBoxIcon]::Warning 


Error: 

 [System.Windows.Forms.MessageBoxIcon]::Error 


Pregunta: 

 [System.Windows.Forms.MessageBoxIcon]::Question 

Exclamación: 

 [System.Windows.Forms.MessageBoxIcon]::Exclamation