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.


