2018-01-03 14:43:27 -05:00

89 lines
2.3 KiB
Perl

#-----------------------------------------------------------
# schedagent
# Get contents of SchedulingAgent key from Software hive
#
# copyright 2010 Quantum Analytics Research, LLC
#-----------------------------------------------------------
package schedagent;
use strict;
my %config = (hive => "Software",
osmask => 22,
hasShortDescr => 1,
hasDescr => 0,
hasRefs => 1,
version => 20100817);
sub getConfig{return %config}
sub getShortDescr {
return "Get SchedulingAgent key contents";
}
sub getDescr{}
sub getRefs {}
sub getHive {return $config{hive};}
sub getVersion {return $config{version};}
my $VERSION = getVersion();
sub pluginmain {
my $class = shift;
my $hive = shift;
::logMsg("Launching schedagent v.".$VERSION);
::rptMsg("schedagent v.".$VERSION); # banner
::rptMsg("(".getHive().") ".getShortDescr()."\n"); # banner
my $reg = Parse::Win32Registry->new($hive);
my $root_key = $reg->get_root_key;
my $key_path = "Microsoft\\SchedulingAgent";
my $key;
if ($key = $root_key->get_subkey($key_path)) {
::rptMsg($key_path);
::rptMsg("LastWrite Time ".gmtime($key->get_timestamp())." (UTC)");
::rptMsg("");
my ($oldname,$logpath,$folder,$lastrun,$size);
eval {
$oldname = $key->get_value("OldName")->get_data();
::rptMsg("OldName = ".$oldname);
};
eval {
$logpath = $key->get_value("LogPath")->get_data();
::rptMsg("LogPath = ".$logpath);
};
eval {
$size = $key->get_value("MaxLogSizeKB")->get_data();
::rptMsg("MaxLogSizeKB = ".$size);
};
eval {
$folder = $key->get_value("TasksFolder")->get_data();
::rptMsg("TasksFolder = ".$folder);
};
#
eval {
$lastrun = $key->get_value("LastTaskRun")->get_data();
::rptMsg("LastTaskRun = ".parseSystemTime($lastrun));
::rptMsg("");
::rptMsg("Note: LastTaskRun time is written in local system time, not GMT");
};
}
else {
::rptMsg($key_path." not found.");
}
}
sub parseSystemTime {
my ($yr,$mon,$dow,$day,$hr,$min,$sec,$mil) = unpack("v8",$_[0]);
$mon = "0".$mon unless ($mon =~ /^\d\d$/);
$day = "0".$day unless ($day =~ /^\d\d$/);
$hr = "0".$hr unless ($hr =~ /^\d\d$/);
$min = "0".$min unless ($min =~ /^\d\d$/);
$sec = "0".$sec unless ($sec =~ /^\d\d$/);
return "$yr-$mon-$day $hr:$min:$sec";
}
1;