InterSystems FAQ rubric
The $ZF(-100) command is used in the following format.
$ZF(-100, flags, command name, command arguments)The "/shell" flag is required when running OS commands.
For example, use mkdir like this:
// mkdir C:\temp\newdir
Write$ZF(-100, "/shell", "mkdir", "C:\temp\newdir")
If a command has multiple arguments, enclose them in double quotes and separate them with commas, as in the example below.
// move C:\temp\a.txt C:\temp\a2.txt
Write$ZF(-100, "/shell", "move", "C:\temp\a.txt", "C:\ temp\a2.txt") // net use Z: \\filesrv\public /user:user password
Write$ZF(-100, "/shel

.png)
.png)
.png)