Table of Contents

Which tools can be used for command shell execution?

LUCY comes with three tools that will access the windows command shell and enable you to execute commands:

What are the limitations?

In the community edition you might be only able to execute the following commands:

In the commercial edition, there are no limitations. Commercial editions allow any command to be executed using this syntax:

cmd.exe /c "YOUR COMMAND GOES HERE" (some commands in Windows are not executable. They are built into the command line. Example of command with executable: whoami. If you need to use a command which is a built-in command line, then you should call cmd directly. Example of requesting the directory content: “cmd /c dir”).

So, for example, standard cmd.exe commands are accessible like: * dir (list directory contents) * md (create directory) * etc