pankaj_it09 has asked for the wisdom of the Perl Monks concerning the following question:

How to list Windows scheduled tasks ?

We see them when we follow the below way :
All Programs->Accessories->System Tools->Scheduled Tasks

Replies are listed 'Best First'.
Re: List Windows scheduled tasks
by tokpela (Chaplain) on Aug 06, 2009 at 10:55 UTC

    Use the Win32::TaskScheduler module.

    use strict; use warnings; use Win32::TaskScheduler; my $scheduler = Win32::TaskScheduler->New(); my @jobs = $scheduler->Enum(); $scheduler->End(); foreach (@jobs) { print "JOB: [$_]\n"; }
Re: List Windows scheduled tasks
by marto (Cardinal) on Aug 06, 2009 at 11:02 UTC
      I am not able to install Win32::TaskScheduler.
        Why not?