Update tests/mostrar_hola.cmd

This commit is contained in:
2025-11-03 16:57:57 -06:00
parent 08ac486ac4
commit 629cc11391

10
tests/mostrar_hola.cmd Normal file
View File

@@ -0,0 +1,10 @@
@echo off
:: Script: mostrar_hola.cmd
:: Objetivo: Mostrar el mensaje "HOLA" en pantalla.
:: Comando de PowerShell corregido:
:: Agrega el ensamblado PresentationFramework para hacer que [System.Windows.MessageBox] este disponible.
powershell -Command "Add-Type -AssemblyName PresentationFramework; [System.Windows.MessageBox]::Show('HOLA')"
goto :eof