SCCM SQL Query to get Client Settings

Boopathi S 3,386 Reputation points
2024-10-01T15:56:19.55+00:00

Hello,

There are 100+ client settings created under \Administration\Overview\Client Settings.

How to get each all the client settings of 100+ Client settings. Please share if any SCCM SQL query exists.

Microsoft Configuration Manager
{count} votes

1 answer

Sort by: Most helpful
  1. Sherry Kissinger 4,641 Reputation points
    2024-10-01T18:07:13.5933333+00:00

    Not perfect, but it's a start:

    Select

    cs.Name 'ClientSettings Name In the Console'

    ,ca.Name 'Policy Section'

    ,cap.Name 'Policy Element'

    ,capv.DwordValue, capv.StringValue, capv.XmlValue

    from ClientAgentProperty_Value capv

    join vSMS_ClientSettings cs on cs.id = capv.ClientSettingsID

    join ClientAgentProperty cap on cap.ID=capv.PropertyID

    join clientAgent ca on ca.ID=cap.ClientAgentID

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.