Annie Zuniga Posted February 26, 2020 Posted February 26, 2020 Does anyone have a script or something they use/can recommend to pull internet browser history/usage? When I used Continuum, this was a feature in reports.. but i've not had any luck finding anything like it with Pulseway.Â
BartB Posted March 5, 2020 Posted March 5, 2020 NirSoft's BrowsingHistoryView utility lets you see all browser history across multiple browsers on a PC. You can run it in command line and have it generate a report. You could push it out with a script in Pulseway, have it execute and then collect the report. At least it would be something. Also, this command in Powershell will give you cached DNS entries, which will indicate websites that were visited: Â ipconfig /displaydns | select-string 'Record Name' | foreach-object { $_.ToString().Split(' ')[-1] } | Sort | Get-Unique | Out-File c:\Support\dns_dump.txt Â
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