How to Get Windows 11 26H1: What It Is, Who It's For, and How to Install It
WindowsBeginner

How to Get Windows 11 26H1: What It Is, Who It's For, and How to Install It

Windows 11 26H1 (released February 10, 2026, Build 28000) is a specialized ARM64-only release designed exclusively for new devices with Qualcomm Snapdragon X2 and Nvidia N1X processors — not a standard update for existing PCs. This guide explains what 26H1 is, who it’s for, how to manually install it, and what existing PC users should do instead (wait for Windows 11 26H2).

Emanuel DE ALMEIDAEmanuel DE ALMEIDA
March 11, 20268 min read9 Steps

What You Need

  • ARM64 device with Qualcomm Snapdragon X2 or Nvidia N1X processor
  • 8 GB USB drive (minimum) for bootable media
  • Active internet connection for download
  • Backup of all important data
  • Rufus (for USB creation) or Media Creation Tool

What Is Windows 11 26H1? The Key Facts

Windows 11 version 26H1 was released on February 10, 2026 (Build 28000, codenamed Bromine platform). Unlike previous annual Windows 11 feature updates, 26H1 is not a universal update for existing PCs. It is a specialized platform release designed exclusively for new devices with ARM64 processors — specifically:

  • Qualcomm Snapdragon X2 (Plus, Elite, Extreme variants)
  • Nvidia N1X processors

Microsoft confirmed that 26H1 is built on a different Windows core (Bromine) than Windows 11 24H2 and 25H2, which are based on the Germanium platform. Existing PC users will not receive 26H1 as an update via Windows Update. The annual feature update for existing hardware will be Windows 11 26H2, expected in the second half of 2026.

Important: If you are on a standard x64 Intel or AMD PC, you do not need to install 26H1. Your next feature update will be 26H2.

What’s New in Windows 11 26H1?

Windows 11 26H1 introduces a range of AI-focused features and ARM64 platform improvements, many of which are exclusive to Copilot+ certified devices:

  • Deeper Copilot integration: Copilot moves beyond a standalone app with an in-taskbar “Ask Copilot” composer and an in-File Explorer AI chat surface
  • Click to Do (redesigned): Context-aware AI actions on selected text and images — Summarize, Share, Edit, and more — processed locally on Copilot+ hardware
  • AI Agent in Settings: Natural language OS configuration directly from the Settings app
  • Windows Search improvements: Faster, natural-language file and app search across the local system on Copilot+ devices
  • Full Screen Experience (FSE): Console-style Xbox-first shell for handheld gaming PCs with controller-focused navigation
  • File Explorer refinements: Hover quick-actions on Home, improved dark mode in dialogs, new OneDrive status icons
  • Quick Machine Recovery (QMR) enhancements: One-time scan behavior and clearer recovery guidance
  • New camera options via Windows Studio Effects and improved brightness controls on all-in-one PCs
  • ARM64 performance optimizations: Reduced stuttering on high-resolution displays, improved monitor mode queries, better Explorer.exe reliability at login

Who Should Install Windows 11 26H1?

Windows 11 26H1 is intended for two scenarios:

  1. New device buyers: If you purchase a new PC with a Snapdragon X2 or Nvidia N1X processor in 2026, it will come pre-installed with Windows 11 26H1.
  2. Advanced users: If you want to manually install 26H1 on compatible ARM64 hardware using the ISO, this is technically possible but discouraged by Microsoft for existing devices.

Devices running 26H1 cannot upgrade to Windows 11 26H2 via the standard update path. Microsoft has confirmed a separate future update path will be provided for 26H1 devices.

How to Check if Your PC Can Run Windows 11 26H1

To verify your processor architecture, run this command in PowerShell:

Get-WmiObject Win32_Processor | Select-Object Name, Architecture, AddressWidth

Architecture value 12 indicates ARM64. Values 0 (x86) or 9 (x64) mean your PC is Intel/AMD and is not compatible with 26H1.

Alternatively, check via Settings:

  1. Open Settings > System > About
  2. Under Device specifications, check System type
  3. If it shows “64-bit operating system, ARM-based processor”, your device may be compatible

To check the current Windows version and build:

winver

26H1 devices will show Version 26H1 (OS Build 28000.xxxx).

How to Manually Install Windows 11 26H1 via ISO (Advanced Users)

Microsoft has made the 26H1 ISO available online, though its use on existing devices is discouraged. The process applies only to ARM64 hardware.

Step 1: Download the ISO
Visit microsoft.com/software-download/windows11arm64 and download the Windows 11 ARM64 ISO. The file is approximately 6.2 GB.

Step 2: Verify file integrity
Check the SHA-256 hash of the downloaded ISO against the value listed on Microsoft’s download page:

Get-FileHash -Path "C:\Downloads\Windows11ARM64.iso" -Algorithm SHA256

Step 3: Create bootable USB (ARM64 compatible)
Use Rufus to create a bootable USB. Note: for ARM64 devices, ensure Rufus is configured for GPT/UEFI and ARM64 architecture:

winget install Rufus.Rufus

Launch Rufus, select your USB drive (minimum 8 GB), load the ARM64 ISO, set partition scheme to GPT, and click START.

Step 4: Back up your data before proceeding

robocopy C:\Users\%USERNAME%\Documents D:\Backup\Documents /E /R:3 /W:10
robocopy C:\Users\%USERNAME%\Desktop D:\Backup\Desktop /E /R:3 /W:10

Step 5: Boot from USB and install
Restart your ARM64 device, enter BIOS/UEFI (typically F2, F12, or Delete), set the USB as the first boot device, and follow the Windows Setup wizard. Choose “Custom: Install Windows only” for a clean installation.

Step 6: Complete OOBE setup
After installation, configure region, keyboard layout, Wi-Fi, Microsoft account, and privacy settings. Enable Copilot+ features and check for the latest updates:

Install-Module PSWindowsUpdate -Force
Get-WindowsUpdate -Install -AcceptAll -AutoReboot

What Should Existing Intel/AMD PC Users Do?

If you’re on a standard x64 PC running Windows 11 24H2 or 25H2:

  • Do not try to install 26H1: It is incompatible with x86/x64 hardware and will not install via Windows Update
  • Wait for Windows 11 26H2: Microsoft has confirmed the 2026 annual feature update for existing PCs, expected in fall 2026
  • Keep applying monthly security updates: Versions 24H2 and 25H2 continue receiving full security and quality updates
  • Ensure Secure Boot certificates are updated: Microsoft is deploying new 2023 Secure Boot certificates ahead of the June 2026 expiration of the original 2011 certificates via monthly updates

Troubleshooting Windows 11 26H1 Installation Issues

If you encounter issues during installation on ARM64 hardware:

  • Activation failure: Run slmgr /ato or use the Activation Troubleshooter in Settings > System > Activation
  • Driver compatibility: ARM64 requires ARM-native drivers. Check device manufacturer for updated ARM64 driver packages
  • Installation stuck: Run sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth before retrying
  • Explorer.exe hanging at first login: Addressed in KB5077239 (Build 28000.1643). Ensure you’ve applied all updates after installation
  • Brightness control issues: Also fixed in KB5077239 for all-in-one PCs

Step-by-Step Guide

1
Step 1 / 9

Check System Compatibility and Requirements

Before downloading Windows 11 26H1, verify your system meets the updated requirements. Microsoft has refined the hardware requirements for this release.

Get-ComputerInfo | Select-Object WindowsProductName, WindowsVersion, TotalPhysicalMemory

Run the PC Health Check app to verify compatibility:

winget install Microsoft.PCHealthCheck

Launch PC Health Check and click 'Check now' to verify TPM 2.0, Secure Boot, and CPU compatibility.

Pro tip: Windows 11 26H1 requires newer Intel 8th gen or AMD Ryzen 2000 series processors minimum. Check Microsoft's updated compatibility list if you're unsure.

Verification: The PC Health Check tool will display a green checkmark if your system is compatible, or specific error messages for any missing requirements.

2
Step 2 / 9

Download Windows 11 26H1 Installation Media

Microsoft provides multiple download options for Windows 11 26H1. The Media Creation Tool is the most reliable method for most users.

Visit the official Windows 11 download page and download the Media Creation Tool:

curl -L -o MediaCreationToolW11.exe https://go.microsoft.com/fwlink/?linkid=2156295

Alternatively, download the ISO directly if you prefer manual control:

  1. Go to microsoft.com/software-download/windows11
  2. Select 'Download Windows 11 Disk Image (ISO)'
  3. Choose 'Windows 11 (multi-edition ISO)'
  4. Select your language and click 'Confirm'
  5. Choose 64-bit download
Warning: Only download Windows 11 from official Microsoft sources. Third-party ISO files may contain malware or modified system files.

Verification: The downloaded Media Creation Tool should be approximately 19MB, and the ISO file should be around 6.2GB for Windows 11 26H1.

3
Step 3 / 9

Create Installation Media (USB or DVD)

Create bootable installation media using the Media Creation Tool. You'll need a USB drive with at least 8GB capacity.

Run the Media Creation Tool as administrator:

MediaCreationToolW11.exe

Follow these steps in the tool:

  1. Accept the license terms
  2. Select 'Create installation media (USB flash drive, DVD, or ISO file)'
  3. Choose language, edition, and architecture (64-bit)
  4. Select 'USB flash drive' and choose your drive
  5. Wait for the download and creation process (30-60 minutes)

If you downloaded the ISO manually, create bootable media using Rufus:

winget install Rufus.Rufus

Launch Rufus, select your USB drive, choose the Windows 11 26H1 ISO, and click 'START'.

Pro tip: Use a USB 3.0 drive for faster installation. Label your USB drive clearly as 'Windows 11 26H1' to avoid confusion with other installation media.

Verification: Your USB drive should show as 'ESD-USB' or similar, containing folders like 'boot', 'efi', 'sources', and 'support'.

4
Step 4 / 9

Backup Important Data and Create System Recovery

Before proceeding with installation, create comprehensive backups. Windows 11 26H1 installation can preserve files, but it's always safer to backup manually.

Create a system restore point:

Enable-ComputerRestore -Drive "C:"
Checkpoint-Computer -Description "Before Windows 11 26H1 Installation" -RestorePointType "MODIFY_SETTINGS"

Backup your important files using robocopy:

robocopy C:\Users\%USERNAME%\Documents D:\Backup\Documents /E /R:3 /W:10
robocopy C:\Users\%USERNAME%\Desktop D:\Backup\Desktop /E /R:3 /W:10
robocopy C:\Users\%USERNAME%\Pictures D:\Backup\Pictures /E /R:3 /W:10

Export your installed programs list:

Get-WmiObject -Class Win32_Product | Select-Object Name, Version | Export-Csv -Path "C:\Backup\installed_programs.csv" -NoTypeInformation

Create a recovery drive:

recoverydrive
Warning: The upgrade process can take 2-4 hours and may fail if interrupted. Ensure your laptop is plugged in and your desktop has stable power.

Verification: Check that your backup folders contain the expected files and that the recovery drive creation completed successfully.

5
Step 5 / 9

Choose Installation Method (In-Place Upgrade vs Clean Install)

Windows 11 26H1 can be installed via in-place upgrade (preserving files and programs) or clean installation (fresh start). Choose based on your needs.

Method 1: In-Place Upgrade (Recommended for most users)

Mount the ISO file or insert your USB drive, then run setup from within Windows:

D:\setup.exe /auto upgrade /quiet /compat scanonly

This command performs a compatibility scan first. If successful, run the actual upgrade:

D:\setup.exe /auto upgrade

Method 2: Clean Installation

Boot from your installation media by changing boot priority in BIOS/UEFI:

  1. Restart your computer
  2. Press F2, F12, or Delete (varies by manufacturer) to enter BIOS
  3. Navigate to Boot settings
  4. Set USB drive as first boot device
  5. Save and exit
Installation MethodProsCons
In-Place UpgradePreserves files, settings, programsMay carry over system issues
Clean InstallFresh start, optimal performanceRequires reinstalling programs

Verification: For upgrade, Windows Setup will show compatibility results. For clean install, you should see the Windows logo and installation options.

6
Step 6 / 9

Execute the Windows 11 26H1 Installation Process

The installation process varies slightly depending on your chosen method. Here's what to expect and how to handle each phase.

For In-Place Upgrade:

The Windows 11 Setup will guide you through several phases:

  1. Compatibility Check: Windows verifies system requirements
  2. Download Phase: Additional files are downloaded (if needed)
  3. Installation Phase: System files are updated and configured
  4. Restart Phase: Multiple automatic restarts occur
  5. Configuration Phase: Final setup and user account configuration

Monitor the installation progress and don't interrupt the process. The system will restart multiple times automatically.

For Clean Installation:

Boot from your installation media and follow these steps:

  1. Select language, time, and keyboard preferences
  2. Click 'Install now'
  3. Enter your Windows 11 product key (or skip if upgrading from activated Windows 10/11)
  4. Accept license terms
  5. Choose 'Custom: Install Windows only (advanced)'
  6. Select the drive/partition for installation
  7. Wait for file copying and installation (45-90 minutes)
Pro tip: During clean installation, delete all existing partitions on your target drive to ensure optimal partition alignment and performance.

Verification: The installation is progressing correctly if you see percentage completion and the system restarts automatically without errors.

7
Step 7 / 9

Complete Initial Windows 11 26H1 Setup and Configuration

After installation completes, Windows 11 26H1 will guide you through the Out-of-Box Experience (OOBE). This is where you configure your new system.

Initial Setup Steps:

  1. Region and Language: Confirm your location and preferred language
  2. Keyboard Layout: Select your keyboard configuration
  3. Network Connection: Connect to Wi-Fi or Ethernet
  4. Microsoft Account: Sign in or create a Microsoft account (or choose domain join for business)
  5. Privacy Settings: Configure telemetry and privacy options
  6. Copilot+ Setup: Configure the enhanced AI assistant features in 26H1

For domain-joined systems, use these commands after initial setup:

Add-Computer -DomainName "yourdomain.com" -Credential (Get-Credential) -Restart

Configure Windows Update to ensure you get the latest patches:

Install-Module PSWindowsUpdate -Force
Get-WindowsUpdate -Install -AcceptAll -AutoReboot
Pro tip: Windows 11 26H1 introduces enhanced privacy controls. Take time to review each privacy setting rather than accepting defaults.

Verification: Check Windows version to confirm successful installation:

winver

You should see 'Version 26H1 (OS Build 26100.xxx or higher)'.

8
Step 8 / 9

Install Essential Drivers and Updates

After Windows 11 26H1 installation, install the latest drivers and updates to ensure optimal performance and compatibility.

Check for Windows Updates first:

Get-WindowsUpdate -Install -AcceptAll

Install essential drivers using Windows Update or manufacturer tools:

pnputil /scan-devices
pnputil /enum-drivers

For NVIDIA graphics cards:

winget install Nvidia.GeForceExperience

For AMD graphics cards:

winget install AMD.AMDSoftwareAdrenalinEdition

For Intel systems, install Intel Driver & Support Assistant:

winget install Intel.IntelDriverAndSupportAssistant

Verify all critical drivers are installed:

Get-WmiObject Win32_PnPEntity | Where-Object{$_.ConfigManagerErrorCode -ne 0} | Select Name, ConfigManagerErrorCode
Warning: Some older peripherals may not have Windows 11 26H1 compatible drivers. Check manufacturer websites before upgrading if you rely on specialized hardware.

Verification: Device Manager should show no devices with yellow warning triangles, and Windows Update should report 'You're up to date'.

9
Step 9 / 9

Verify Installation and Test New Features

Confirm your Windows 11 26H1 installation is working correctly and explore the new features introduced in this version.

Run system diagnostics to verify installation integrity:

sfc /scannow
Dism /Online /Cleanup-Image /RestoreHealth

Check system performance and stability:

Get-ComputerInfo | Select-Object WindowsProductName, WindowsVersion, TotalPhysicalMemory, CsProcessors

Test key Windows 11 26H1 features:

  • Enhanced Copilot+: Press Win+C to access the improved AI assistant
  • New Start Menu: Verify the redesigned Start menu with better search
  • Improved Snap Layouts: Test Win+Z for enhanced window management
  • Enhanced Security: Check Windows Security for new threat protection features

Verify system activation:

slmgr /xpr

Run Windows Memory Diagnostic to ensure system stability:

mdsched
Pro tip: Windows 11 26H1 includes improved power management. Check Settings > System > Power to configure the new efficiency modes for better battery life on laptops.

Verification: All system checks should pass without errors, and new features should be accessible through their respective shortcuts or Settings app.

Frequently Asked Questions

Can I install Windows 11 26H1 on unsupported hardware?
While technically possible using registry modifications or third-party tools, installing Windows 11 26H1 on unsupported hardware is not recommended. Microsoft requires TPM 2.0, Secure Boot, and specific CPU generations for security and performance reasons. Unsupported installations may not receive security updates and could experience stability issues.
Will installing Windows 11 26H1 delete my files and programs?
An in-place upgrade preserves your personal files, installed programs, and most settings. However, some programs may need reinstallation or updates for compatibility. A clean installation will remove everything, requiring you to restore files from backup and reinstall all programs. Always backup important data before any major Windows installation.
How much storage space does Windows 11 26H1 require?
Windows 11 26H1 requires a minimum of 64GB storage space, but Microsoft recommends at least 128GB for optimal performance. The actual installation uses approximately 20-25GB, but you need additional space for updates, temporary files, and the installation process itself. Consider having at least 50GB free space before starting installation.
Can I downgrade from Windows 11 26H1 back to Windows 10?
You can downgrade to your previous Windows version within 10 days of installation using Settings > Update & Security > Recovery. After 10 days, Windows automatically removes the previous installation files to free space. For downgrades after this period, you'll need to perform a clean installation of Windows 10 and restore your data from backup.
What's new in Windows 11 26H1 compared to previous versions?
Windows 11 26H1 introduces enhanced Copilot+ AI integration, improved Start menu search, better snap layouts, advanced security features, and optimized power management. The update also includes performance improvements for gaming, enhanced Microsoft Teams integration, and new productivity features. The AI assistant now provides more contextual help and system optimization suggestions.

About the Author

Emanuel DE ALMEIDA

Emanuel DE ALMEIDA

Senior IT Journalist & Cloud Architect

Microsoft MCSA-certified Cloud Architect | Fortinet-focused. I modernize cloud, hybrid & on-prem infrastructure for reliability, security, performance and cost control - sharing field-tested ops & troubleshooting.

Last updated March 11, 2026

Discussion

Share your thoughts and insights

You must be logged in to comment.

Loading comments...