From 099ca62c3e8749f57c45eb09c2ec90d1fad957e7 Mon Sep 17 00:00:00 2001 From: Tanmay <10880504+tanmaymohan@users.noreply.github.com> Date: Mon, 2 Oct 2017 23:04:27 +0530 Subject: [PATCH] Hello World My first program in VBscript MessageBox is used to display some message to the user. Also popularly used in pranks where you could put this in the startup folder of a Windows machine which would display a prank message whenever OS is launched. --- hello.vbs | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello.vbs diff --git a/hello.vbs b/hello.vbs new file mode 100644 index 0000000..9b85e54 --- /dev/null +++ b/hello.vbs @@ -0,0 +1 @@ +x =MsgBox("Hello world, Welcome to Hacktoberfest 2017",vbOKOnly,vbInformation) \ No newline at end of file