How to Use Microsoft Intune to Push WiFi Certificates to Devices
Ein umfassender technischer Leitfaden für IT-Verantwortliche zur Bereitstellung von 802.1X WiFi-Zertifikaten über Microsoft Intune. Behandelt SCEP- vs. PKCS-Architektur, Implementierungsschritte, Compliance-Mapping und praxisnahe Bereitstellungsszenarien für Enterprise-Umgebungen.
Diesen Leitfaden anhören
Podcast-Transkript ansehen
📚 Teil unserer Kernserie: Enterprise WiFi Security Guide →
- Executive Summary
- Technical Deep-Dive: Architecture and Protocols
- The 802.1X Authentication Framework
- EAP-TLS and Mutual Authentication
- Intune Certificate Deployment Mechanisms: SCEP vs PKCS
- Implementation Guide: Step-by-Step Deployment
- Step 1: Prepare the Public Key Infrastructure (PKI)
- Step 2: Deploy the Trusted Root Certificate
- Step 3: Deploy the Client Certificate Profile
- Step 4: Configure the WiFi Profile
- Best Practices & Strategic Recommendations
- Device vs. User Certificates
- Network Segmentation and Guest Access
- Addressing the NPS Certificate Mapping Requirement
- Troubleshooting & Risk Mitigation
- Common Failure Modes
- ROI & Business Impact

Executive Summary
For enterprise IT leaders managing large-scale environments across Hospitality , Retail , or public-sector venues, secure wireless access is a baseline operational requirement. Relying on shared PSKs (Pre-Shared Keys) or username/password authentication (PEAP-MSCHAPv2) exposes the network to credential theft, phishing, and compliance failures. The industry standard for robust enterprise WiFi security is 802.1X with EAP-TLS (Extensible Authentication Protocol with Transport Layer Security), which mandates mutual certificate-based authentication between the device and the network.
However, the primary barrier to EAP-TLS adoption has historically been the operational overhead of certificate lifecycle management. Microsoft Intune resolves this by automating the delivery, renewal, and revocation of digital certificates to managed devices at scale.
This technical reference details the architecture, deployment methodologies (SCEP vs PKCS), and implementation steps required to push WiFi certificates via Microsoft Intune. It provides actionable guidance for network architects and systems engineers tasked with securing corporate communications while maintaining strict separation from visitor networks, such as those managed by a Guest WiFi platform.
Technical Deep-Dive: Architecture and Protocols
To implement certificate-based authentication effectively, IT teams must understand the interaction between the Mobile Device Management (MDM) platform, the Public Key Infrastructure (PKI), and the network access control layer.
The 802.1X Authentication Framework
The IEEE 802.1X standard defines port-based network access control. In a wireless context, it prevents a device from passing any traffic (other than EAP authentication frames) until its identity is verified. The architecture consists of three components:
- Supplicant: The client device (laptop, smartphone, tablet) requesting network access.
- Authenticator: The wireless access point or wireless LAN controller that blocks traffic until authentication succeeds.
- Authentication Server: The RADIUS (Remote Authentication Dial-In User Service) server, such as Microsoft Network Policy Server (NPS) or Cisco ISE, which validates the credentials and authorises access.
EAP-TLS and Mutual Authentication
EAP-TLS is the most secure EAP method because it requires mutual authentication. The RADIUS server presents its certificate to the supplicant to prove it is the legitimate corporate network (preventing evil-twin attacks), and the supplicant presents its client certificate to the RADIUS server to prove it is an authorised device or user.

Intune Certificate Deployment Mechanisms: SCEP vs PKCS
Microsoft Intune supports two primary protocols for deploying client certificates to devices. Selecting the appropriate mechanism is a critical architectural decision.
Simple Certificate Enrollment Protocol (SCEP)
With SCEP, the private key is generated directly on the client device. The device creates a Certificate Signing Request (CSR) and submits it via Intune to the Network Device Enrollment Service (NDES) server, which acts as a proxy to the Active Directory Certificate Services (ADCS) infrastructure. The CA issues the certificate, which is returned to the device.
Because the private key never leaves the device, SCEP is considered highly secure and is the recommended approach for BYOD (Bring Your Own Device) deployments and zero-trust architectures.
Public Key Cryptography Standards (PKCS)
With PKCS, the Intune Certificate Connector requests the certificate from the CA on behalf of the device. The CA generates both the public certificate and the private key, which the connector then securely delivers to the device via Intune.
While PKCS simplifies the infrastructure requirements (no NDES server is needed), the private key is transmitted across the network. This model is generally acceptable for corporate-owned, fully managed device fleets where the MDM platform is already a highly trusted component.

Implementation Guide: Step-by-Step Deployment
Deploying Wi-Fi certificates via Intune requires precise sequencing. Deploying profiles out of order is the most common cause of implementation failure.
Step 1: Prepare the Public Key Infrastructure (PKI)
Whether utilising on-premises ADCS or a cloud-native solution like Microsoft Cloud PKI, the Certificate Authority must be configured with the appropriate templates.
- Key Usage: The template must include the
Client AuthenticationOID (1.3.6.1.5.5.7.3.2). - Key Size: Configure a minimum key size of 2048 bits (RSA) to align with modern cryptographic standards.
- Subject Name: For user certificates, the Subject Alternative Name (SAN) should be configured to use the User Principal Name (UPN). For device certificates, use the Azure AD Device ID.
Step 2: Deploy the Trusted Root Certificate
Before a device can authenticate, it must trust the CA that issued the RADIUS server's certificate.
- Export the Root CA certificate (and any intermediate CA certificates) in
.cerformat. - In the Intune admin centre, navigate to Devices > Configuration profiles > Create profile.
- Select the platform and choose the Trusted certificate profile type.
- Upload the
.cerfile and assign the profile to the target device or user groups.
Note: This profile must successfully apply to devices before proceeding to the next steps.
Step 3: Deploy the Client Certificate Profile
Create either a SCEP or PKCS certificate profile to deliver the identity certificate to the supplicant.
- Navigate to Devices > Configuration profiles > Create profile.
- Select the platform and choose either SCEP certificate or PKCS certificate.
- Configure the Subject Name format and SAN according to your identity requirements (User vs. Device).
- Specify the Key Storage Provider (KSP) — typically the Trusted Platform Module (TPM) for hardware-backed security.
- Assign the profile to the same groups targeted in Step 2.
Step 4: Configure the WiFi Profile
The final component binds the certificates to the wireless network settings.
- Navigate to Devices > Configuration profiles > Create profile.
- Select the platform and choose the Wi-Fi profile type.
- Set the Wi-Fi type to Enterprise and enter the exact SSID.
- Set the EAP type to EAP-TLS.
- Under Server Trust, specify the exact name of the RADIUS server certificate and select the Trusted Root certificate profile deployed in Step 2.
- Under Client Authentication, select the SCEP or PKCS certificate profile deployed in Step 3.
- Assign the profile to the target groups.
Best Practices & Strategic Recommendations
Device vs. User Certificates
Network architects must decide whether to issue certificates to the device (machine authentication) or the user (user authentication).
- Device Certificates: Allow the machine to connect to the WiFi network before a user logs in. This is critical for initial device provisioning, Group Policy processing, and password resets at the login screen. Recommended for corporate-owned devices.
- User Certificates: Tie network access to the individual's identity. This provides granular auditing and role-based access control. Recommended for BYOD scenarios.
Network Segmentation and Guest Access
A fundamental security principle is the strict logical separation of the corporate 802.1X network from visitor or public access networks. The Intune-managed infrastructure should be dedicated exclusively to corporate devices and authenticated staff.
For visitor access, organisations should deploy a dedicated Guest WiFi SSID backed by a captive portal. This ensures that unmanaged devices are isolated, while still allowing the business to capture visitor analytics via a WiFi Analytics platform. To learn more about securing DNS infrastructure across both segments, review our guide on how to Protect Your Network with Strong DNS and Security .
Addressing the NPS Certificate Mapping Requirement
For organisations utilising Microsoft Network Policy Server (NPS) with Azure AD-joined devices, a critical configuration change was introduced by Microsoft. NPS now requires strong certificate mapping.
When using device certificates, the computer object in the on-premises Active Directory must have its altSecurityIdentities attribute populated with the certificate's details (typically the X509IssuerSerialNumber). IT teams must implement a scheduled script or event-driven workflow to update this attribute when Intune issues a new certificate, otherwise authentication will fail.
Troubleshooting & Risk Mitigation
When an 802.1X deployment fails, the issue almost always resides in the certificate chain or the Intune profile sequencing.
Common Failure Modes
- Silent WiFi Profile Failure: If the Intune WiFi profile is applied to a device before the client certificate has been successfully provisioned, the WiFi profile will often fail to install or will fail silently. Always verify certificate presence in the device's Personal store (
certmgr.mscon Windows) before troubleshooting the WiFi configuration. - Server Trust Validation Errors: If the device rejects the RADIUS server, verify that the server name specified in the Intune WiFi profile exactly matches the Subject Name or SAN on the RADIUS server's certificate. Additionally, ensure that the entire certificate chain (Root and Intermediate) is present in the device's Trusted Root Certification Authorities store.
- Certificate Revocation List (CRL) Unavailability: If the RADIUS server cannot reach the CA's CRL distribution point to verify the client certificate's status, authentication will be denied. Ensure the CRL URL is highly available and accessible from the RADIUS server.
ROI & Business Impact
Transitioning to certificate-based WiFi authentication via Intune delivers significant operational and security returns.
- Risk Mitigation: Eliminates the risk of credential harvesting, pass-the-hash attacks, and unauthorised network access via shared PSKs.
- Operational Efficiency: Reduces IT helpdesk tickets related to password expirations and WiFi connectivity issues. The automated lifecycle management means certificates are renewed transparently without user intervention.
- Compliance Enablement: Satisfies stringent regulatory requirements. For retail environments, it directly addresses PCI DSS requirements for robust wireless encryption and authentication. For public sector and healthcare, it aligns with zero-trust network access (ZTNA) principles.
By leveraging Microsoft Intune for certificate deployment, IT teams can achieve a frictionless, highly secure wireless experience that operates silently in the background, allowing the business to focus on core operations.
Schlüsseldefinitionen
802.1X
Ein IEEE-Standard für die portbasierte Netzwerkzugriffskontrolle, der verhindert, dass nicht autorisierte Geräte auf ein LAN oder WLAN zugreifen, bis sie sich erfolgreich authentifiziert haben.
Das grundlegende Sicherheitsprotokoll, das gemeinsam genutzte WiFi-Passwörter in Unternehmensumgebungen durch eine Authentifizierung der Enterprise-Klasse ersetzt.
EAP-TLS
Extensible Authentication Protocol mit Transport Layer Security. Ein Authentifizierungs-Framework, bei dem sich sowohl der Client als auch der Server mithilfe digitaler Zertifikate ausweisen müssen.
Das spezifische Protokoll, das im Intune-WiFi-Profil konfiguriert ist, um eine gegenseitige Zertifikatsauthentifizierung zu erzwingen und das Risiko von Anmeldedatendiebstahl auszuschließen.
SCEP
Simple Certificate Enrollment Protocol. Ein Mechanismus, bei dem das Client-Gerät seinen eigenen privaten Schlüssel generiert und über einen zwischengeschalteten Server ein Zertifikat von der CA anfordert.
Die bevorzugte Bereitstellungsmethode für BYOD-Umgebungen, da der private Schlüssel niemals über das Netzwerk übertragen wird.
PKCS
Public Key Cryptography Standards. Im Kontext von Intune eine Bereitstellungsmethode, bei der die CA den privaten Schlüssel generiert und der Intune Connector diesen sicher an das Gerät übermittelt.
Eine einfachere Bereitstellungsarchitektur, die häufig für firmeneigene Geräteflotten verwendet wird, da kein NDES-Server erforderlich ist.
NDES
Network Device Enrollment Service. Eine Microsoft-Serverrolle, die als Proxy fungiert und es Geräten ohne Domänen-Anmeldedaten ermöglicht, Zertifikate von einer Active Directory-Zertifizierungsstelle zu beziehen.
Eine obligatorische Infrastrukturkomponente bei der Bereitstellung von Zertifikaten über SCEP in einer On-Premises-ADCS-Umgebung.
RADIUS
Remote Authentication Dial-In User Service. Ein Netzwerkprotokoll, das eine zentrale Verwaltung von Authentifizierung, Autorisierung und Accounting (AAA) bereitstellt.
Der Server (wie Microsoft NPS oder Cisco ISE), der die Authentifizierungsanfrage vom WiFi-Access-Point empfängt und das Zertifikat des Geräts validiert.
Supplicant
Der Software-Client auf dem Endgerät des Benutzers (Laptop, Smartphone), der den 802.1X-Authentifizierungsprozess initiiert.
Das Intune-WiFi-Profil konfiguriert den nativen OS-Supplicant (z. B. Windows WLAN AutoConfig) so, dass die korrekten Zertifikate und EAP-Methoden verwendet werden.
Certificate Revocation List (CRL)
Eine von der Zertifizierungsstelle digital signierte und veröffentlichte Liste, die die Seriennummern von Zertifikaten enthält, die widerrufen wurden und denen nicht mehr vertraut werden sollte.
Entscheidend für die Einhaltung von Sicherheitsrichtlinien; der RADIUS-Server muss die CRL überprüfen, um sicherzustellen, dass ein sich verbindendes Gerät nicht als verloren oder gestohlen gemeldet wurde.
Ausgearbeitete Beispiele
Eine Einzelhandelskette mit 400 Standorten führt firmeneigene Tablets für die Bestandsverwaltung ein. Die Geräte werden vollständig über Intune verwaltet und sind in Azure AD eingebunden. Sie benötigen sofort nach dem Booten Netzwerkzugriff, um Bestandsdatenbanken zu synchronisieren, noch bevor sich ein bestimmter Benutzer anmeldet. Die Netzwerkinfrastruktur nutzt Cisco ISE als RADIUS-Server. Was ist die optimale Strategie zur Zertifikatsbereitstellung?
Das IT-Team sollte PKCS-Gerätezertifikate implementieren.
- Konfigurieren Sie eine Gerätezertifikatsvorlage auf der CA.
- Stellen Sie das Root-CA-Zertifikat über Intune auf den Tablets bereit.
- Erstellen Sie ein PKCS-Zertifikatsprofil in Intune und legen Sie das Format des Subject Name auf die Azure AD-Geräte-ID ({{AAD_Device_ID}}) fest.
- Erstellen Sie ein Enterprise-WiFi-Profil unter Angabe von EAP-TLS, das auf den Zertifikatsnamen des ISE-Servers und das bereitgestellte PKCS-Profil verweist.
- Weisen Sie alle Profile der Gerätegruppe zu, die die Tablets enthält.
Ein großes Lehrkrankenhaus erlaubt dem medizinischen Personal die Nutzung privater Smartphones (BYOD) für den Zugriff auf klinische Planungsanwendungen. Die Geräte sind über ein Arbeitsprofil in Intune registriert. Die Sicherheitsrichtlinie schreibt vor, dass keine Unternehmensdaten auf privaten Geräten gespeichert werden dürfen und der Netzwerkzugriff sofort entzogen werden muss, wenn ein Gerät kompromittiert wird. Wie sollte die WiFi-Authentifizierung gestaltet werden?
Das Krankenhaus muss SCEP-Benutzerzertifikate in Kombination mit Intune-Compliance-Richtlinien implementieren.
- Stellen Sie einen NDES-Server bereit, um Anfragen an die CA weiterzuleiten.
- Erstellen Sie ein SCEP-Benutzerzertifikatsprofil in Intune, wobei der SAN auf den User Principal Name ({{UserPrincipalName}}) konfiguriert ist.
- Erstellen Sie eine Intune-Compliance-Richtlinie, die eine Mindest-Betriebssystemversion, eine aktive Bildschirmsperre und keinen Jailbreak-/Root-Zugriff erfordert.
- Konfigurieren Sie die CA so, dass sie eine hochverfügbare Zertifikatssperrliste (CRL) veröffentlicht.
- Konfigurieren Sie den RADIUS-Server so, dass er bei jedem Authentifizierungsversuch eine strikte CRL-Prüfung erzwingt.
Übungsfragen
Q1. Ihre Organisation migriert von PEAP-MSCHAPv2 (Benutzername/Passwort) zu EAP-TLS für das Unternehmens-WiFi. Während der Pilotphase erhalten mehrere Windows 11-Laptops die Intune-Konfigurationsprofile erfolgreich, können sich jedoch nicht mit dem Netzwerk verbinden. Die Überprüfung der Windows-Ereignisprotokolle zeigt die Ereignis-ID 20271, was darauf hinweist, dass das Zertifikat des RADIUS-Servers abgelehnt wurde. Was ist die wahrscheinlichste Ursache?
Hinweis: Berücksichtigen Sie die Vertrauenskette, die für eine gegenseitige Authentifizierung erforderlich ist.
Musterlösung anzeigen
Den Geräten fehlt das Trusted Root CA-Zertifikat, das das Zertifikat des RADIUS-Servers ausgestellt hat. Bei EAP-TLS muss das Gerät die Identität des RADIUS-Servers validieren. Das IT-Team muss sicherstellen, dass das Profil "Vertrauenswürdiges Zertifikat", das die Root-CA (und alle Intermediate-CAs) enthält, über Intune auf den Geräten bereitgestellt und erfolgreich installiert wird, bevor das WiFi-Profil versucht, eine Verbindung herzustellen.
Q2. Ein Standort des öffentlichen Sektors implementiert 802.1X für Mitarbeitergeräte unter Verwendung von Intune und PKCS-Zertifikaten. Sie betreiben außerdem ein separates Besuchernetzwerk, das von einer Guest WiFi-Plattform verwaltet wird. Ein Auditor stellt fest, dass bei Diebstahl eines Mitarbeiter-Laptops das Zertifikat für 12 Monate gültig bleibt. Wie sollte der Netzwerkarchitekt dieses Risiko angehen?
Hinweis: Wie erfährt der Authentifizierungsserver, dass ein Zertifikat vor seinem Ablaufdatum nicht mehr gültig ist?
Musterlösung anzeigen
Der Architekt muss einen robusten Workflow zur Zertifikatssperrung (Certificate Revocation) implementieren. Stellen Sie erstens sicher, dass die CA eine Zertifikatssperrliste (CRL) an einem hochverfügbaren Verteilungspunkt veröffentlicht. Konfigurieren Sie zweitens den RADIUS-Server (z. B. NPS) so, dass bei jedem Authentifizierungsversuch eine CRL-Prüfung vorgeschrieben ist. Richten Sie schließlich ein Intune-Betriebsverfahren ein, um das Zertifikat jedes als verloren oder gestohlen gemeldeten Geräts explizit zu sperren, wodurch die CRL aktualisiert und der Netzwerkzugriff blockiert wird.
Q3. Sie entwerfen die Intune-Bereitstellung für eine Flotte gemeinsam genutzter Kiosk-Geräte in einer Einzelhandelsumgebung. Diese Geräte starten täglich neu und müssen sich sofort mit dem Unternehmensnetzwerk verbinden, um Updates herunterzuladen, bevor ein Benutzer mit ihnen interagiert. Sollten Sie Benutzerzertifikate oder Gerätezertifikate bereitstellen, und welches Format für den Subject Alternative Name (SAN) sollte verwendet werden?
Hinweis: Berücksichtigen Sie den Zustand des Geräts unmittelbar nach einem Neustart.
Musterlösung anzeigen
Sie müssen Gerätezertifikate bereitstellen. Da die Kioske vor der Anmeldung eines Benutzers Netzwerkzugriff benötigen, wäre ein Benutzerzertifikat beim Booten nicht verfügbar. Der Subject Alternative Name (SAN) im Intune-Zertifikatsprofil sollte so konfiguriert werden, dass er die Azure AD-Geräte-ID ({{AAD_Device_ID}}) oder den vollqualifizierten Domänennamen des Geräts verwendet, damit der RADIUS-Server das spezifische Hardware-Asset authentifizieren kann.
Weiterlesen in dieser Reihe
Konfigurieren von RADIUS-Authentifizierung für Gäste- und Mitarbeiter-WiFi-Netzwerke
Dieses technische Referenzhandbuch beschreibt die Architektur, Konfiguration und Bereitstellung der RADIUS-Authentifizierung für WiFi-Netzwerke von Unternehmen für Gäste und Mitarbeiter. Es bietet Netzwerkarchitekten und IT-Managern die genauen Protokolle, Sicherheitsstandards und Fehlerbehebungsmethoden, die für den Aufbau sicherer, skalierbarer drahtloser Zugriffskontrollsysteme erforderlich sind.
Passpoint und OpenRoaming: Das vollständige Handbuch
Dieses technische Referenzhandbuch bietet eine umfassende Analyse der Passpoint (Hotspot 2.0) und WBA OpenRoaming Frameworks in Enterprise WiFi Netzwerken. Es beschreibt detailliert die zugrundeliegenden Authentifizierungsprotokolle, Architekturkomponenten und Bereitstellungsstrategien, die für den Aufbau einer sicheren, reibungslosen Gastkonnektivität erforderlich sind. Netzwerkarchitekten und IT-Leiter erfahren, wie sie diese Standards entwerfen, implementieren und Fehler beheben, um manuelle Anmeldebarrieren zu beseitigen und gleichzeitig die Sicherheit auf Enterprise-Niveau aufrechtzuerhalten.
Implementierung von SCEP für sichere BYOD- und Netzwerkanmeldung im Hochschulbereich
Dieser technische Leitfaden bietet Netzwerkarchitekten und IT-Managern ein herstellerunabhängiges Konzept für die Bereitstellung von SCEP-basierten Zertifikatsanmeldungen zur Sicherung von Campusnetzwerken an Hochschulen. Er beschreibt im Detail die Migration von passwortbasiertem PEAP zu 802.1X EAP-TLS, die Automatisierung des BYOD-Onboardings und die Durchsetzung einer robusten VLAN-Segmentierung.