user activity

  • Thread starter Thread starter Mike Richter
  • Start date Start date
M

Mike Richter

Is there a way to figure out where a user has logged on...
i have 2000 users and 1700 coputers, and i'd like to kwno where has John Doe
logged in.. Give me a report or a list of all the computer names/IP address
that John has logged on....

is there a software that i can buy or download to do this?
 
Is there a way to figure out where a user has logged on...
i have 2000 users and 1700 coputers, and i'd like to kwno where has John Doe
logged in.. Give me a report or a list of all the computer names/IP address
that John has logged on....

is there a software that i can buy or download to do this?

create a share on each LOGONSERVER. For this example, lets call it where$

In your logon script:


for /f "Tokens=2 Delims=:" %%a in ('ipconfig^|findstr /i /c:"IP Address"') do (
set work=%%a
)
set ip=%work:~1%
if not exist
"\\%LOGONSERVER%\Where$\%UserName%_%computerName%_%IP%.%LOGONSERVER%"
@echo/>"\\%LOGONSERVER%\Where$\%UserName%_%computerName%_%IP%.%LOGONSERVER%"

The above is if statement is 1 line

Periodically copy the files to a common folder and parse the file names with a
script.




Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

user activity 3
IPad Multiple Users 0
Amazon Login Location Different 4
Outlook Tracking category changes 1
Last Modified By in a cell by user 3
Active problem 3
Best tool to recover PST files in 2026 0
Windows Server What can Active Directory Do? 6

Back
Top