• Downloading & Installing
• Running
• Examples
Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5
File System
• fileExists
• fileRead
• fileWrite
• folderExists
• unzip
• zip
Networking
• curlExecute
• nsapiExecute
Operating System
• shellExecute
Text Encoding
• base64Decode
• base64Encode
Utilities
• abort / halt / quit
• info
• infoRefresh
• sleep
• stringIndent
• uuidGenerate
Updates ("refreshes") the "info" object.
This is helpful if you want to utilize the info object's date, time, and environment-based values (such as available memory, disk space, etc).
writeln( "The time is: " + info.date.longTime ); writeln; // Pause for 5 seconds... sleep( 1000 * 5 ); infoRefresh(); writeln( "The time is now: " + info.date.longTime ); writeln;
Here's an example of the output.
The time is: 10:40:10 AM The time is now: 10:40:15 AM
© Copyright 2025 Tim Dietrich. | Legal Info