Enabling Media Features (Windows 11 N)

autotalon

New Member
Hello, I have a Windows 11 N image where I have downloaded the FOD ISO and installed the Media features into the image, but it is checked and says "Disabled" in bold. How do I get it to install?
 
I don't believe you can use the older W10 FOD to install Media Feature Pack on W11 N. They're not compatible builds.

For releases after W10 1903, you have to perform online installs with:
Code:
DISM /Online /Add-Capability /CapabilityName:Media.MediaFeaturePack~~~~0.0.1.0
 
That was my original answer, until I realized the N license key doesn't work for non-N images. For legitimate installs.
 

Is this what was installed?
I use the Win 11 FOD ISO here: https://github.com/MicrosoftDocs/az.../virtual-desktop/windows-11-language-packs.md

It does seem to be installing it properly, just not enabling it. If the tool is not supposed to enable it, that's fine and I can run the command to do so but wanted to make sure that this was intended behavior.

The reason we use N images is that the time to fix my debloat scripting after every feature update is not worth the time and effort to me. Other than enabling media features so webcams work, I havent ran into any other issue with N at all. It activates using existing hardware licensing in the machines. Not sure what licensing you would have that wouldnt work; unless it was Enterprise or N for Workstations which do use different licenses. As far as I've seen, Pro seems to be Pro no matter if it's N or not.
 
I'm familiar with the FOD ISO, which exact package are you integrating? abbodi86 can correct me, but Pro can downgrade to N but not in the other direction, and you didn't originally state which license you had.
 
I'm familiar with the FOD ISO, which exact package are you integrating? abbodi86 can correct me, but Pro can downgrade to N but not in the other direction, and you didn't originally state which license you had.
Oh, yes what I am doing is integrating/enabling the Media Feature pack into the base Pro N wim. In my 22H2 ISO I did it manually with DISM but since I have switched back to NTlite for update slipstreaming as of 23H2, I set it up with the FOD ISO so I can re enable it on any edits going forward. I was just unsure why it did not allow me to enable it.
 
NTLite will allow you to add FOD feature packages, if added as Updates. My question is the 21/22H2 FOD's don't have Media Feature bundled in them, but I believe they were included in older ISO's. So there might be compatibility issues.
 
I tried restoring Microsoft-Windows-Media-Features package to 23H2 Pro N (22631.2428).

1. Searched UUP dump for the right CAB files:
Microsoft-Windows-Media-Features-Package-amd64.cab
Microsoft-Windows-Media-Features-Package-amd64-en-us.cab

2. Integrated CAB files as Updates.
3. Loaded image. Unchecked WMP, since it's not required. Applied changes.

Windows 10 x64-2023-11-20-20-50-09.png

4. Rechecked if Media Feature was really enabled:
Code:
Get-WindowsOptionalFeature -Path 'C:\Users\GARLIN\AppData\Local\Temp\NLTmpMnt\' -FeatureName *Media*

FeatureName      : MediaPlayback
DisplayName      : Media Features
Description      : Controls media features such as Windows Media Player.
RestartRequired  : Possible
State            : Enabled
CustomProperties :

FeatureName      : WindowsMediaPlayer
DisplayName      : Windows Media Player
Description      : Windows Media Player
RestartRequired  : Possible
State            : Disabled
CustomProperties :
                   \SoftBlockLink : http://go.microsoft.com/fwlink?LinkID=140092
 
Installing it as CAB appears to have worked, there must be something mismatched in the FOD ISO then. No worries, appreciate the help!
 
Back
Top