| A | ||
| Abs( number ) | Absolute (positive) value of number. | |
| .AppActivate | Activate running command. | |
| .Application | BrowseForFolder/Open. | |
| Array( el1,el2,el3 ) | Add values to an Array variable. | |
| Arguments | Command line arguments. | |
| Asc( String ) | Return ASCII code for string. | |
| AscB( String ) | Return the byte code for a character. | |
| AscW( String ) | Return Unicode code for string. | |
| B | ||
| Beep | see StdOut.Write | |
| .BrowseForFolder | Prompt the user to select a folder. | |
| C | ||
| Call subroutine (arguments) | or subroutine arguments | |
| CBool( expression ) | Convert expression to Boolean (True/False) • | |
| CByte( expression ) | Convert expression to Byte (0-255) • | |
| CCur( expression ) | Convert expression to Currency (numeric) • | |
| CDate( expression ) | Convert expression to Date • | |
| CDbl( expression ) | Convert expression to Double (up to 1.79x10308) • | |
| Chr( ChrCode ) | Return the string character for ChrCode (ASCII code) | |
| ChrB( ChrCode ) | Return the string character for ChrCode (Byte code) | |
| ChrW( ChrCode ) | Return the string character for ChrCode (Unicode/DBCS) | |
| CInt( expression ) | Convert expression to Integer • | |
| CLng( expression ) | Convert expression to long • | |
| CSng( expression ) | Convert expression to single • | |
| CStr( expression ) | Convert expression to a string • | |
| .CreateObject | Create an automation object / run an external command. | |
| .CreateShortcut | Create Shortcut. | |
| cscript | Run a VBScript .vbs file. | |
| .CurrentDirectory | Retrieve or change the current directory. | |
| D | ||
| Date() | The current system date. | |
| DateAdd | Add a time interval to a Date. | |
| DateDiff | Return the time interval between two dates. | |
| DatePart | Return part of a given date. | |
| DateSerial | Return a Date from a numeric Year, Month and Day. | |
| DateValue | Return a Date from a string expression. | |
| Day( date ) | Return the day component of date (1-31) | |
| Dim | Declare a new variable or array variable. | |
| Do..Loop | Repeat a block of statements. | |
| Drives | Drive Map .MapNetworkDrive - .Enum - .Remove | |
| E | ||
| .Echo | Echo text to screen, also StdOut.Write /.Popup | |
| End | End a procedure or code block. | |
| Environment Variables | Expand - .Delete/Remove. | |
| Escape( String ) | Return only ASCII characters from a Unicode string. | |
| Eval(expr) | Evaluate an expression. | |
| .Exec | Run a command. | |
| Execute | Execute one or more statements. | |
| Exp(n) | Return e (base of natural logs) raised to a power n. | |
| Exit | Exit a block of code immediately. | |
| F | ||
| FileSystemObject | Work with Drives, Folders and Files. | |
| Filter | Produce an array by filtering an existing array. | |