Automate Installing SCCM Client for Azure AD Autopilot Devices via Intune and PowerShell

With more and more organizations moving to Modern Management approach to manage their endpoints; there is an increase in adapting and leveraging Endpoint Manager and Autopilot where devices can be shipped directly from manufacturers (OEMs) to users. Typically, the OEM would go about Pre-provisioning (AKA White-Glove) those devices where all essential apps are installed and ready to be used by users when they receive and enroll their device (upon first logon) into Intune (Azure AD joined only) 

However, many of Microsoft customers out there still use Endpoint Configuration Manager (MECM or SCCM) on-prem and are yet to be 100% cloud based, and if we add the fact that Intune have a lot to catch up on compared to SCCM, many administrators may well prefer to get the best of both worlds (i.e. manage devices via Intune and SCCM simultaneously). 

While we can preload devices with most apps during pre-provisioning; The SCCM client installation presents few challenges:

  • Enrolling devices into SCCM requires CMG (Cloud Management Gateway) which adds to the cost of your Azure Tenant.
  • Without CMG, the alternative would be to connect devices to on-prem Configuration Manager via a VPN, however, at the point of pre-provisioning, no access to corporate network is available. 
  • Most VPN Solutions require an active user to login before establishing a VPN connection to the corporate network so we can only trigger the installation when a device has successfully passed security checks and connected to the corporate network. 

To go about this scenario, I have broken the deployment into three steps:

  • Package the SCCM client for Intune (convert to Intunewin package).
  • Download SCCM client to endpoints as part of pre-provisioning (white Glove) – or as a user-driven installed app
  • Trigger the installation upon user login via a scheduled task and a PowerShell script when a set of conditions are met.

 

Step 1: Package the SCCM client for Intune

To package SCCM in an format that Intune can understand, download the Microsoft Win32 Content Prep Tool. This tool allows you to create Win32 packages that can be uploaded to Intune. Click on “Code” and choose “Download ZIP” 

Extract the contents – they will look similar to this

2021-11-22 22_13_41-Microsoft-Win32-Content-Prep-Tool-master2

We will come back to this later, for now let’s get the installation script ready

The script will do several checks before triggering an installation:-

  • Is SCCM Client already installed? if yes, exit.
  • Is SCCM package (MSI) downloaded on the endpoint? if not, exit.
  • Has the device connected to VPN and is SCCM server on-prem ping-able? if not, exit, otherwise trigger the installation. 

What you will need to have in hand to customize the script? 

  • SMSMP: The FQDN of your SCCM server
  • SMSSITECODE: Your SCCM site code
  • FSP: Fallback Status Point (If applicable)

The script

 

Replace the variables in the code to suite your environment (lines 78 and 89). 

Save this code as “InstallSCCMClient.ps1” and place it to your SCCM package contents 

2021-11-22 22_50_53-SCCMPackage2

Prepare and convert the SCCM package to Intunewin format

As explained earlier, the Intune Win 32 App will only copy down the package and will not install it. In order to do that we need a simple .cmd or .bat file that has a copy action. In this example, I am instructing Intune to copy the package to C:\temp\SCCMpackage on the endpoint

Using Notepad, paste the following line and save the file as CopySCCMpackage.cmd 

Move CopySCCMpackage.cmd and place it at the root level with your SCCMPackage folder 

2021-11-22 22_53_41-SCCMPackage_Intune

Now you are ready to convert the package into Intunewin format. Open up PowerShell as Admin and navigate to the location where you extracted the Microsoft Win32 Content Prep Tool. Call the tool.

2021-11-22 23_01_50-Administrator_ Windows PowerShell

As you can see the tool will prompt you for 4 variables: 

  • Please specify the source folder: The parent folder where your SCCMPackage folder and CopySCCMPackage.cmd reside. 
  • Please specify the setup file: The path to CopySCCMPackage.cmd 
  • Please specify the output folder: where the intunewin package will be saved
  • Do you want to specify catalog folder (Y/N)? choose N

When you hit enter, the tool will create and place the Intunewin package into the destination you specified

2021-11-22 23_05_38-Administrator_ Windows PowerShell ISE3

2021-11-22 23_07_04-SCCMPackage_Intune

Step 2: Upload the SCCM package into Intune

Navigate to endpoint.microsoft.com as an Intune Admin and go to Apps – All Apps – Add

Select the Intunewin file

2021-11-22 23_13_39-Endpoint_Manager

 

Add a description and publisher information as needed.

Next, in the Program tab, add CopySCCMPackage.cmd as install and uninstall command

2021-11-22 23_20_15-Edit application - Microsoft Endpoint Manager admin center and 3 more pages - In

Leave the “Requirements” tab as is. In the “Detection Rule” tab, add a detection rule to determine whether the application has successfully installed. 

2021-11-22 23_22_36-Windows PowerShell ISE

Assign the app as appropriate,  and save your package. Upon the next sync, your Endpoints will have the package copied to C:\temp\SCCMPackage. Intune will create the temp folder for you if it doesn’t exist. 

Step 3: Create a scheduled task to trigger the installation

Now, it’s time to create a scheduled task that would trigger the installation via InstallSCCMClient.ps1 (which should be by now located in C:\temp\SCCMPackage\ folder on the Endpoint

The script is straightforward – The scheduled task will run as System and upon logon:

Save the above script somewhere and move to Endpoint Manager portal (Intune) to upload it. 

Go Devices – Scripts – Add – Windows 10 or later

Name the script and add description. In Script settings, upload your script and leave the other options to “No” 

2021-11-22 23_35_38-Add Powershell script - Microsoft Endpoint Manager admin center and 3 more pages

Assign the script to your devices. Review and Save the script. Upon the next sync, verify that the Scheduled Task was created by running “Scheduled Tasks” as admin on the Endpoint. 

The next time a user logs in, the task will trigger the logic of InstallSCCMClient.ps1. If all conditions are met, the installation will be triggered!

 

Happy scripting!

 

 

Automate Installing SCCM Client for Azure AD Autopilot Devices via Intune and PowerShell
Tagged on:                     

2 thoughts on “Automate Installing SCCM Client for Azure AD Autopilot Devices via Intune and PowerShell

  • October 10, 2022 at 6:06 am
    Permalink

    wow Amir,its very useful and informative, i read your all blogs over the weekend and it found very useful…Thanks for sharing keep it up and share more information …Thank you.

    Reply
    • October 10, 2022 at 11:43 am
      Permalink

      That’s great to hear! Cheers

      Reply

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from Amir Sayes

Subscribe now to keep reading and get access to the full archive.

Continue reading