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


in reply to Win32::Process vs Win32::Job vs ????

Under the hood Win32::Process calls CreateProcess in Kernel32.dll to get the job done. CreateProcess does allow initial Window state to be specified by setting various members in the STARTUPINFO structure passed to it. You can call CreateProcess using Win32::API, although there is a chunk of work involved in setting it all up.

True laziness is hard work