Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

If I can pull up the name of a workstation on my NT server is there any Perl module that I could use to get user name of person using that workstation. If I have the workstation name then I would like to run a Perl script to find the user name. Is this possible???

Replies are listed 'Best First'.
(wil) Re: Finding user with workstation name.
by wil (Priest) on Jun 12, 2002 at 11:19 UTC
    Win32::NetAdmin is the module used to manage network groups and users on a Win32 network.

    For your paticular question, I'd look into the UserGetAttributes() function of this module.

    Hope this helps.

    - wil