Svarcy Posted March 13, 2012 Posted March 13, 2012 Hey guys, does anyone know of a piece of software that will pull the list of stations and users from AD and then give you a run down of which user is logged into which machine? Not after anything fancy just something that goes: Station Example: User Example: PC-01 Name-01 My school previously ran an RM network which had a feature like this in the management console, we now run a vanilla Win XP, Server 2008 R2 network and would like a small bit of a software we can pull up when needed for this. Cheers
glennda Posted March 13, 2012 Posted March 13, 2012 I use Webman's Login Tracker. Uses a Script to report to the DB at login and log off. Then has a nice web interface which can be viewed either per machine or per user.
FN-GM Posted March 13, 2012 Posted March 13, 2012 You might be able to do something with this - Check who is logged into a machine - Blogs - EduGeek.net
Svarcy Posted March 13, 2012 Author Posted March 13, 2012 FN-GM. Thanks for that, so simple! We have decided to go with that one for the time being, I may get one of my senior colleagues to have a look at Glenndas post as it is abit above me at the moment. Thanks for both of your input though.
penfold Posted December 11, 2012 Posted December 11, 2012 I use Webman's Login Tracker. Uses a Script to report to the DB at login and log off. Then has a nice web interface which can be viewed either per machine or per user. Sorry to drag up an old thread, but I've just set this up but I want to restrict access to the web interface to IT staff only. How do I go about setting it so only staff can view the webpage?
glennda Posted December 11, 2012 Posted December 11, 2012 Sorry to drag up an old thread, but I've just set this up but I want to restrict access to the web interface to IT staff only. How do I go about setting it so only staff can view the webpage? what are you using IIS or Apache windows or linux?
penfold Posted December 12, 2012 Posted December 12, 2012 We already had Xampp running Apache & MySQL on Windows 2008R2 so I just added it onto that.
TheScarfedOne Posted December 12, 2012 Posted December 12, 2012 The login tracker in HAP will do this...Home Access Plus+ Shameless plug for @nickbro
sted Posted December 12, 2012 Posted December 12, 2012 (edited) is this any use it adds the computer name a user last logged on to their office field in ad (obviously you need to delegate users permissions to change this attribute) Const ADS_PROPERTY_CLEAR = 1 Set objSysInfo = CreateObject("ADSystemInfo") Set objNetwork = CreateObject("WScript.Network") strCompName = LCase(objNetwork.ComputerName) strUserDN = objSysInfo.userName Set objUser = GetObject("LDAP://" & strUserDN) ' Bind to the user object in Active Directory with the LDAP provider. objUser.Put "physicalDeliveryOfficeName", (strCompName) '...add the computer name to Active Directory profile... objUser.SetInfo ' ...and save the changes. Edited December 12, 2012 by sted
glennda Posted December 12, 2012 Posted December 12, 2012 We already had Xampp running Apache & MySQL on Windows 2008R2 so I just added it onto that. Ok you can either make a basic .htaccess file which limits the access to the website via IP address - or username, then just give everyone that needs access to it static addresses. Limit certain ip to access website with .htaccess - Techie Corner 1
penfold Posted December 13, 2012 Posted December 13, 2012 (edited) I've now got this setup but am just finding one thing which is slightly annoying. The log shows that some staff are logged on for a number of days and I'm assuming this is because staff are leaving their machines logged on but because we have an automated shutdown which forces the machine to power off at night the logoff script doesn't run. If I add the logoff script to the computer shutdown would this solve the problem, or would that cause errors? Edit: This is actually showing for all users, meaning first thing in the morning you can see lots of people logged on even though it may only say 6 people logged in today. Edited December 13, 2012 by penfold
penfold Posted December 20, 2012 Posted December 20, 2012 Just to bump this thread, it looks like the reason this isn't running properly is due to some group policy issue. If I put a computer in 1 OU it works fine (as it has for students) if I put it in to another (staff OU) for some reason it doensn't pull the OU details through and when you logoff it doesn't register. I've looked at the group policies pulling through on the client and I can't see any difference. Any ideas where to start looking?
penfold Posted December 20, 2012 Posted December 20, 2012 OK, just an update in case anyone else falls to this. It turns out it was the field lenght of the OU's in the logon tracker database. It was set to 20, but the OU name where the problem was was longer. I have increased the value and now it works fine.
speckytecky Posted December 20, 2012 Posted December 20, 2012 Hi @Savrcy - good to see you getting answers that you thank for in following posts. I'm reckoning @FN-GM and @Glenda would be well happy if you happened to hit the thanks button under their answers as well if you haven't noticed it. FN-GM. Thanks for that, so simple! We have decided to go with that one for the time being, I may get one of my senior colleagues to have a look at Glenndas post as it is abit above me at the moment. Thanks for both of your input though.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now