Finding a user on the Windows 2000 network.

  • Thread starter Thread starter Allison
  • Start date Start date
A

Allison

Is there a free utility that will allow me to find where or what computer a
user is logged into?
 
Hi Allison,

There has no exist utility which can do this.

Here is a workaround. You can telnet the client and run the whoami if the
client is the Windows 2000/XP.

Or, you can use the remote registry to remotely open the client computer's
registry. Check the current user information in the registry.

Thanks for using Microsoft News Group!

Sincerely,

Steven Liu

Microsoft Online Partner Support

MCSE 2000

Get Secure! ¨C www.microsoft.com/security

This posting is provided ¡°as is¡± with no warranties and confers no rights.
--------------------
| From: "Allison" <[email protected]>
| Subject: Finding a user on the Windows 2000 network.
| Date: Wed, 6 Aug 2003 11:36:45 -0500
| Lines: 4
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <[email protected]>
| Newsgroups: microsoft.public.win2000.active_directory
| NNTP-Posting-Host: 216.166.25.12
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftngp13.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.win2000.active_directory:42850
| X-Tomcat-NG: microsoft.public.win2000.active_directory
|
| Is there a free utility that will allow me to find where or what computer
a
| user is logged into?
|
|
|
 
Hi Allison,

You also can run the msinfo32 and click the View > Remote Computer to
access the remote computer and get the user information in the general
information page.

Thanks for using Microsoft News Group!

Sincerely,

Steven Liu

Microsoft Online Partner Support

MCSE 2000

Get Secure! ¨C www.microsoft.com/security

This posting is provided ¡°as is¡± with no warranties and confers no rights.
--------------------
| From: "Allison" <[email protected]>
| Subject: Finding a user on the Windows 2000 network.
| Date: Wed, 6 Aug 2003 11:36:45 -0500
| Lines: 4
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <[email protected]>
| Newsgroups: microsoft.public.win2000.active_directory
| NNTP-Posting-Host: 216.166.25.12
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftngp13.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.win2000.active_directory:42850
| X-Tomcat-NG: microsoft.public.win2000.active_directory
|
| Is there a free utility that will allow me to find where or what computer
a
| user is logged into?
|
|
|
 
The reason I was asking is because we have a lot of users that we need to
remotely support, and a lot of times they don't know how to find or even
know their computer name in order for us to connect to them. We can look it
up but it is kind of a slow process. I didn't know if there was a way to do
some type of query against the Domain Controller or any other server in
order to find the computer the user is currently logged into.

Thanks
 
The reason I was asking is because we have a lot of users that we need to
remotely support, and a lot of times they don't know how to find or even
know their computer name in order for us to connect to them. We can look it
up but it is kind of a slow process. I didn't know if there was a way to do
some type of query against the Domain Controller or any other server in
order to find the computer the user is currently logged into.

You don't need a tool.
Run something like

echo %computername%>\\server\share\%username%.txt

during logon and take a look into the user file.

To avoid such issues in the future I would recommend to place an icon
on the All Users Desktop which will popup essential user information
like Computername, IP-Configuration etc. based on WSH (for example).

Ciao, Walter
 
Allison said:
Is there a free utility that will allow me to find where or what computer a
user is logged into?

The Win32 API allows this. Another easy way to do this is to:

-Do a "net send username sample message" to connect to the user's
machine
-Run "nbtstat -c" to check your netbios cache for the IP of the
machine you just conneced to
-Use "nbtstat -A [ip address]" to get the netbios name of the machine

Good luck.
 
Back
Top