253 |
rodolico |
1 |
#!/usr/bin/env perl
|
|
|
2 |
use warnings;
|
|
|
3 |
use strict;
|
|
|
4 |
|
|
|
5 |
# Description: Windows Basic System Information
|
|
|
6 |
|
|
|
7 |
our $VERSION = '0.1.0';
|
|
|
8 |
|
|
|
9 |
# This is a simple script to gather some basic Windows system information
|
|
|
10 |
# all we get is the operating system name (small, code name) and the
|
|
|
11 |
# display name (ie, Windows Server 2019
|
254 |
rodolico |
12 |
# uses Win32 (cpan install Win32)
|
253 |
rodolico |
13 |
|
|
|
14 |
|
|
|
15 |
# find our location and use it for searching for libraries
|
|
|
16 |
BEGIN {
|
|
|
17 |
use FindBin;
|
|
|
18 |
use File::Spec;
|
|
|
19 |
use lib File::Spec->catdir($FindBin::Bin);
|
|
|
20 |
eval( 'use library;' );
|
|
|
21 |
die "Could not find library.pm in the code directory\n" if $@;
|
|
|
22 |
eval( 'use Data::Dumper;' );
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
# check for valid OS.
|
|
|
26 |
exit 1 unless &checkOS( { 'mswin32' => undef } );
|
|
|
27 |
|
|
|
28 |
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
|
|
|
29 |
# script returns a 2
|
|
|
30 |
#foreach my $command ( 'systeminfo' ) {
|
|
|
31 |
# exit 2 unless $commands{$command} = &validCommandOnSystem( $command );
|
|
|
32 |
#}
|
|
|
33 |
# category we will use for all values found
|
|
|
34 |
# see sysinfo for a list of valid categories
|
|
|
35 |
my $CATEGORY = 'operatingsystem';
|
|
|
36 |
|
|
|
37 |
use Win32;
|
|
|
38 |
|
|
|
39 |
# in scalar, will simply return the short name. use 'scalar' to force that.
|
|
|
40 |
printf( "%s\t%s\t%s\n", $CATEGORY, 'distribution', scalar Win32::GetOSName() );
|
|
|
41 |
printf( "%s\t%s\t%s\n", $CATEGORY, 'description', Win32::GetOSDisplayName() );
|
|
|
42 |
|
|
|
43 |
exit 0;
|