Help for this page
#!D:/Perl/bin/perl.exe use Win32::AuthenticateUser; @result = AuthenticateUser("domain", "smith", "abc123"); print @result;
#!D:/Perl/bin/perl.exe -w use strict; #always. ... my $result = Win32::AuthenticateUser::AuthenticateUser( "domain", "smith", "abc123"); print $result ? 'Authentic User' : 'Unknown User or Password';