History of visits to sites on your computer powershell script?

    1 answer 1

    Try this (it will give a list of visited sites):

    powershell -noexit "ipconfig /displaydns | select-string 'Record Name' | foreach-object { $_.ToString().Split(' ')[-1] } | Sort | Out-Gridview" 

    Either watch which browser is in the system where it stores the history, extract it from there, and somehow analyze it.

    • Thank. Used in PowerShell like this: ipconfig / displaydns | select-string "Record Name" | Sort >> d: \ text.txt - komka