Jump to content
Pulseway 9.14 🔥

Featured Replies

Posted

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. 

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

 

Create an account or sign in to comment