#!/usr/bin/perl #perl2exe_include "attributes.pm"; use strict; use warnings; $|=1; use Symbol qw( gensym ); use IPC::Run qw( start ); use Tie::Handle; use IPC::Run::Win32IO; my %sp; $sp{'STDIN'} = gensym(); $sp{'STDOUT'} = gensym(); $sp{'STDERR'} = gensym(); my $h = start ['./cnc.exe'], 'pipe', $sp{'STDOUT'}, '2>pipe', $sp{'STDERR'} or die "returned $?"; sleep 20; #### Inappropriate I/O control operation: Win32::Process::Create() at C:\Users\Izomiac\AppData\Local\Temp\par-4a6f7368\cache-6146a0a42031e00189ff49a355f90de7875866db\inc\lib/IPC/Run.pm line 2143. Inappropriate I/O control operation: Win32::Process::Create() at C:\Users\Izomiac\AppData\Local\Temp\par-4a6f7368\cache-6146a0a42031e00189ff49a355f90de7875866db\inc\lib/IPC/Run.pm line 2244. Inappropriate I/O control operation: Win32::Process::Create() at C:\Users\Izomiac\AppData\Local\Temp\par-4a6f7368\cache-6146a0a42031e00189ff49a355f90de7875866db\inc\lib/IPC/Run.pm line 2244.