Share via

Looking for correct Windows 11 24H2 Features on Demand ISO (RSAT FoD – Part 1)

AlanGlenister 0 Reputation points
2026-03-19T14:40:53.79+00:00

Hi all,

I’m trying to deploy RSAT tools reliably in my organisation (Windows 11 24H2, Enterprise build 26100), and I need the correct Features on Demand (FoD) ISO for this version in order to build a local FoD repository for Add-WindowsCapability.

However, the ISOs available to us via the M365 Admin Centre only contain Language Packs / LIPs / Local Experience Packs (the ISO we have is called SW_DVD9_Win_11_24H2_25H2_x64_MultiLang_LangPackAll_LIP_LoF_X23-69888.iso).

The RSAT FoD packages I need usually called something like:

  • Microsoft-Windows-ActiveDirectory-DS-LDS-Tools-FoD-Package
  • Microsoft-Windows-GroupPolicy-Management-Tools-FoD-Package
  • Microsoft-Windows-DNS-Tools-FoD-Package
  • Microsoft-Windows-DHCP-Tools-FoD-Package
  • Microsoft-Windows-ServerManager-Tools-FoD-Package
  • Microsoft-Windows-FileServices-Tools-FoD-Package

From what I understand, these RSAT FoD CABs are included only in:

Windows 11 24H2 – Features on Demand – Part 1 (Usually named something like: SW_DVD9_Win_11_24H2_64Bit_MultiLang_FoD_Part1_<X23-XXXXX>.iso)

My question:

Does anyone know the exact filename or location (VLSC / Visual Studio / other licensing portal) where the official Windows 11 24H2 FoD Part 1 ISO can be downloaded?

Or if anyone already has access to that ISO, can you confirm the precise title it’s listed under so I can request it correctly from our licensing team?

Any help appreciated — the namespace similarities between LangPack and FoD ISOs are making this surprisingly difficult to navigate.

Thanks, Alan

Windows for business | Windows Client for IT Pros | Devices and deployment | Install Windows updates, features, or roles
0 comments No comments

3 answers

Sort by: Most helpful
  1. Tracy Le 5,295 Reputation points Independent Advisor
    2026-03-20T14:43:17.46+00:00

    Hi AlanGlenister,

    Brilliant troubleshooting! You hit the nail on the head: you are running into the exact nuance of how 24H2 resolves capabilities from local sources.

    Your folder structure is completely fine. The problem is that the Add-WindowsCapability engine in 24H2 has a nasty habit of failing to parse the new combined LoF metadata correctly when pointed to a local drive. This is especially true if your base OS language (like your en-GB) differs from the default en-US mappings it tries to resolve first. The engine gets confused, gives up, and falsely claims the CABs are missing even though you are staring right at them.

    Here is the bulletproof bypass: Stop relying on the buggy capability resolver, and forcefully inject the CAB files directly into the OS using DISM.

    As you correctly deduced, you need both the language-neutral package (~~) and the language-specific satellite package (~en-GB~).

    Run this exact command in an elevated Command Prompt or PowerShell to bypass the capability engine entirely:

    DISM.exe /Online /Add-Package /PackagePath:"C:\AHG\FoD\Microsoft-Windows-ActiveDirectory-DS-LDS-Tools-FoD-Package~31bf3856ad364e35~amd64~~.cab" /PackagePath:"C:\AHG\FoD\Microsoft-Windows-ActiveDirectory-DS-LDS-Tools-FoD-Package~31bf3856ad364e35~amd64~en-GB~.cab"
    

    (Note: Just double-check the exact filenames in your C:\AHG\FoD folder to ensure the architecture amd64 and the hash string 31bf3856ad364e35 match what you actually have).

    This direct injection method forces Windows to unpack and install the features without querying the broken FoD metadata structure. Give this a try and let me know if it finally gets those AD tools installed for you!

    If this helps you bypass the 24H2 FoD headache, please consider clicking "Accept Answer". It will definitely save other admins from pulling their hair out over this exact same bug!

    Tracy.

    0 comments No comments

  2. AlanGlenister 0 Reputation points
    2026-03-20T12:52:33.58+00:00

    Hi Tracy,

    Thanks again for the guidance — I’ve followed your suggestion and mounted the ISO, then pointed the install to the LanguagesAndOptionalFeatures folder.

    I ran the following:

    Add-WindowsCapability -Online ` -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 ` -Source "C:\AHG\FoD" ` -LimitAccess
    

    The command errors relating to the source (iso) did not contain the required cabs. I checked the capability state afterwards:

    Get-WindowsCapability -Name RSAT.ActiveDirectory* -Online
    Name         : Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0
    State        : NotPresent
    DisplayName  : RSAT: Active Directory Domain Services and Lightweight Directory Services Tools
    Description  : Active Directory Domain Services (AD DS) and Active Directory Lightweight Directory Services (AD LDS) Tools include snap-ins and command-line tools for remotely managing AD DS and AD LDS on Windows Server.
    DownloadSize : 0
    InstallSize  : 11251054
    

    So at the moment it doesn’t appear that the capability has actually installed.

    From what I can see in the source folder, I do have the language-specific CABs (e.g. ~en-GB~), but I’m still not certain whether the required language-neutral packages (~~) are present or being picked up correctly by the install process.

    It’s possible I’m either:

    • Missing part of the expected FoD structure

    Or hitting a nuance with how 24H2 resolves capabilities from a local source

    I’ll keep digging, but if there’s anything specific to 24H2 (or this combined LoF ISO) in terms of folder structure or prerequisites that I might be overlooking, I’d really appreciate the steer.

    Thanks again for your help.

    Kind regards,

    Alan

    0 comments No comments

  3. Tracy Le 5,295 Reputation points Independent Advisor
    2026-03-19T15:21:54.8033333+00:00

    Hi AlanGlenister,

    I have great news for you: you already have the exact ISO you need! There is no need to request a new download from your licensing team.

    Starting with Windows 11 24H2, Microsoft fundamentally changed how they package these components. They merged the Language Packs, Local Experience Packs (LIPs), and Features on Demand (FODs) into one massive, unified image. There is no longer a standalone "FOD Part 1" ISO for this build.

    If you look closely at the filename of the ISO you already downloaded (SW_DVD9_Win_11_24H2_25H2_x64_MultiLang_LangPackAll_LIP_LoF_X23-69888.iso), that "LoF" acronym near the end literally stands for Languages and Optional Features.

    What you need to do:

    Mount that exact ISO you currently have.

    1. Open the mounted drive and look for a root folder named LanguagesAndOptionalFeatures.
    2. Open that folder, and you will find all the Microsoft-Windows-ActiveDirectory-DS-LDS-Tools-FoD-Package*.cab files (along with the rest of the RSAT CABs) sitting right there.

    You can point your Add-WindowsCapability -Source command directly to that LanguagesAndOptionalFeatures folder to build your local repository and successfully deploy your RSAT tools.

    If this saves you from navigating the licensing portal maze and resolves your deployment roadblock, please consider clicking "Accept Answer". This will help other IT admins who are getting tricked by the new 24H2 naming conventions find this solution faster!

    Tracy.

    For a visual walkthrough of the process, check out this guide on installing RSAT tools on Windows 11 24H2. This video demonstrates the deployment steps and explains the installation mechanics for the updated OS build.

    https://www.youtube.com/watch?v=KQNV1yWqMZY


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.