#!/usr/local/bin/perl -w #-*-perl-*- # use strict; use Win32API::Net; use vars qw ( %UserInfo @WhoList ); use Win32::NetAdmin; my ($VERSION) = '$Revision: 1.0 $' =~ /([.\d]+)/; my $warnings = 0; # Print a usuage message on a unknown option. $SIG {__WARN__} = sub { if (substr ($_ [0], 0, 14) eq "Unknown option") {die "Usage"}; require File::Basename; $0 = File::Basename::basename ($0); $warnings = 1; warn "$0: @_"; }; $SIG {__DIE__} = sub { require File::Basename; $0 = File::Basename::basename ($0); if (substr ($_ [0], 0, 5) eq "Usage") { die < -- show the last date on which each person logged in. =head1 SYNOPSIS B [ I ] [ -h ] =head1 DESCRIPTION B displayes the last logon date for each user in the local host's user database. =head2 OPTIONS The following options are supported: =over 4 =item userid List the lastlogon information for a single user. =item -h Display syntax. =back =head1 EXAMPLE Below are exampls of B: C:\> lastlogin Guest Guest Last login: never C:\> lastlogin Administrator Last login: Thu Jun 22 09:39:28 2000 Guest Last login: never IUSR_IKIRU Last login: Mon Jun 19 08:16:13 2000 IWAM_IKIRU Last login: never sfuuser Last login: never =head1 ENVIRONMENT The working of B is not influenced by any environment variables. =head1 BUGS B isn't as nice as I would like, but Win32 isn't Unix, now is it? This I doesn't like Samba domain controllers, which is why I added the 'unknown' entry in the output. Samba causes problems, which is why an entry might return "unknown". =head1 STANDARDS It does not make sense to talk about standards in a B manual page. =head1 REVISION HISTORY lastlogin Revision 1.0 2000/06/22 12:13:22 idnopheq Initial revision =head1 AUTHOR The Perl implementation of B was written by Dexter Coffin, I. =head1 COPYRIGHT and LICENSE This program is copyright by Dexter Coffin 2000. This program is free and open software. You may use, copy, modify, distribute, and sell this program (and any modified variants) in any way you wish, provided you do not restrict others from doing the same. =head1 SEE ALSO =head1 NEXT TOPIC =cut