|
Question : Get machine name using UserID
|
|
Greetings,
I have the user IDs for a group of 20 people. I need to find out their machine names. I can't find any way to do this... Thoughts?
Windows2000/AD environment.
Thanks! Jason
|
|
Answer : Get machine name using UserID
|
|
You might want to be a little more specific. Users are not assigned to machines in Windows. YOU might assign them, but windows doesn't.
You can create or modify a logon script, something like this:
Echo %username% - %computername% >> \\server\share\path\to\user2computerLogfile.txt
|
|
|