Reinstall Windows Feature Experience Pack

Discussion in 'Windows 11' started by vali20, Aug 7, 2021.

  1. vali20

    vali20 MDL Member

    Aug 8, 2012
    123
    60
    10
    Hi
    Does anyone know how to reinstall the feature experience pack from 22000.120? I uninstalled it just to see how it went using DISM and now I don't know how to get it back.
    Thanks.
     
  2. PolidelticusFire

    PolidelticusFire MDL Addicted

    May 7, 2020
    958
    370
    30
    It's easier to just reinstall the build.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. kaljukass

    kaljukass MDL Guru

    Nov 26, 2012
    3,396
    1,322
    120
    Do you mean this package?
    Code:
    Package Identity : Microsoft-Windows-UserExperience-Desktop-Package~31bf3856ad364e35~amd64~~10.0.22000.120
    You can get a list of all installed packages by using this DISM command:
    Code:
    DISM /online /get-packages
    If you were able to remove with the DISM command, you should also be able to add/install again with the DISM command.
    It may be something similar, but I'm not fully sure, it was used on Windows server
    Code:
    dism /online /add-package /packagepath:"Microsoft-Windows-PACKAGE~amd64~~6.3.9600.16384" /source:install.wim
    Maybe somebody knows better and can recommend fully correct command.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. vali20

    vali20 MDL Member

    Aug 8, 2012
    123
    60
    10
    Thanks, something along these lines did work indeed.