okay, there is much shorter to write, but longer to read docs way,
using WMI (Windows Management Instrumentation), MSDN describes details,
code and results are as following (just few lines of code! i did not expected to have such
short program to do the trick...) :
use Win32::OLE 'in';
$objcoll = Win32::OLE->GetObject("WinMgmts://servername")->InstancesOf
+("Win32_ScheduledJob");
my @x = qw/
Caption Command DaysOfMonth DaysOfWeek Description ElapsedTime Insta
+llDate
InteractWithDesktop JobId JobStatus Name Notify Owner Priority RunRe
+peatedly
StartTime Status TimeSubmitted UntilTime
/;
for $adsobj (in $objcoll) {
print ++$i,".===\n",join '', map {" $_:".($adsobj->{$_}||"")."\n"}
+@x;
}
=====
1.===
Caption:
Command:calc
DaysOfMonth:16
DaysOfWeek:
Description:
ElapsedTime:
InstallDate:
InteractWithDesktop:1
JobId:2
JobStatus:Success
Name:
Notify:
Owner:
Priority:
RunRepeatedly:1
StartTime:********202000.000000+240
Status:
TimeSubmitted:
UntilTime:
2.===
Caption:
Command:calc
DaysOfMonth:262144
DaysOfWeek:
Description:
ElapsedTime:
InstallDate:
InteractWithDesktop:1
JobId:3
JobStatus:Success
Name:
Notify:
Owner:
Priority:
RunRepeatedly:1
StartTime:********202000.000000+240
Status:
TimeSubmitted:
UntilTime:
Note that GetObject("WinMgmts://servername") becomes
GetObject("WinMgmts:") if you're
working locally
Courage, the Cowardly Dog.
PS. Something fishy is going on there, or my name is Vadim Konovalov. And it's not.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|