Video Screencast Help
Search Video Help Close Back
to help
Not able to make it to Vision this year? Get a sampling in the Best of Vision on Demand group.

tracking log ons?

Created: 05 May 2010 | 2 comments
Gordon Smith 2's picture
0 0 Votes
Login to vote

Does D.S. have  a way to track how many individual  logins there are with in a given time period in? Say a specific hour time frame? I'm in an educational environemnt, I'd like to track how many people logged in, and have a count of which labs had how many logins, during a given period.  Im using DS 6.9 SP3. Thanks

Comments

ianatkin's picture
05
May
2010
0 Votes 0
Login to vote

No, I'm afraid this can't be

No, I'm afraid this can't be done. Deployment Server does not store history -just the current status. It would not be simple to customise Deployment Server to give this functionality either.

Notification Server can track logons, or you could setup login scripts to write to a fileshare to track this?

Kind Regards,
Ian./

Ian Atkin, Senior Developer for the ICT Support Team, Oxford University, UK

Connect Etiquette: "Mark as Solution" those posts which resolve your problem, and give a thumbs up to useful comments, articles and downloads<

Rmaes's picture
29
Jul
2010
0 Votes 0
Login to vote

This isn't high tech by any means but (When used in a login script) it creates text files that show who loged in where and what time. Hope it helps.

echo %username%,%user%,%computername%,%userdomain%,%time%,%date%, >> "X:\!Databases\login\data\%username%,%user%.txt"
FOR /F "tokens=1 delims=," %%G IN ('getmac.exe /FO CSV /NH') DO echo %%G, >> "X:\!Databases\Logins\data\%username%,%user%.txt"
FOR /F "tokens=2 skip=7 delims=:" %%G IN ('ipconfig') DO echo %%G, >> "X:\!Databases\Logins\data\%username%,%user%.txt"