Skip to content

Instantly share code, notes, and snippets.

@CRUZEAAKASH
CRUZEAAKASH / VB Script Commands
Last active September 23, 2019 11:14
VB Script Commands
'''''''''''''''''''''''''''''''''''''''''''''
'''''''1. To take user input
''''''''''''''''''''''''''''''''''''''''''''
name = inputbox("Enter your name Please:")
By this command a message box will pop up to enter the name
2. To print the output on Console - use Echo
WScript.Echo "name=" + name