USer Logon Details

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
Is there any possibility to know on whcih workstation in a domain a user is
logged on.

Any third party tools or scripts

Regards
Rajnish
 
Rajnish said:
Hi
Is there any possibility to know on whcih workstation in a domain a user
is
logged on.

Any third party tools or scripts

If you are in a single subnet or use WINS Server, and
you run the Messenger service (which many people are
disabling today) then you can query for the user or
inspect the WINS server to find their IP address.

You can use Account Logon Auditing to record each
users logon (recorded at the DC which authenticates).

You can write a batch Logon (and even Logoff to reverse
it) script that appends the users Name and Workstation
name (and/or IP) into some known server file....

Something like:

@echo %date% %time% %userdomain%\%username% %computer%
(Above all on one line)
 
Back
Top