← Back to Home
📅 February 17, 2026 | ⏱️ 5 min read | ✍️ By Allester Padovani | 🏷️ Device Configuration

Intune does not offer a built-in setting to deploy a custom lock screen image. You can still get a corporate lock screen on Windows devices by (1) copying the image to the device with a Win32 app, and (2) pointing Windows at that image with a Settings Catalog policy. This guide walks through packaging the image as an Intune Win32 app, deploying it, then configuring the lock screen path.

What You’ll Do

  • Package your lock screen image (e.g. Background-1.png) with the Microsoft Win32 Content Prep Tool so you have an .intunewin file.
  • Add the package in Intune as a Win32 app with an install command that copies the image to C:\Windows\Web\Wallpaper, and assign it to users or devices.
  • Create a Settings Catalog profile that enables Force a specific default lock screen and logon image and sets the path to that image (e.g. C:\Windows\Web\Wallpaper\Background-1.png), then assign the profile.

Use the same image filename in the Win32 app, detection rule, and configuration profile. If your image has a different name, substitute it everywhere below.

Step 1: Create the Win32 Package

Create two folders: one for the source (e.g. C:\DeployBackground) and one for the output (e.g. C:\Output).

Creating folders for lockscreen deployment

Copy your lock screen image into the source folder (e.g. C:\DeployBackground\Background-1.png). Use a short, consistent name; you will reference it in the install command, detection rule, and policy.

Copying lockscreen image to deployment folder

Download the Microsoft Win32 Content Prep Tool (IntuneWinAppUtil) from GitHub.

Microsoft Win32 Content Prep Tool download

Run the tool with administrator rights. When prompted:

  • Source folder: C:\DeployBackground
  • Setup file: Background-1.png (or your image filename)
  • Output folder: C:\Output
  • Catalog folder: N
Intune Win32 Content Prep Tool configuration

The tool creates an .intunewin file in the output folder. Keep this file for the next step.

Generated IntuneWin file in output folder

Step 2: Add and Deploy the Win32 App

In the Microsoft Intune admin center, go to AppsWindowsAdd. Choose Windows app (win32) and click Select.

Adding a Win32 app in Intune

Under App package file, click Select app package file and upload the .intunewin file from C:\Output. Click OK.

Uploading IntuneWin file in Intune

On App information, set name, description, and Publisher. Click Next.

App information settings in Intune

On Program, set:

  • Install command: powershell.exe -ExecutionPolicy Bypass -Command "Copy-Item '.\Background-1.png' -Destination 'C:\Windows\Web\Wallpaper'"
  • Uninstall command: powershell.exe -ExecutionPolicy Bypass -Command "Remove-Item 'C:\Windows\Web\Wallpaper\Background-1.png' -ErrorAction SilentlyContinue"
  • Install behavior: System

Use your actual image filename in both commands. Click Next.

Configuring program install and uninstall commands

On Requirements, set minimum OS (e.g. Windows 10 1607) and architecture (e.g. 64-bit). Click Next.

Configuring requirements for the Win32 app

On Detection rules, add a rule: Rule type File, Path C:\Windows\Web\Wallpaper, File or folder Background-1.png, Detection method File or folder exists. Click OK then Next. Skip Dependencies and Supersedence if not needed.

Configuring detection rules for the lock screen image

On Assignments, assign the app to the groups (or All Users/Devices) that should get the lock screen. Click Next, then Review + createCreate.

Assigning the Win32 app to groups Review and create the Win32 app deployment

Step 3: Create the Lock Screen Configuration Profile

Go to DevicesWindowsConfiguration profiles. Click CreateNew policy. Set Platform to Windows 10 and later and Profile type to Settings catalog. Click Create.

Creating a Settings catalog configuration profile

On Basics, enter a name (e.g. “Lock screen image”) and click Next. On Configuration settings, click Add settings. Search for Desktop or lock screen, then expand Administrative TemplatesControl PanelPersonalization. Add Force a specific default lock screen and logon image, enable it, and set Path to lock screen image to C:\Windows\Web\Wallpaper\Background-1.png (or your image name). Click Next.

Configuring lock screen image path in Settings catalog

Set Scope tags and Assignments (same users/devices as the Win32 app so the image is present when the policy applies). On Review + create, click Create.

The Win32 app copies the image to C:\Windows\Web\Wallpaper; the configuration profile tells Windows to use that file as the lock screen. Ensure the app is assigned so it installs before or with the profile.

Wrap-up

You can deploy a custom lock screen with Intune by (1) packaging the image with the Win32 Content Prep Tool, (2) deploying it as a Win32 app that copies the file to C:\Windows\Web\Wallpaper, and (3) creating a Settings Catalog profile that enables Force a specific default lock screen and logon image with that path. Use the same image filename in the install command, detection rule, and policy path so the lock screen applies consistently.