jessem Posted February 12, 2007 Posted February 12, 2007 I am an Admin for a small school district and recently have been informed that I need to keep track of where the students go on the internet. I'm hoping I can use AutoIt to record the url of each visited site and store them in a .txt file on a remote folder in a format like [date:time]:url Any suggestions or ideas on where to look on how to start coding this ? thanks !
sshrum Posted February 12, 2007 Posted February 12, 2007 (edited) Most routers have logging capabilities built in that you can use instead of having to script something. Check there first. If not, reply back and someone here can probably help you out... No point in reinventing the wheel so-to-speak. Edited February 12, 2007 by sshrum Sean Shrum :: http://www.shrum.net All my published AU3-based apps and utilities 'Make it idiot-proof, and someone will make a better idiot'
jessem Posted February 12, 2007 Author Posted February 12, 2007 Thank you for the advice. However no-can-do. Thats why I'm hoping for a cheap solution using Autoit. I know a bunch of new browser features were added, but i'm not familure with them at all.
BALA Posted February 12, 2007 Posted February 12, 2007 (edited) I don't know how much help this could be, but maybe you could try using the _IEAttach function and get the URL. ; ******************************************************* ; Example 1 - Attach to a browser with "AutoIt" in its title, display the URL ; ******************************************************* ; #include <IE.au3> $oIE = _IEAttach ("AutoIt") MsgBox(0, "The URL", _IEPropertyGet ($oIE, "locationurl")) You could then take that URL and send it to a TXT file. Edited February 12, 2007 by BALA [font="Comic Sans MS"]BA-LA[/font]http://ba-la.110mb.comJoin my community, CLICK HEREAlternative links to my site:http://www.ba-la.tkhttp://www.ba-la.co.nrContact me if you would like to help with some of my projects: joeythepirate@gmail.com
sandyd Posted February 13, 2007 Posted February 13, 2007 Does a proxy not do what you are after. It should log what sites have been visited, and the IP of the machine that went there. It can do so much more to boot. ----[ SandyD ]---
jessem Posted February 13, 2007 Author Posted February 13, 2007 I don't know how much help this could be, but maybe you could try using the _IEAttach function and get the URL. ; ******************************************************* ; Example 1 - Attach to a browser with "AutoIt" in its title, display the URL ; ******************************************************* ; #include <IE.au3> $oIE = _IEAttach ("AutoIt") MsgBox(0, "The URL", _IEPropertyGet ($oIE, "locationurl")) You could then take that URL and send it to a TXT file. Perfect ! Thank you. This is exactly what I was looking for.
shiningduff Posted May 6, 2013 Posted May 6, 2013 (edited) My school use LAN Spy Monitor to record visites websites, seems it works well. here is the software: <snip> Edited May 6, 2013 by Melba23 URL removed
BrewManNH Posted May 6, 2013 Posted May 6, 2013 shiningduff, welcome to the forums, but not a great first post, necroposting in a 6 year old thread. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
Moderators Melba23 Posted May 6, 2013 Moderators Posted May 6, 2013 shiningduff, As we no longer allow allow AutoIt scripts such as keyloggers, etc to be discussed here, I have removed the link you posted to a commercial organisation specialising in this sort of thing. And please look at the date of the thread before posting next - we take a dim view of those who regularly resurrect threads as old as this one. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Recommended Posts