Genie supports the STRPCCMD command to launch PC applications. However, there is one restriction - the PC command parameter must refer to a valid PC program, not an internal MS Windows command. In cases where utilizing an internal command is required, the cmd.exe executable can be used.
For example, the following will not work because START is an internal command:
START excel.exe myfile
Instead, we must use the following:
cmd /c “START excel.exe myfile”
Note: Genie's STRPCCMD feature utilizes the Profound UI PC Integration API and Applet internally. For more information, refer to the PC Integration API section of the documentation.