cheetsheet VBscript
Cheatsheat for VBscripts
| Comment | # This is a comment in a VBscript file |
Wscript.Echo "Hello World!" |
|
| Arguments |
call the script like c:\cscript yourscript.vbs arg1 arg2 arg3Dim ArgObj |
| if | IF (condition) Then |
| FOR | for i = 1 to 5 |
| Exit | WScript.Quit(0) |