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

Ask A Question

Stats

  • Questions 229k
  • Answers 229k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Usually when you chain constructors it's the other way around:… May 13, 2026 at 1:49 am
  • Editorial Team
    Editorial Team added an answer Use PhoneStateListener. It has an onCallStateChanged handler; one of the… May 13, 2026 at 1:49 am
  • Editorial Team
    Editorial Team added an answer Can't you install from Synaptic Package Manager May 13, 2026 at 1:49 am

Related Questions

I have a Perl script that I'm attempting to set up using Perl Threads
I have a Perl script that sets up variables near the top for directories
I have a Perl script that I'd like to run on Windows, using either
I have a Perl script that pops up a message box when its work

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.