Solution
A <Ctrl-C> command cannot be sent directly sent from a TestStand step.
Possible Workarounds:
1. Use Window's
TerminateProcess Function. On a low level this will not be exactly the same as closing the command prompt with <Ctrl-C> but it should maintain similar sequence functionality.
2. First, create a
Call Executable Step. Second, use File Pathname
TASKKILL and the arguments of
"/F /IM cmd.exe /T" to close all cmd Windows. This is described in this
forum post.