in reply to Re^4: execute vbscript code inline in Perl script
in thread execute vbscript code inline in Perl script

++poj: by the time I had my reply typed, you'd already posted. :-( My only additional recommendation would be to chomp($final), or chomp(my $final = qx("cscript out2.vbs //Nologo"));, so that slick.user doesn't have a surprise newline in $final.

Replies are listed 'Best First'.
Re^6: execute vbscript code inline in Perl script
by slick.user (Acolyte) on Sep 08, 2017 at 17:42 UTC
    That's look good! Thank you!