
Originally Posted by
PhilChambers
This sounds like a really good idea. Is there any chance that you would send me the script?
TonyRidal, I like the idea of getting the kids to report the damage too. It may stop the complaints from the teachers at the extra work they need to do. Might also make them realise what they are doing.
You can have mine if you like - it's a bit clunky but works for us!
The login scripts call a batch file containing:
(\\argus\whoswhere is just a normal server share, everyone has full control, so you might want to hide the share if you use this)
Code:
call \\argus\whoswhere\getinfo.bat >> \\argus\whoswhere2\loginlog.txt
which calls a second batch file, getinfo.bat and appends the output to loginlog.txt:
Code:
@echo off
echo %computername%,%date%,%time%,%username%
I then open loginlog.txt with excel using "get external data" and can filter it by username, machine etc.
Simples I know, but it works!