How can I remotely find what websites a computer has visited?
Can Kace return the data from the values inside a registry key? We need to build a report to show what websites computers visit. The data from HKCU\Software\Microsoft\Internet Explorer\TypedURLs would suffice, but I haven't found a way to get the data with Kace yet.
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
SMal.tmcc
11 years ago
create a custom software inventory item referencing that key
RegistryValueReturn(registryPath, name, type)
Comments:
-
Can you be a bit more specific? It seems to only pull one URL... - gcarpenter 11 years ago
-
Thanks! That works great.
@gcarpenter - Just repeat the line over again, but use "url1", "url2", "url3", etc. I just happened to choose 6 lines to return the 6 most recently visited sites.
----
RegistryValueReturn(HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs, url1, REG_SZ)
RegistryValueReturn(HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs, url2, REG_SZ)
RegistryValueReturn(HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs, url3, REG_SZ)
RegistryValueReturn(HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs, url4, REG_SZ)
RegistryValueReturn(HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs, url5, REG_SZ)
RegistryValueReturn(HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedURLs, url6, REG_SZ
----
It returns the sites with an "And" in between each. I suppose you could create a separate custom software rule for each of the urls up to whatever number you wish to return. - murbot 11 years ago -
Gotcha. I didn't know if there was a url1-11 or something. Thanks. - gcarpenter 11 years ago
Posted by:
jdornan
11 years ago