Intune – Deploy printers used with Universal Print with Intune/Endpoint Configuration Manager

As you may know, a new service called Universal Print has been released in preview allowing you replacing your on-premises print servers (see https://t.co/gOagPc8slW).

Well, you can now deploy the printers used by with Universal Print using Intune/Endpoint Configuration Manager to your devices.

Off course, the first thing to do is to implement and configure Universal Print (see the above link).

Then, you need to download the Universal Print provisioning tool from here https://aka.ms/UPIntuneTool_DL

The tool contains 3 files:

  • UniversalPrintPrinterProvisioning.0.1.0.0.intunewin: This is a pre-packaged Intune Win32 app package that contains the printer provisioning tool. Using Microsoft Endpoint Manager this package needs to be deployed on all the devices where Universal Print printers need to be pre-provisioned.
  • SamplePolicy.zip: This ZIP folder contains two files:
    • printers.csv (sample): This file is an example. It may be used as a reference to create a list of printers that need to be added on the given set of users’ devices.
    • InstallPolicy.cmd is a simple script that copies the printers.csv config file to the appropriate folder on users’ devices.
  • EULA.rtf: The tool is under preview. Your use of the software operates as consent to the terms of the End User License Agreement (EULA), which is included with the tool in the file named “EULA.rtf”.

As you can understand based on the description, the most important ones are the UniversalPrintPrinterProvisioning and SamplePolicy.

Then you can customize the printers.csv file to list your Universal Print printers.

You will need to gather the printer Share ID and Share Name by accessing the Universal Print blade and then the printer properties

image_thumb  image_thumb[1]  image_thumb[2]

If you have multiple printers, you can define which one will be the default one.

Deploy Win32 packages to deploy the printers

Then you need to download the Win32 app management prep tool from https://go.microsoft.com/fwlink/?linkid=2065730 to generate the custom Win32 app package to be deployed.

As reminder, to use the prep tool you need save the files (InstallPolicy.cmd and printers.csv)to be included in the package in a single folder – let’s say c:tempuniversalprint for the purpose of this post and then use the command line to generate the package

IntuneWinAppUtil.exe -c “<source folder>” -s “<source folder>InstallPolicy.cmd” -o “<target folder>”

With my example, this becomes

IntuneWinAppUtil.exe -c “c:TempUniversal Print” -s “c:TempUniversal PrintInstallPolicy.cmd” -o “c:TempUniversal Print Package”

image_thumb[3]

Now you can deploy both package UniversalPrintPrinterProvisioning.0.1.0.0.intunewin and the printer(s) package.

Connect to your Intune/Endpoint Configuration Manager portal (https://endpoint.microsoft.com/) and go to the AppsAll apps blade to deploy in order:

  1. UniversalPrintPrinter…intunewin package
    1. Select both 32 bit and 64 bit with Windows 1903 as minimum version
    2. You need to define the Detection Rule using MSI, the MSI product code should be automatically set
  2. Printer(s) package
    1. Set the install/uninstall commands with InstallPolicy.cmd
    2. You need to set the Install behavior as System
    3. Select both 32 bit and 64 bit with Windows 1903 as minimum version
    4. Define the Detection Rule with a manual rule to detect if the printers.csv file exists in %AppData%UniversalPrintPrinterProvisioningConfiguration

image_thumb[4]  image_thumb[7]  image_thumb[5]  image_thumb[6]  image_thumb[8]

How it is working?

The first package (UniversalPrintPrinterProvisioning) is deploying a background service on the targeted Windows 10 devices. This service will then look for user logon event to deploy the printer package.