RosettaCodeData/Task/Hello-world-Graphical/Batch-File/hello-world-graphical.bat
2023-07-01 13:44:08 -04:00

9 lines
259 B
Batchfile

@echo off
::Output to message box [Does not work in Window 7 and later]
msg * "Goodbye, World!" 2>nul
::Using MSHTA.EXE Hack::
@mshta javascript:alert("Goodbye, World!");code(close());
@mshta vbscript:Execute("msgbox(""Goodbye, World!""):code close")
pause