8 lines
248 B
Batchfile
8 lines
248 B
Batchfile
|
|
@echo off
|
||
|
|
:: Script: mostrar_hola.cmd
|
||
|
|
:: Objetivo: Mostrar el mensaje "HOLA" en pantalla.
|
||
|
|
|
||
|
|
:: Ejecuta un comando de PowerShell que muestra una ventana de mensaje de sistema.
|
||
|
|
powershell -Command "[System.Windows.MessageBox]::Show('HOLA')"
|
||
|
|
|
||
|
|
goto :eof
|