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
 
Back
Top