Hello guys copy and paste this code in the notepad then save as lol.VBS

CODE
Option Explicit
Dim strDate

strDate = Date()

If Right(strDate,1) > 7 Then
   WScript.Echo "Happy New Year!"
Else
   WScript.Echo "Happy Holidays!"
End If

WScript.Quit

Reply