in reply to Windows System Command

Here's what i usually do in cases like this (except i'm using ActivePerl). I just have a small, "compiled" Perl script that i call instead of the real binary.

This is from memory, but something like this should do the trick:

#!/usr/bn/perl use strict; use warnings; open(my $ofh, '>', 'C:/some/path/filename.txt') or die($!); print $ofh join("\n", @ARGV); close $ofh;

"You have reached the Monastery. All our helpdesk monks are busy at the moment. Please press "1" to instantly donate 10 currency units for a good cause or press "2" to hang up. Or you can dial "12" to get connected directly to second level support."