Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Windows 10 / Converting Windows 10 to Enterprise LTSC Without Losing Data

September 30, 2025

Converting Windows 10 to Enterprise LTSC Without Losing Data

In this article, we will explore how to convert an installed Windows 10 Pro edition to Windows 10 LTSC (Long-Term Servicing Channel). This may be a viable option for receiving security updates after Windows 10 22H2 reaches the End-of-Life in the main servicing channel (October 14, 2025).

From a long-term servicing perspective, the following Windows 10 editions are currently available:

  • Windows 10 Enterprise LTSC 2021 with support until January 12, 2027
  • Windows 10 IoT Enterprise LTSC 2021 — until January 13, 2032
Although the Windows IoT edition is designed for specialized and embedded devices, it can be used on regular computers (provided you can accept the absence of certain OS features).

It is not officially supported to convert an existing installation of Windows 10 Pro, Home, or Enterprise to LTSC. Microsoft’s recommendation in this case is to completely reinstall the operating system on the computer. However, there is a workaround to convert Windows 10 to Enterprise LTSC 2021 without reinstalling the operating system and without losing installed apps and data.

Previously, we showed how to change Windows editions without reinstalling:

DISM /online /Get-CurrentEdition

DISM /online /Get-TargetEditions

However, this method does not allow switching the operating system to the LTSC servicing channel. In this example, it is possible to upgrade the Pro edition to either Windows 10 Enterprise or IoTEnterprise in the GAC channel, but not to the LTSC edition.

DISM /Get-TargetEditions Windows 10

In order to convert your Windows 10 Pro to LTSC, you will require the original installation ISO image en-us_windows_10_iot_enterprise_ltsc_2021_x64_dvd.iso. An ISO image is only available if you have a Microsoft subscription or use ‘alternative’ sources (check the originality of a downloaded Windows ISO image using its file hash/checksum).

Check the Windows version and build number on your computer.

Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion"| select ProductName, DisplayVersion, CurrentBuild

Check Windows version and build with PowerShell

In my case, it is Windows 10 Pro 22H2, which is the latest build in the General Availability Channel (GAC), with the End-of-Life on October 14, 2025.

The Extended Security Updates (ESU) program provides up to three years of security updates for Windows 10 after EoL.

Also, make sure that your system language matches the language of the installation ISO image. The Windows 10 IoT Enterprise LTSC image, for example, is only available in English (en-US).

dism /online /get-intl

dism /online /get-intl - check language

Check that the bitness of the OS (x86 or x64) matches the image.

Get-Ciminstance -Class Win32_OperatingSystem | Format-List OSArchitecture

OSArchitecture

If you mount a Windows 10 LTSC ISO image and run setup.exe, the option to upgrade the system while preserving installed apps and user data will be unavailable (greyed out). You can select either Keep personal files only or Nothing. Close the Windows 10 Setup window.

 'Keep Personal Files and Apps' option greyed out

These restrictions can be bypassed by importing the following data into the registry to simulate the presence of an installed LTSC version. I’ll make changes to the registry from PowerShell:

$regPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion"
Set-ItemProperty -Path $regPath -Name "EditionID" -Value "EnterpriseS"
Set-ItemProperty -Path $regPath -Name "ProductName" -Value "Windows 10 Enterprise LTSC"
Set-ItemProperty -Path $regPath -Name "ReleaseId" -Value "21H2"
Set-ItemProperty -Path $regPath -Name "DisplayVersion" -Value "21H2"
Set-ItemProperty -Path $regPath -Name "CurrentBuild" -Value "19044"
Set-ItemProperty -Path $regPath -Name "CurrentBuildNumber" -Value "19044"

apply ltsc registry keys

Quickly run the setup.exe file from the ISO image and perform an in-place upgrade. The Keep personal files and apps option will then be available.

change Windows 10 edition with Keep personal files and apps option

When upgrading to a different edition of Windows 10, you will be asked for a product key. Use the following official GVLKs keys for the LTSC edition, available on https://learn.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys?tabs=windows1110ltsc%2Cwindows81%2Cserver2025%2Cversion1803

  • For Windows 10 Enterprise LTSC 2021 — M7XTQ-FN8P6-TTKYV-9D4CC-J462D
  • For Windows 10 IoT Enterprise LTSC 2021 — QPM6N-7J2WJ-P88HH-P3YRH-YY74H

use LTSC Enterprise GVLK product key

Wait for the Windows 10 in-place upgrade to LTSC to finish (this may take a few hours).

Switch Windows 10 to LTSC

Once the upgrade is complete, check that the version has changed to Windows 10 Enterprise LTSC with a build based on 21H2.

winver

winver - Windows 10 Enterprise LTSC 21H2

Once you have changed the edition, check the Windows activation status. As you can see, this Windows instance is not activated. Error code 0x800704CF indicates that a valid license could not be found.

You can activate Windows with an officially purchased LTSC key. In addition, the LTSC supports KMS activation (including via a KMS server on Linux). The LTSC IoT edition of Windows doesn’t support KMS activation. Digital activation using the HWID is the only option supported (this activation option can be used in the MAS activation script).

Windows LTSC Activation failed with 0x800704CF

There is also another way to convert your existing Windows 10 Pro/Home/Enterprise installation to IoT Enterprise LTSC edition without reinstalling.

  1. Mount the Windows 10 LTSC install image from LTSC
  2. Open a command prompt as an administrator
  3. Run: mkdir c:\mnt
  4. Mount the ‘install.wim’ image from the installation media to the newly created folder (replace ‘D:’ with the drive letter assigned to your image): dism /Mount-Wim /WimFile:D:\sources\install.wim /index:2 /ReadOnly /MountDir:c:\mnt
  5. Copy files from the image:
    xcopy c:\mnt\Windows\system32\spp\tokens\skus\IoTEnterpriseS c:\windows\system32\spp\tokens\skus\IoTEnterpriseS /i
  6. Unmount the WIM file:
    dism /Unmount-Wim /MountDir:c:\mnt /Discard dism mount install.wim
  1. Reset the license information:
    cscript c:\windows\system32\slmgr.vbs /rilc License files re-installed successfully.
  2. Install the product key for IoT LTSC: cscript c:\windows\system32\slmgr.vbs /ipk QPM6N-7J2WJ-P88HH-P3YRH-YY74H

Restart the computer and verify that the Windows edition has changed to Windows 10 IoT Enterprise LTSC. This version will receive security updates until January 2032.

Convert Windows 10 to Windows 10 IoT Enterprise LTSC.

As mentioned earlier, it is not possible to activate the IoT Enterprise LTSC using a KMS server.

This product doesn’t support KMS activation.

IoT Enterprise LTSC doesn’t support KMS activation

However, it can be activated using a digital license. For example, I successfully activated the IoT LTSC using the HWID activation option in the MASscript:

irm https://get.activated.win | iex

Activate W10 IoT Enterprise LTSC with HWID digital license

0 comment
0
Facebook Twitter Google + Pinterest
Questions and AnswersWindows 10
previous post
Wrong Network Profile on Windows Server after Reboot

Related Reading

Configuring RemoteApps Hosted on Windows 10/11 (without Windows...

January 25, 2025

Bridging Multiple Network Interfaces on Windows

November 21, 2024

Fix: Windows Update Tab (Button) is Missing from...

December 16, 2024

Check the Software Installation/Removal History in Windows

October 8, 2024

How to Prefer IPv4 over IPv6 in Windows...

April 15, 2025

Change BIOS from Legacy to UEFI without Reinstalling...

April 23, 2025

Restrict the Allowed Logon Time for Local Users...

January 3, 2025

Enable Automatic System Registry Backup on Windows 10/11

January 21, 2025

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • How to Get Windows 10 Extended Security Updates After End-Of-Life

    September 24, 2025
  • Blocking NTLM Connections on Windows 11 and Windows Server 2025

    September 23, 2025
  • Windows Stucks at ‘Getting Windows Ready, Don’t Turn Off Computer’

    September 15, 2025
  • Clean Up ETL Log Files in ProgramData

    September 9, 2025
  • Fix: Slow Startup of PowerShell Console and Scripts

    September 3, 2025
  • DPI Scaling and Font Size in RDP (RDS) Session

    August 27, 2025
  • Proxmox: Share a Host Directory with VMs via VirtioFS

    August 18, 2025
  • How to Find AD Users with Blank Passwords (Password-Not-Required)

    July 24, 2025
  • Run Elevated Commands with Sudo on Windows 11

    July 16, 2025
  • Find a Process Causing High Disk Usage on Windows

    July 15, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Permanently Disable Driver Signature Enforcement on Windows 11
  • Fix: Windows Update Tab (Button) is Missing from Settings
  • Fix: Your IT Administrator Has Limited Access to Virus & Threat Protection
  • How to Add or Reinstall the Microsoft PDF Printer on Windows
  • Fix: Multiple Connections to a Server or Shared Resources by the Same User
  • Wrong Network Profile on Windows Server after Reboot
  • How to Remove ‘Some Settings are Managed by Your Organization’ on Windows 11 or 10
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top