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.
Sccm client installation
![](https://techprofile.blob.core.windows.net/images/G7nJDHULC06OyS6IYL6o2Q.png?8DC5BF)
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.
- Where can I download the latest SCCM client?
- 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.
- I want to ensure that if the new version is not installed, it gets installed.
- The detection rule must be based on the product version.
Please suggest the best approach.
2 answers
Sort by: Most helpful
-
Rahul Jindal [MVP] 10,776 Reputation points MVP
2025-02-05T07:21:07.0666667+00:00 -
Simon Ren-MSFT 38,751 Reputation points Microsoft Vendor
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
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.