http://www.perlmonks.org?node_id=1040255


in reply to Re^2: reinitiating a exe program
in thread reinitiating a exe program

It might be worth ignoring all of the following and instead concentrating on marto's post on using Win32::GuiTest !

I've used Win32::GuiTest and I know it can do the sort of things you want. But the following might be of interest so I've posted it.

================================================================

I'm afraid I have not played with IPC, also Windows does not implement some functions.

If you run your script from the command line, do you still need to press (Tab+Enter) and then (Ctrl+R)?

Before you try anything complicated you might want to try piping stuff in to and out of the script on the command line to see what you can achieve with dos's < > and |.
eg can you pipe the equivalent of (Tab+Enter) and then (Ctrl+R) into the script somehow?

If it turns out that you need to send (Tab+Enter) and then (Ctrl+R) using Win32::GuiTest then it still might be worth monitoring the output of the script to see what it's done, and when to send the keys. (But Win32::GuiTest can do useful related stuff)

These might be useful:
After that it gets very complicated, and all I can really offer is a bunch of things to read. And as I said some of this stuff is not implemented under Windows.