Sccm client installation

TechUST 606 Reputation points
2025-02-04T23:39:13.3533333+00:00

Hi ,

In my environment, the SCCM client package is deployed from Intune through a Win32 package. However, I now need to create a new package for the latest SCCM client.

  1. Where can I download the latest SCCM client?
  2. How can I determine the MSI product version of the ccmsetup.exe file?

I need this to create a detection rule for the new client version.

  1. I want to ensure that if the new version is not installed, it gets installed.
  2. The detection rule must be based on the product version.

Please suggest the best approach.

Microsoft Security | Intune | Configuration
Microsoft Security | Intune | Other
Microsoft System Center | Other
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Rahul Jindal [MVP] 10,911 Reputation points MVP
    2025-02-05T07:21:07.0666667+00:00

    You can copy the ConfigMgr source bits from your ConfigMgr infrastructure. Just navigate to <ConfigMgr installation directory>\bin\i386. As for detection, you should be able pick the version of the ccmsetup.exe by checking the properties and check for it using the sms registry key on the client.

    0 comments No comments

  2. Simon Ren-MSFT 40,341 Reputation points Microsoft External Staff
    2025-02-05T07:28:09.6466667+00:00

    Hi,

    Hope everything is going well.

    1,We can get the SCCM client source file for the default folder C:\Program Files\Microsoft Configuration Manager\Client.

    2,We can run following PowerShell on a device where the SCCM client is installed already to get the product version:

    Get-WmiObject Win32_Product | Where-Object {$_.Name -eq “Configuration Manager Client”}

    Or check the product version from Configuration Manager properties via control panel, as shown below in my lab.

    Similar thread for your reference: How to install SCCM Client from Microsoft Intune for Co-managed and CMG – Notes from the field

    product version

    Feel free to contact me if you have any concerns/queries.

    Best regards,

    Simon


    If the response is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


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.