scloud by Florian Salzmann
ende

Set DNS Suffixes via Microsoft Intune

DNS suffixes via Microsoft Intune help users access internal resources without typing full domain names. That makes things like file shares and internal websites easier to reach.

For example, users can type fileserver instead of fileserver.ad.scloud.es. (ad.scloud.es = your local Active Directory domain name)

In this guide, I create a Settings Catalog profile, configure the suffixes, and verify the result on a Windows device.

How DNS suffix search lists work

Windows uses the DNS suffix search list when resolving short, unqualified hostnames.

For example, a user might enter this path:

\\fileserver\share

Windows can append a configured suffix and query this fully qualified domain name:

fileserver.ad.scloud.es

You can add multiple DNS suffixes. Windows processes them in the configured order.

Create the Settings Catalog profile

First, sign in to the Microsoft Intune admin center with an account that can create configuration profiles.

Then complete these steps:

  1. Open Devices.
  2. Select Manage devices.
  3. Select Configuration.
  4. Select Create and then New policy.
  5. Configure the following values:
SettingValue
PlatformWindows 10 and later
Profile typeSettings catalog
  1. Select Create.

Create a Windows Settings Catalog profile in Microsoft Intune

Configure profile details

Next, enter a clear profile name and description.

The name follows my naming convention. Adjust it for your environment.

Select Next after entering the profile information.

DNS suffix profile name and description in Microsoft Intune

Add the DNS suffix search list

Under Configuration settings, select Add settings.

Search for:

DNS Suffix Search List

Add the matching setting to the profile. This is an ADMX-backed setting that applies to devices, not individual users.

Enable it and add your required DNS suffixes.

Separate multiple suffixes with commas:

ad.scloud.es,sub.ad.scloud.es

Configure multiple DNS suffixes in an Intune Settings Catalog profile

Assign the profile to test devices

Select Next until you reach Assignments.

I recommend assigning the profile to a dedicated test device group first. Avoid deploying a new network configuration directly to production.

Then:

  1. Add your test device group.
  2. Review the configured settings.
  3. Select Create.
  4. Sync one assigned test device.

Verify the deployment

Always test policies and profiles before rolling them out broadly.

A successful Intune status confirms policy processing. I also verify the effective client-side configuration directly on the device.

This two-step validation helps identify assignment, synchronization, and client configuration issues.

Check status in Microsoft Intune

Open the configuration profile in the Intune admin center.

Then review Device status or Device and user check-in status.

The test device should report Succeeded.

If Intune reports an error, review the setting name, assigned group, and device compatibility. After changes, sync the device again.

Successful DNS suffix profile deployment status in Microsoft Intune

Verify DNS suffixes on the client

I use PowerShell to verify the effective DNS suffix search list:

Get-DnsClientGlobalSetting | Select-Object -ExpandProperty SuffixSearchList

The command should return all configured suffixes:

ad.scloud.es

Verify the DNS suffix search list with PowerShell

Then run an additional resolution test with a short hostname:

Resolve-DnsName fileserver

For an end-to-end test, access the internal resource without the full domain:

\\fileserver\share

If name resolution works, Windows appended a configured suffix successfully.

Deploy to production

After successful testing, expand the assignment to your production device group.

Monitor deployment status during rollout. A staged deployment reduces risk and makes troubleshooting easier.

With this setup, users can access internal resources using short hostnames without typing the full FQDN.

Related posts

Intune Autopilot Set Time Zone
Microsoft Intune

Automatically Set the Time Zone in Intune Autopilot

Set the correct time zone during Intune Autopilot using my PowerShell script and IPInfo API. Fast, simple, and no extra services needed.

Custom Compliance Policies in Intune: When and How to Use Them
Intune Starter Series

Custom Compliance Policies in Intune: When and How to Use Them

Use custom compliance in Intune to check services, registry keys, and files. Includes scripts, JSON, and setup tips.

Manage Windows Services with Intune: A Practical Guide
(Proactive) Remediations

Manage Windows Services with Intune: A Practical Guide

Learn how to manage and configure Windows services using Microsoft Intune. I'm using PowerShell and Intune's scripting capabilities.