Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 330591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:41:44+00:00 2026-05-12T09:41:44+00:00

I have a Perl script that launches another Perl script in a new console

  • 0

I have a Perl script that launches another Perl script in a new console through Win32::Process as follows:

Win32::Process::Create($ProcessObj,
                      "C:\\Perl\\bin\\perl.exe",
                      "$path_to_other_perl_script",
                      0,
                      NEW_CONSOLE,
                      ".");

$ProcessObj->Suspend();
$ProcessObj->Resume();
$ProcessObj->Wait(0);

The problem is, there is no stdout in the new console created. If I don’t use the new console option, the script runs silently in the background.

If I use cmd.exe to launch the Perl script, I can see the output fine but now I cannot control the child Perl script through Win32::Process.

Does anyone have a solution that works?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T09:41:44+00:00Added an answer on May 12, 2026 at 9:41 am

    Update: Based on your comments, I get the feeling that your programs are not examples of best practices on Linux or Windows. However, I am sure, when reading the documentation for Win32::Process, you noticed that you can call the Kill method on the process to terminate it. So, I changed the example below to do that.

    Your chances of getting useful help increase exponentially if you provide real code. Here are the arguments to Win32::Process::Create:

    $iflags: flag: inherit calling processes handles or not

    Now, I am not sure if you are trying to capture the STDOUT of the second process or if you are trying to have its STDOUT output show up in the same console as the parent.

    If the latter, then the following scripts illustrate one way of doing that:

    parent.pl

    #!/usr/bin/perl
    
    use strict;
    use warnings;
    
    use Win32;
    use Win32::Process;
    
    $| = 1;
    
    my $p;
    
    print "Starting child process ... \n";
    
    Win32::Process::Create(
        $p,
        'c:/opt/perl/bin/perl.exe',
        'perl hello.pl',
        1,
        NORMAL_PRIORITY_CLASS,
        '.',
    ) or die Win32::FormatMessage( Win32::GetLastError() );
    
    print "Waiting three seconds before killing 'hello.pl'\n";
    
    for (1 .. 3) {
        print;
        sleep 1;
    }
    $p->Kill(0)
        or die "Cannot kill '$p'";
    

    hello.pl

    #!/usr/bin/perl
    
    $| = 1;
    
    print "Hello World\n";
    print "Sleeping 1000 seconds\n";
    
    for (1 .. 1000) {
        sleep 1;
        print '.';
    }
    

    Output:

    Starting child process ...
    Waiting three seconds before killing 'hello.pl'
    1Hello World
    Sleeping 1000 seconds
    2.3.
    

    Now, I am still not sure why you are using Win32::Process. Unless there is a specific reason to tie your script to Win32, I would recommend using standard Perl facilities. For example, read perldoc -f open and perldoc perlipc (see esp. Using open for IPC).

    Explain your question better to get answers that address your particular situation rather than generalities.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am new to Perl, by the way. I have a Perl script that
I have a perl script that processes millions of lines of performance data, so
I have a perl script that receives 3 arugments. First argument is very long
I have a simple perl script that uses DBD::Oracle to run a query and
Have some Perl code which is using the DBI module - (the code is
I have a problem with a function that doesn't work as expected since I
I'm new to PHP and I seem to be doing something wrong. On one
I'm a Perl newbie. I'm trying to learn based on a previous person's work
I have just been introduced to the Django framework and I would like to
I recently set up a symbol server and added SrcSrv support to our build

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.