Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Win32::AdminMisc::LogonAsUser does not seem to work.

by esskar (Deacon)
on May 20, 2010 at 09:45 UTC ( [id://840884]=note: print w/replies, xml ) Need Help??


in reply to Win32::AdminMisc::LogonAsUser does not seem to work.

well, this node is rather old but we hat a smillar problem at perl-community.de here is the code i came up with.
#!/usr/bin/perl use strict; use warnings; package Win32::LSA; use base qw/Win32::API::Interface/; __PACKAGE__->generate( "Advapi32.dll", "LogonUserA", "PPPIIP", "I", "l +ogon_user" ); __PACKAGE__->generate( "Advapi32.dll", "ImpersonateLoggedOnUser", "I", + "I", "impersonate_as" ); __PACKAGE__->generate( "Advapi32.dll", "RevertToSelf", "", "I", "rever +t" ); 1; use Win32 (); my $token = "\0" x 4; my $lsa = Win32::LSA->new; my $rc = $lsa->logon_user( $ENV{USER}, $ENV{DOMAIN}, $ENV{PASS}, 5, 0, + $token); die Win32::FormatMessage( Win32::GetLastError ) unless $rc; print "Logon success\n"; $rc = $lsa->impersonate_as( unpack 'L', $token ); die Win32::FormatMessage( Win32::GetLastError ) unless $rc; print "Impersonate success.\n"; # Place your code here $rc = $lsa->revert; die Win32::FormatMessage( Win32::GetLastError ) unless $rc;
HTH

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://840884]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-16 14:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found