Another small addition to Configuration Manager Technical Preview 1802 is a report which lists the various web browsers out there in your client estate which are set as default.
At the moment this is a first draft of the report as it doesn’t render the names properly as you can see. If you reference the official docs for this though you will see the translations as follows:
Note the known issue listed in the official documents which states that you only see a count of browsers and not the browser code. I had this and you simply need to right click the report and Edit. In here you can then find the data source, right click and edit the query. You need to swap out the select statement for this one.
I expect some progression on this one by the next tech preview release and hopefully in the future we can perhaps target the report at a specific collection. /Peter
|
s |
Pingback: Configuration Manager Technical Preview 1802–What’s new? | More than patches
hi,
very nice the article, do you know how collect what the default browser user is using?
LikeLike
Besides the report, you will find in Hardware Inventory that it’s collecting Default Browser from SMS_DefaultBrowser in WMI.
https://docs.microsoft.com/en-us/mem/configmgr/core/clients/manage/inventory/resource-explorer-classes#sms_defaultbrowser
You will also find some defaul association information for a user in the registry here.
Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Shell\Associations\UrlAssociations\http
Computer\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\Shell\Associations\UrlAssociations\https
You will find a UserChoice and ProgId.
LikeLike
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_DEFAULT_BROWSER on SMS_G_System_DEFAULT_BROWSER.ResourceID = SMS_R_System.ResourceId where SMS_G_System_DEFAULT_BROWSER.BrowserProgID = ‘XXXXX’
LikeLike
MSEdgeBHTML for new Edge Chromium
LikeLike