in reply to How to hide/inhibit the console window when launching a Perl script on Windows?

Use Win32::GUI and the following lines:
use Win32::GUI; my $hw = Win32::GUI::GetPerlWindow(); Win32::GUI::Hide($hw);
  • Comment on Re: How to hide/inhibit the console window when launching a Perl script on Windows?
  • Download Code