Troubleshooting Windows 11 Internet Connectivity Issues After Upgrade

This guide provides a definitive technical reference for IT leaders on resolving Windows 11 upgrade-related internet connectivity failures caused by the removal of 802.1X wired authentication settings. It delivers a step-by-step troubleshooting and remediation process, covering Group Policy, Microsoft Intune, and manual recovery methods, alongside preventative measures and ROI analysis to ensure stable, compliant network access across enterprise environments.

📖 7 min read📝 1,719 words🔧 2 examples3 questions📚 9 key terms

🎧 Listen to this Guide

View Transcript
Welcome to the Purple Technical Briefing. Today we are addressing a critical issue impacting enterprise IT teams globally: the loss of wired internet connectivity on devices after an in-place upgrade to Windows 11. If you have had users suddenly unable to connect to your secure network post-upgrade, you are not alone. This is not a random bug. It is a specific failure in how the upgrade handles 802.1X authentication settings. In the next ten minutes, I will walk you through why this happens, how to fix it, and how to prevent it from derailing your operations. Let us start with the technical context. The Windows 11 upgrade issue we are discussing is not new. It has been documented across enterprise environments since the early feature updates, and it has become more prominent with the 23H2 to 25H2 upgrade cycle. The core problem is this: when a Windows 11 in-place upgrade runs, it can silently remove or corrupt the XML configuration files that govern wired 802.1X authentication. The result is that devices boot up after the upgrade, connect to the network physically, but fail to authenticate at the port level. The switch, doing its job correctly, either blocks the device or assigns it to a restricted guest VLAN. Now, let us go deeper into the technical mechanics. The Wired AutoConfig service, known internally as dot3svc, is the Windows component responsible for managing 802.1X on Ethernet interfaces. It reads from a stored XML profile to know how to initiate the authentication handshake with the network switch. This profile defines everything: the EAP method, whether that is PEAP with MSCHAPv2 or EAP-TLS with certificates, the trusted certificate authorities, and how the client should identify itself. When the upgrade process runs, it can reset this service's configuration or delete the profile entirely. Without the profile, dot3svc has no instructions. It cannot start the authentication process, and the switch port remains closed. To diagnose this on a specific machine, you do not need complex tooling. Open a command prompt with administrator privileges and run: netsh lan show profiles. If the output is empty or the expected profile is missing, you have confirmed the root cause. You can also open the Windows Event Viewer and navigate to Applications and Services Logs, then Microsoft, then Windows, then Wired-AutoConfig, and finally the Operational log. You will find explicit error events logged at the time of each failed connection attempt. These events will tell you precisely what went wrong, whether it is a missing profile, a certificate trust failure, or a service dependency issue. Now, let us talk about the three primary remediation paths. The right choice for your organisation depends on your management infrastructure. The first and most robust option for traditional, on-premises environments is Group Policy. If your devices are domain-joined, you can create a Wired Network IEEE 802.3 Policy under Computer Configuration, Policies, Windows Settings, Security Settings. Within this policy, you define the 802.1X settings: the EAP type, the authentication method, and the certificate trust configuration. Once this GPO is linked to the appropriate Organisational Units and applied to the affected machines, the correct settings will be enforced and re-applied automatically, even if a future upgrade attempts to remove them. The key pitfall to watch for here is GPO filtering. Ensure your security filtering and WMI filters are correctly configured so the policy actually reaches the target machines. A common mistake is creating the policy but not verifying its application scope. The second option, and the best practice for modern, cloud-managed environments, is Microsoft Intune. If your devices are Azure AD joined or hybrid joined and managed via Intune, you should create a Configuration Profile using the Wired Network template for Windows 10 and later. The most efficient way to populate this profile is to first export the working XML from a correctly configured machine using the command: netsh lan export profile folder equals dot interface equals Ethernet. This gives you the raw XML that defines the 802.1X settings. You can then import this XML directly into the Intune profile. Assign the profile to a device group containing your affected machines, and Intune will push the configuration down. This is a highly scalable approach, particularly for distributed organisations like retail chains or hotel groups with hundreds of sites. The third option is the manual fix, which is appropriate for urgent, one-off situations. On a machine that is working correctly, export the profile with netsh lan export. Transfer the resulting XML file to the broken machine via USB or a network share that is accessible from the guest VLAN. Then, on the broken machine, run: netsh lan add profile filename equals your profile dot xml interface equals Ethernet. This immediately restores the authentication settings. The device should authenticate successfully on the next connection attempt. This is a fast, effective fix for a single user, but it is not scalable. If you find yourself doing this repeatedly, it is a strong signal that you need to implement a centrally managed policy. Let us now cover best practices for preventing this issue in the future. The most important principle is this: never rely on a manual configuration surviving an in-place OS upgrade. Treat your 802.1X profile as a policy that must be enforced from a central authority, not as a static setting on each device. This single mindset shift will save your team significant time and effort. Practically, this means ensuring your 802.1X configuration is part of your standard device build. Whether you use MDT, SCCM, or Windows Autopilot, the network profile should be deployed as part of the provisioning process. It should also be enforced by a persistent policy, either GPO or Intune, so that even if the local configuration is removed, it is automatically restored. For organisations managing large-scale upgrade deployments, consider adding pre-flight and post-flight steps to your upgrade task sequences. Before the upgrade runs, a script can back up the current 802.1X profile to a network location. After the upgrade completes, a verification step can check whether the profile is present and, if not, restore it from the backup. This belt-and-braces approach provides an additional safety net. From a compliance perspective, this issue has direct implications for PCI DSS and ISO 27001. PCI DSS requirement 1.2.1 mandates that traffic between the cardholder data environment and other networks is restricted. 802.1X is a key control for enforcing this segmentation. If devices lose their 802.1X configuration and fall onto an unsegmented network, you may be in breach of this requirement. Ensuring your 802.1X settings are centrally managed and resilient to upgrades is therefore not just an operational concern; it is a compliance imperative. Now, a few rapid-fire questions that come up frequently in client conversations. Does this affect Wi-Fi as well? Yes, the same issue can affect wireless profiles, though the wired issue has been more consistently reported. The troubleshooting approach is analogous, using netsh wlan commands instead of netsh lan. Is this tied to a specific hardware vendor? No. This is a Windows software and configuration management issue. It affects devices from all major manufacturers. Can I prevent the profile from being deleted during the upgrade? If you are using a managed upgrade process via SCCM or Intune, you can add post-upgrade remediation steps. For unmanaged upgrades, the best mitigation is to have a policy in place that re-applies the configuration automatically after the upgrade completes. What if the profile is present but authentication is still failing? In this case, the issue may be with the certificate chain. After an upgrade, the machine certificate or the trusted root certificate authority may have been affected. Check the machine's certificate store and verify that the RADIUS server's root certificate is present and trusted. To summarise the key points from today's briefing. Windows 11 in-place upgrades can silently remove the XML profiles used by the Wired AutoConfig service, causing 802.1X authentication failures. The immediate diagnostic steps are to run netsh lan show profiles and check the Wired-AutoConfig operational log in Event Viewer. The three remediation paths are Group Policy for domain-joined devices, Microsoft Intune for cloud-managed devices, and manual netsh profile import for urgent, one-off fixes. The long-term solution is to enforce 802.1X settings via a centrally managed policy, treating it as a persistent configuration rather than a static setting. This is also a compliance concern for PCI DSS and ISO 27001 environments. Your action item for this week is straightforward. Audit your current 802.1X management approach. If your settings are manually configured on endpoints without a central enforcement policy, that is a risk you need to address before your next upgrade cycle. Build the Intune profile or the GPO, test it on a pilot group, and deploy it. The investment is minimal. The risk mitigation is significant. Thank you for joining the Purple Technical Briefing. For more resources on enterprise network management and WiFi intelligence, visit purple dot ai.

header_image.png

Executive Summary

The transition to Windows 11, while delivering meaningful security and productivity enhancements, has introduced a critical operational issue for enterprise network environments: the silent erasure of 802.1X wired authentication configurations during in-place upgrades. For IT managers, network architects, and CTOs overseeing large device estates in hotels, retail chains, stadiums, conference centres, and public-sector organisations, this translates directly into lost productivity, elevated support costs, and potential compliance exposure. The root cause is the corruption or complete removal of essential XML configuration profiles for the Wired AutoConfig service (dot3svc), leaving devices unable to perform port-based network access control as defined by IEEE 802.1X. This guide provides an authoritative, step-by-step methodology to diagnose, restore, and prevent this issue. We cover the technical underpinnings of the failure, the three primary remediation paths — Group Policy, Microsoft Intune, and manual XML profile importation — and a framework for building resilience into future OS deployment cycles. We also analyse the business impact and ROI of a proactive 802.1X management strategy, with reference to PCI DSS, ISO 27001, and GDPR compliance obligations.

Technical Deep-Dive

The core of the issue lies in how the Windows 11 in-place upgrade process handles network configuration profiles. The Wired AutoConfig service (dot3svc) is the Windows service responsible for managing IEEE 802.1X authentication on Ethernet interfaces. When a machine connects to a switch port, this service reads from a stored XML profile to initiate the authentication handshake, using protocols such as EAP-TLS or PEAP-MSCHAPv2. The upgrade process — particularly the feature update cycle from 23H2 to 25H2 — can corrupt this profile or reset the service's dependencies entirely, effectively leaving the device without the necessary configuration to authenticate. The result is that the switch port, configured to enforce 802.1X, denies access, often defaulting the device to a restricted guest VLAN or blocking traffic completely.

This is not a driver issue or a hardware compatibility problem. It is a loss of the specific configuration profile that dictates the authentication method, server trust, and client identity. The distinction matters because it changes the troubleshooting approach entirely. An administrator can verify the issue by running netsh lan show profiles from an elevated command prompt. If the expected profile is absent, the root cause is confirmed. For deeper analysis, the Windows Event Viewer provides explicit diagnostic data under Applications and Services Logs > Microsoft > Windows > Wired-AutoConfig > Operational, where authentication failures are logged with specific error codes and descriptions.

8021x_flow_diagram.png

The authentication flow itself follows the standard 802.1X model. The Windows device acts as the supplicant, initiating an EAPOL (EAP over LAN) start message to the switch. The switch, acting as the authenticator, forwards the request to a central RADIUS server (such as Microsoft NPS or Cisco ISE). The RADIUS server validates the credentials — whether a certificate, username and password, or machine identity — and returns an Access-Accept or Access-Reject response. The switch then opens or closes the port accordingly. When the XML profile is missing, the supplicant never initiates this handshake, and the port remains in an unauthorised state.

Implementation Guide

Resolving the 802.1X authentication failure post-upgrade involves three primary methods, selected based on the organisation's management infrastructure.

Method 1: Group Policy (GPO) Remediation. For domain-joined devices in a traditional Active Directory environment, the most scalable solution is to enforce the 802.1X settings via GPO. Navigate to Computer Configuration > Policies > Windows Settings > Security Settings > Wired Network (IEEE 802.3) Policies. Create a new policy, specifying the EAP type — for example, Microsoft: Protected EAP (PEAP) — and configure its properties, including trusted root certification authorities and the inner authentication method (e.g., EAP-MSCHAP v2). This policy will automatically re-apply the correct settings to all targeted machines upon their next Group Policy refresh cycle, typically within 90 minutes or upon next logon. The critical verification step is to run gpresult /r on a target machine to confirm the policy is being applied correctly.

Method 2: Microsoft Intune Deployment. For modern, cloud-managed endpoints, create a Configuration Profile in the Intune admin centre for Windows 10 and later, selecting the Wired network template. The most efficient approach is to first export the working 802.1X profile from a correctly configured reference machine using netsh lan export profile folder=. interface="Ethernet". This generates an XML file that can be imported directly into the Intune profile's EAP XML field. Assign the profile to the relevant Azure AD device group. Intune will push the configuration on the next device sync, restoring the authentication settings without any manual intervention on the endpoint.

Method 3: Manual XML Profile Import. For standalone devices or urgent, one-off remediation, the configuration can be restored manually. On a functional machine, export the working 802.1X profile: netsh lan export profile folder=C:\temp interface="Ethernet". Transfer the resulting XML file to the affected machine and import it: netsh lan add profile filename="C:\temp\YourProfile.xml" interface="Ethernet". Reconnect the network cable to trigger the authentication process. This method provides an immediate fix but is not scalable and should be treated as a tactical measure only.

Best Practices

To proactively manage and mitigate the risk of 802.1X configuration loss, IT teams should adopt a multi-layered strategy grounded in configuration management best practices.

Incorporate 802.1X Configuration into the Standard Build. Whether using MDT, SCCM, or Windows Autopilot, the baseline image or provisioning process must include the deployment of the wired network profile. This establishes the correct state from initial provisioning, reducing the surface area for upgrade-related failures.

Leverage Centralised Management for Enforcement. Do not rely on manually configured endpoints. Use GPOs or Intune profiles as the single source of truth for network settings. This ensures that even if an upgrade removes the local configuration, it is automatically restored on the next policy refresh cycle. This aligns with ITIL configuration management principles and ISO 27001 Annex A control A.12.1.2 (Change Management).

Implement Pre-flight and Post-flight Checks in Upgrade Task Sequences. Before initiating a major OS upgrade via SCCM or MDT, include a script step to export and back up the current 802.1X profile to a network share. The post-upgrade phase of the task sequence should include a verification step that checks for the profile's presence and, if absent, restores it from the backup. This belt-and-braces approach provides a safety net independent of the central management policy.

Maintain a Version-Controlled Profile Repository. Keep a centralised, version-controlled repository of master 802.1X XML profiles for different sites, security tiers, and network environments. This is invaluable for rapid disaster recovery and ensures consistency across the estate, a key requirement for PCI DSS compliance and GDPR data security obligations.

Troubleshooting & Risk Mitigation

When an endpoint fails to connect after a Windows 11 upgrade, the troubleshooting process should be systematic and evidence-driven.

Step 1 — Verify the Physical Layer. Confirm the Ethernet cable is connected and the switch port is active. Check the NIC link lights.

Step 2 — Check IP Configuration. Run ipconfig /all. Determine whether the device is receiving an IP address from the expected VLAN. An APIPA address (169.254.x.x) indicates a complete failure to obtain an IP, suggesting the port is fully blocked. An IP from an unexpected subnet may indicate the device has been placed in a guest VLAN due to authentication failure.

Step 3 — Inspect the 802.1X Profile. Run netsh lan show profiles. If the expected profile is absent, the upgrade has removed it. If it is present but authentication is still failing, the profile may be corrupt or the certificate chain may be broken.

Step 4 — Analyse Event Logs. Open Event Viewer and navigate to Applications and Services Logs > Microsoft > Windows > Wired-AutoConfig > Operational. Look for error events at the time of the connection attempt. These logs provide explicit failure reasons, such as "The identity of the authentication server could not be verified" (indicating a certificate trust issue) or "The EAP authentication failed" (indicating a credential or method mismatch).

Step 5 — Restore the Configuration. Based on the diagnosis, apply the appropriate remediation method: GPO, Intune, or manual XML import.

troubleshooting_steps_infographic.png

From a risk mitigation perspective, the key is automation and enforcement. A manually configured 802.1X profile is a single point of failure. A centrally enforced policy is a self-healing control. The operational risk of relying on manual configurations is compounded in large estates where hundreds of devices may be upgraded simultaneously. A single GPO or Intune profile, correctly configured and tested, eliminates this risk at scale.

ROI & Business Impact

The business impact of widespread connectivity loss following a Windows 11 upgrade can be severe, ranging from lost staff productivity to direct revenue loss in environments where network access is operationally critical. The ROI of implementing a centralised 802.1X management strategy is measured across three dimensions: reduced support costs, mitigated compliance risk, and improved operational resilience.

Support Cost Reduction. Consider a 1,000-device enterprise estate where 15% of devices lose connectivity after an overnight upgrade cycle. Each incident requires 30 minutes of IT support time to resolve manually. At a loaded cost of £60 per hour for a Level 2 technician, this single event costs the organisation £4,500 in reactive support. By contrast, creating and deploying a GPO or Intune profile requires approximately 4 hours of architect time (£240). The ROI is realised in full during the first avoided incident, with every subsequent upgrade cycle delivering the same saving.

Compliance Risk Mitigation. PCI DSS Requirement 1.2.1 mandates restricting traffic between the cardholder data environment and other networks. 802.1X is a primary control for enforcing this network segmentation. If devices lose their authentication configuration and fall onto an unsegmented network, the organisation may be in breach of this requirement, exposing it to fines, audit findings, and reputational damage. A centralised, resilient 802.1X management strategy directly mitigates this risk. Similarly, GDPR Article 32 requires appropriate technical measures to ensure network security; a self-healing authentication policy is a demonstrable control.

Operational Resilience. For venue operators — hotels, conference centres, stadiums — network connectivity is directly tied to revenue-generating operations. A hotel's property management system, a conference centre's AV infrastructure, and a stadium's ticketing and point-of-sale systems all depend on reliable, authenticated network access. The cost of downtime in these environments far exceeds the cost of implementing a robust management strategy. Proactive 802.1X management is, in this context, a direct investment in operational continuity.

Key Terms & Definitions

IEEE 802.1X

An IEEE standard for Port-Based Network Access Control (PNAC). It provides an authentication mechanism to devices wishing to attach to a LAN or WLAN, ensuring that only authorised devices can access network resources.

When IT teams need to prevent unauthorised devices from connecting to wired or wireless networks, they implement 802.1X. It is the primary gatekeeper for corporate network access and is a key control for PCI DSS network segmentation requirements.

Wired AutoConfig (dot3svc)

The Microsoft Windows service responsible for performing IEEE 802.1X authentication on Ethernet interfaces. It reads from a stored XML profile to initiate and manage the authentication handshake with the network switch.

This is the specific service that is disrupted during the Windows 11 upgrade. If this service is not running or its XML profile is missing, wired 802.1X authentication will fail silently. It is the primary focus of troubleshooting for this issue.

EAP (Extensible Authentication Protocol)

An authentication framework that provides a common set of functions and a negotiation mechanism for authentication methods, known as EAP methods. It is used within 802.1X to define how clients and servers exchange credentials.

When configuring 802.1X, IT teams must choose an EAP method. The choice determines the security level and infrastructure requirements: EAP-TLS requires a certificate infrastructure (PKI), while PEAP-MSCHAPv2 uses username and password credentials.

PEAP-MSCHAPv2

Protected Extensible Authentication Protocol with Microsoft Challenge-Handshake Authentication Protocol version 2. A widely deployed EAP method that creates a TLS tunnel to protect the authentication exchange and then authenticates the client using a username and password.

This is one of the most common authentication methods for 802.1X in enterprise environments. It is simpler to deploy than certificate-based EAP-TLS as it does not require client certificates. The Windows 11 upgrade issue affects all EAP types, including PEAP-MSCHAPv2.

RADIUS (Remote Authentication Dial-In User Service)

A networking protocol that provides centralised Authentication, Authorisation, and Accounting (AAA) management for users and devices connecting to a network. In an 802.1X deployment, the network switch forwards authentication requests to the RADIUS server.

The RADIUS server is the central authority that validates credentials and grants or denies access. Common implementations include Microsoft NPS (Network Policy Server) and Cisco ISE. When the 802.1X profile is missing, the RADIUS server is never even contacted.

Group Policy (GPO)

A feature of Microsoft Windows that provides centralised management and configuration of operating systems, applications, and user settings in an Active Directory environment.

For on-premises, domain-joined Windows devices, GPOs are the standard method for deploying and enforcing security settings, including 802.1X configurations. A correctly configured Wired Network GPO will re-apply the 802.1X profile even if an upgrade removes it locally.

Microsoft Intune

A Microsoft cloud-based unified endpoint management (UEM) platform for managing mobile devices, desktop operating systems, and applications.

For modern, cloud-managed, or hybrid Azure AD-joined environments, Intune is the preferred method for deploying 802.1X profiles. It replaces the need for traditional GPOs and is essential for managing distributed, modern device estates.

VLAN (Virtual Local Area Network)

A logical overlay network that groups together a set of devices from different physical LAN segments, creating an isolated broadcast domain independent of physical location.

802.1X is frequently used to dynamically assign devices to specific VLANs based on their authenticated identity. When the 802.1X configuration is wiped, this dynamic assignment fails, and the device may be placed in a restricted guest VLAN or denied access entirely, which is the symptom most commonly reported by end users.

EAPOL (EAP over LAN)

An encapsulation protocol defined in IEEE 802.1X that carries EAP messages over an IEEE 802 network, such as Ethernet or Wi-Fi.

EAPOL is the mechanism by which the supplicant (the Windows device) initiates the 802.1X authentication process with the switch. The first message sent is an EAPOL-Start frame. When the dot3svc XML profile is missing, this initial frame is never sent.

Case Studies

A multi-site retail chain with 500 stores is preparing to upgrade its POS terminals and back-office PCs to Windows 11. Each store uses 802.1X with PEAP-MSCHAPv2 to secure wired access and segment payment processing traffic from general corporate traffic, as required by PCI DSS. How can the IT Director prevent mass connectivity outages during the phased rollout?

The IT Director should leverage Microsoft Intune for centralised management across the distributed estate. Step 1: Create a Master Configuration Profile. On a reference Windows 11 device, manually configure and test the 802.1X settings for a store environment. Export this configuration to an XML file using netsh lan export profile folder=C:\temp interface="Ethernet". Step 2: Build an Intune Profile. In the Intune admin centre, create a new Configuration Profile for Windows 10 and later, using the 'Wired network' template. Import the XML file from Step 1 into the EAP XML field of this profile. Step 3: Define Dynamic Device Groups. Create Azure AD dynamic device groups that automatically populate based on device properties, such as a naming convention specific to POS terminals (e.g., devices with names matching 'POS-*'). This enables targeted, role-based policy application. Step 4: Phased Deployment. Assign the Intune profile to a pilot group of non-critical back-office devices in a single region first. Monitor their upgrade process and connectivity status via Intune's endpoint analytics and device compliance reports. Once validated over a 48-hour observation window, expand the assignment to POS terminals and then to the broader estate in a region-by-region rollout. This ensures that even if the upgrade process removes the local profile, Intune will enforce its re-application on the next sync, guaranteeing seamless connectivity and maintaining PCI DSS network segmentation controls.

Implementation Notes: This solution is robust because it uses a modern, cloud-native management tool that is well-suited for distributed, multi-site environments. It moves away from manual, per-device configuration to a declarative, policy-based model — a fundamental shift in operational posture. The use of dynamic groups and phased rollouts are industry best practices for risk mitigation, allowing the IT team to contain any unforeseen issues before they impact the entire estate. The explicit linkage to PCI DSS compliance demonstrates an understanding of the business context beyond the purely technical. An alternative for a company with a heavy on-premises footprint would be to use Group Policy via SCCM, but Intune is the superior choice for a geographically distributed estate where devices may not consistently connect to the corporate domain.

A large conference centre hosts multiple concurrent events, each requiring a secure, isolated network for organisers and exhibitors. The on-site IT team uses dynamic VLAN assignment via 802.1X based on user credentials managed in Microsoft NPS. After a Windows 11 feature update deployed overnight, an event organiser's laptop can no longer access the organiser network or the shared file server. The event begins in two hours. How should the on-site technician resolve this?

For an immediate, tactical fix in a time-sensitive business environment, the technician should use the manual XML profile import method. Step 1: Obtain a Working Profile. The technician should use their own correctly configured laptop or a reference device to export the 802.1X profile for the organiser network. Command: netsh lan export profile folder=C:\temp interface="Ethernet". This creates an XML file containing the full authentication configuration. Step 2: Transfer the Profile. The XML file should be transferred to the organiser's laptop via a USB drive, as the organiser's device currently has no access to network shares. Step 3: Import the Profile. On the organiser's laptop, open an administrative Command Prompt and run: netsh lan add profile filename="C:\temp\Wired_Organiser_Profile.xml" interface="Ethernet". Step 4: Verify Connectivity. Disconnect and reconnect the Ethernet cable to trigger the 802.1X authentication process. The device should authenticate successfully and be placed in the correct VLAN, restoring access to the file server. Step 5: Document and Escalate. The technician must document this one-off fix in the IT service management system and raise a change request for the central IT architecture team to deploy a permanent Intune or GPO-based solution, preventing recurrence for other users and future events.

Implementation Notes: This approach correctly prioritises speed to resolution in a time-critical, revenue-impacting situation. While not a scalable, long-term solution, the manual profile import is the fastest guaranteed method to restore service for a single user without requiring network access. The critical final step — documentation and escalation — is what distinguishes a mature IT service management process from a reactive one. It ensures that the tactical fix contributes intelligence toward a strategic solution, preventing the team from being caught in a cycle of repetitive manual interventions. The escalation path also demonstrates an understanding that individual incidents are symptoms of a systemic configuration management gap.

Scenario Analysis

Q1. You are the CTO of a large hotel group with 3,000 staff devices across 45 properties. A scheduled overnight Windows 11 feature update has been deployed to all devices. The following morning, your helpdesk receives 200 tickets reporting that back-office PCs cannot access the property management system or internal file shares. All devices are domain-joined and managed via SCCM. What is your immediate response plan and your long-term remediation strategy?

💡 Hint:Consider both the immediate operational impact — getting the hotel properties functional — and the root cause, which is a systemic configuration management gap. Your response must address both.

Show Recommended Approach

Immediate response: Declare a P1 incident and convene a bridge call with the network architecture and endpoint management teams. The priority is to identify the fastest path to restoring connectivity at scale. Given that devices are domain-joined and managed via SCCM, the fastest scalable fix is to create a Wired Network GPO immediately, deploying the correct 802.1X settings to all affected OUs. Force a Group Policy update on affected machines remotely using Invoke-GPUpdate via SCCM. For properties where this does not resolve the issue quickly enough, dispatch IT staff with USB drives containing the XML profile for manual import on the most critical devices (e.g., front desk and revenue management PCs). Long-term strategy: Conduct a post-incident review to understand why the 802.1X settings were not already enforced via GPO. Build the Wired Network GPO as a permanent, enforced policy. Add a post-upgrade verification step to the SCCM task sequence that checks for the profile's presence and restores it if absent. Document the master XML profiles in a version-controlled repository. Review the change management process to ensure that upgrade deployments include a validation step before full rollout.

Q2. A university campus network uses 802.1X to control access to different network segments for students, faculty, and staff. After the latest Windows 11 feature update, a professor reports they can no longer access the faculty research drive from their office. They can, however, access the public internet. What is the most likely cause, and what single command would you run first on their machine to begin your diagnosis?

💡 Hint:The user has partial connectivity — they can reach the internet but not internal resources. This is a specific pattern that points to a particular type of failure. Think about what controls access to different network segments.

Show Recommended Approach

The most likely cause is that the 802.1X authentication is failing, and the switch port is defaulting the professor's device into a restricted VLAN that has internet access but no access to internal resources such as the faculty research drive. This is a common network design pattern where the 'fail-open' state provides internet access but not internal network access. The Windows 11 update has likely wiped the specific 802.1X profile for the faculty network, so the device is not authenticating and is therefore not being placed in the faculty VLAN. The first command to run on their machine is netsh lan show profiles. If the faculty network profile is absent from the output, the root cause is confirmed. The fix is to restore the profile via the appropriate method — in a university environment, this is likely a GPO or Intune profile, or a manual import as an immediate fix.

Q3. Your organisation is migrating from a traditional on-premises Active Directory environment to a fully cloud-native Azure AD and Intune deployment. Your existing 802.1X settings are currently managed via GPO. A new regional office is being set up with Azure AD-joined devices only. How do you adapt your 802.1X deployment strategy for this new office, and what is the specific step that bridges the gap between your existing GPO configuration and the new Intune-based approach?

💡 Hint:GPOs do not apply to Azure AD-joined devices. You need to replicate the GPO's intent using a different tool. Think about what the GPO contains and how that information can be transferred.

Show Recommended Approach

The existing GPO-based strategy cannot be applied to Azure AD-joined devices, as Group Policy requires a connection to an on-premises domain controller. The correct approach is to replicate the GPO settings in Microsoft Intune. The bridging step is to export the 802.1X XML profile from an existing GPO-managed machine using netsh lan export profile folder=C:\temp interface="Ethernet". This XML file contains the exact same configuration that the GPO was deploying. In Intune, create a new Configuration Profile for Windows 10 and later, select the 'Wired network' template, and import this XML into the EAP XML field. Assign this profile to an Azure AD device group containing the machines in the new regional office. This effectively translates the on-premises GPO logic into a cloud-native Intune policy, ensuring the same level of security and configuration enforcement for the modern-managed devices. This approach also provides a clear migration path: as more sites move to Azure AD-joined devices, the same Intune profile can be extended to them, eventually replacing the GPO entirely.

Key Takeaways

  • Windows 11 in-place upgrades — particularly the 23H2 to 25H2 feature update cycle — can silently wipe the XML configuration profiles used by the Wired AutoConfig (dot3svc) service, causing immediate 802.1X authentication failures on wired networks.
  • The failure manifests as devices being placed on a restricted guest VLAN or having their switch port blocked entirely, resulting in loss of access to internal resources while potentially retaining internet access.
  • Diagnose the issue by running `netsh lan show profiles` (to check for the missing profile) and reviewing the Wired-AutoConfig Operational log in Windows Event Viewer (for explicit error codes).
  • Restore connectivity at scale using a Group Policy Wired Network policy (for domain-joined devices) or a Microsoft Intune Configuration Profile (for Azure AD-joined or hybrid devices), both of which enforce the correct settings persistently.
  • For urgent, one-off fixes, export the working profile from a functional machine (`netsh lan export`) and import it on the affected device (`netsh lan add profile`).
  • Prevent future occurrences by making 802.1X configuration part of the standard device build and enforcing it via a central policy — never rely on manually applied configurations surviving an OS upgrade.
  • This issue has direct compliance implications for PCI DSS (network segmentation) and ISO 27001 (configuration management); a centralised, resilient 802.1X strategy is both an operational and a compliance imperative.