I agree with Chris that browser history in a report is not a good idea.
You can get the browsers installed by using the Asset Intelligence report
Software 02D - Computers with a Specific Software Installed.
If you want to do something custom, I am using the query below to create a
report that prompts for application name. It's rough, but works for my
purposes:
Select
sys.Netbios_Name0,
sys.User_Domain0,
sys.User_Name0,
sys.Operating_System_Name_and0,
arp.DisplayName0,
ARP.Version0
FROM
v_R_System sys
JOIN v_Add_Remove_Programs arp ON sys.ResourceID = arp.ResourceID
WHERE
Displayname0 like '%' +@ApplicationName+ '%'
On Thu, May 1, 2014 at 10:31 AM, <[email protected]> wrote:
> browser history in a report, thats gonna be a HUGE report.
>
> Bad idea.
>
> As for what versions of what browser, use the installed software reports.
>
> you could run a custom report, and just list the browsers that you care
> about.
>
> Sent from Windows Mail
>
> *From:* James Avery <[email protected]>
> *Sent:* Thursday, May 1, 2014 11:18 AM
> *To:* [email protected]
>
> Guys I'm trying to figure out a SSRS report in SCCM 2012 R2 to allow me
> to gather a list of browsers, versions, plug-ins and browser history from
> each PC.
>
> Thoughts?
>
> James
>
>
>
>
>
>