Suite.js Documentation

Introduction


Getting Started

• Downloading & Installing
• Running
Examples


Technical Support


Functions

Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5

File System
fileExists
fileRead
fileWrite
folderExists
unzip
zip

Input / Output
beep
prompt
write
writeln

Networking
curlExecute
• nsapiExecute

Operating System
shellExecute

Text Encoding
base64Decode
base64Encode


Advanced Topics

shellExecute

Use the shellExecute to execute operating system shell commands. For shell commands that return output, those results are returned to your Suite.js script.

shellExecute Example

// Get the path to the user's "home" directory.
var cwd = info.specialFolders.userHome;

// Get the contents of the directory.
var contents = shellExecute( "ls " + cwd );

// Display the directory's contents.
writeln( "Contents of " + cwd + " directory:")
writeln( contents );
writeln;

© Copyright 2025 Tim Dietrich. | Legal Info