[Guide by Xinso] Adding Gui to Server Core - 1.22v

Discussion in 'Windows Server' started by LiteOS, Dec 25, 2017.

  1. truongpro

    truongpro MDL Novice

    Aug 2, 2016
    23
    3
    0
    1. LiteOS how to install Microsoft-Windows-Client-Features-Package on server ???? i getting Error: 5
      Processing 1 of 1 - Access denied to Microsoft-Windows-Client-Features-WOW64-Package??? The specified package is not a type that can be modified.

      Error: 5

      Access is denied.

      The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
      and is it need for install HidTelephonyDriver.inf ???
     
  2. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,343
    1,048
    90
    #202 LiteOS, Feb 24, 2018
    Last edited: Feb 24, 2018
    (OP)
  3. sebus

    sebus MDL Guru

    Jul 23, 2008
    6,384
    2,037
    210
    Just follow ALL instructions from his post
    It works as expected!
     
  4. eddo2018

    eddo2018 MDL Junior Member

    Jan 6, 2018
    68
    31
    0
    I checked the list of the installed packages using

    Microsoft-Windows-Client-Features-Package00~31bf3856ad364e35~amd64~~10.0.16299.15.mum
    Microsoft-Windows-Client-Features-Package01~31bf3856ad364e35~amd64~~10.0.16299.15.mum
    Microsoft-Windows-Client-Features-Package02~31bf3856ad364e35~amd64~~10.0.16299.15.mum

    V.S.

    Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum

    There is no difference


    But in the first case you don't get the audio (and other client things), in the second case you get them.
     
  5. eddo2018

    eddo2018 MDL Junior Member

    Jan 6, 2018
    68
    31
    0
    That driver is not present even in a freshly deployed W10, likely you got it from WU or from a third party package (say skype or whatever).
     
  6. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,343
    1,048
    90
    #206 LiteOS, Feb 24, 2018
    Last edited: Feb 24, 2018
    (OP)
    @eddo2018 @sebus
    can one of u make a list of the packages with installtime
    with

    Install_wim_tweak unhide them all

    and then with powershell

    Code:
    Get-WindowsPackage -Online | sort -Descending InstallTime | ft
    i think the seq make the difference
     
  7. eddo2018

    eddo2018 MDL Junior Member

    Jan 6, 2018
    68
    31
    0
    If you install

    Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum

    As I said, if you install top of a working installation, you'll get the audio, if you install it as the first package, you'll get the audio.

    So I don't think the install sequence matters. Likely the parent folders triggers some kernel policies that aren't triggered by the children ones


    Whatever I suggest you to make copies of your vhdx at various points (or use the Hyper-V checkpoints) so you can test whatever sequence and combination you want w/o having to start over each time
     
  8. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,343
    1,048
    90
    we have to find a better way to reduce the time creating it
     
  9. eddo2018

    eddo2018 MDL Junior Member

    Jan 6, 2018
    68
    31
    0
    Just use a script

    something like this (just an example, assuming the vhd is mounted on D:, the list of packages isn't checked, add/remove/reorder to your likings)

    Seems pretty quick and simple to me.


    Code:
    cd /d "%~dp0"
    
    
    
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum"
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15.mum"
    
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-Features-WOW64-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum"
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-Features-WOW64-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15.mum"
    
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-Drivers-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum"
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-Drivers-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15.mum"
    
    dism /image:d:\  /add-package:"Microsoft-Client-Features-Classic-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum"
    dism /image:d:\  /add-package:"Microsoft-Client-Features-Classic-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15.mum"
    
    
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-ShellLauncher-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum"
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-ShellLauncher-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15.mum"
    
    
    dism /image:d:\  /add-package:"Microsoft-Windows-Desktop-Shared-Drivers-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum"
    dism /image:d:\  /add-package:"Microsoft-Windows-Desktop-Shared-Drivers-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15.mum"
    
    dism /image:d:\  /add-package:"Microsoft-Windows-Embedded-ShellLauncher-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15.mum"
    dism /image:d:\  /add-package:"Microsoft-Windows-Embedded-ShellLauncher-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum"
    
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-EmbeddedExp-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum"
    dism /image:d:\  /add-package:"Microsoft-Windows-Client-EmbeddedExp-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15.mum"
    
    dism /image:d:\  /add-package:"Microsoft-Windows-ShellExperienceHost-Package~31bf3856ad364e35~amd64~~10.0.16299.15.mum"
    dism /image:d:\  /add-package:"Microsoft-Windows-ShellExperienceHost-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15.mum"
    
    dism /image:d:\  /add-package:"WindowsTH-KB2693643-x64.cab"
    dism /image:d:\  /add-package:"microsoft-windows-netfx3-ondemand-package.cab"
    
    
    rem dism /image:d:\  /add-package:""
    
    
     
  10. sebus

    sebus MDL Guru

    Jul 23, 2008
    6,384
    2,037
    210
    #210 sebus, Feb 25, 2018
    Last edited: Feb 25, 2018
    I done the very same way, mount vhdx, run script, unmount, done

    Watched bit of telly while it was doing it (maybe 7 minutes?), then it was done

    sebus
     
  11. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,343
    1,048
    90
    #211 LiteOS, Feb 25, 2018
    Last edited: Feb 25, 2018
    (OP)
    I tested too without eddo method audio wont work

    i think i found shortcut

    no need to copy the whole winsxs
    just copy the manfest/mum/cat files from windows 10 64bit same version
    and dont overwrite the files
    into Microsoft-Windows-Client-Features-*-Package.esd extracted folder

    Complete the rest of the guide of eddo audio will be fine
    GL
     
  12. sebus

    sebus MDL Guru

    Jul 23, 2008
    6,384
    2,037
    210
    #212 sebus, Feb 25, 2018
    Last edited: Feb 25, 2018
    I have done it even without Microsoft-Windows-Desktop-Shared-Drivers-Package~31bf3856ad364e35 and audio is OK (service starts, audio works in Hyper-V Console, but that is RDP connection, otherwise there is no audio device installed, as Hyper-V does not have audio)

    sebus
     
  13. sebus

    sebus MDL Guru

    Jul 23, 2008
    6,384
    2,037
    210
    Code:
    PackageName                                                                                                             PackageState  ReleaseType InstallTime
    -----------                                                                                                             ------------  ----------- -----------
    Microsoft-Windows-LanguageFeatures-TextToSpeech-en-gb-Package~31bf3856ad364e35~amd64~~10.0.16299.15                        Installed OnDemandPack 24/02/2018 08:28:00
    Microsoft-Windows-LanguageFeatures-Basic-en-gb-Package~31bf3856ad364e35~amd64~~10.0.16299.15                               Installed OnDemandPack 24/02/2018 08:28:00
    Microsoft-Windows-LanguageFeatures-OCR-en-gb-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                 Installed OnDemandPack 24/02/2018 08:28:00
    Microsoft-Windows-LanguageFeatures-Speech-en-gb-Package~31bf3856ad364e35~amd64~~10.0.16299.15                              Installed OnDemandPack 24/02/2018 08:28:00
    Microsoft-Windows-Internet-Browser-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                      Installed LanguagePack 24/02/2018 08:04:00
    Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                            Installed OnDemandPack 24/02/2018 08:04:00
    Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.16299.15                                  Installed OnDemandPack 24/02/2018 08:04:00
    Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                       Installed LanguagePack 24/02/2018 08:04:00
    Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-US~11.0.16299.15                             Installed LanguagePack 24/02/2018 08:04:00
    Microsoft-Windows-Internet-Browser-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                           Installed  FeaturePack 24/02/2018 08:04:00
    Microsoft-Windows-Shell-Wallpaper-Common-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                Installed LanguagePack 24/02/2018 08:04:00
    Microsoft-Windows-Shell-Wallpaper-Common-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                     Installed  FeaturePack 24/02/2018 08:04:00
    Microsoft-Windows-RemoteServerAdministrationTools-Client-Package-TopLevel~31bf3856ad364e35~amd64~~10.0.16299.2             Installed       Update 24/02/2018 07:56:00
    Microsoft-Windows-DirectoryServices-DomainController-Tools-ClientRSAT-Package~31bf3856ad364e35~amd64~~10.0.16299.2         Installed  FeaturePack 24/02/2018 07:56:00
    Microsoft-Windows-ServerManager-UX-Package~31bf3856ad364e35~amd64~~10.0.16299.2                                            Installed  FeaturePack 24/02/2018 07:56:00
    Microsoft-Windows-ServerManager-UX-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.2                                       Installed LanguagePack 24/02/2018 07:56:00
    Microsoft-Windows-DirectoryServices-DomainController-Tools-ClientRSAT-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.2    Installed LanguagePack 24/02/2018 07:56:00
    Microsoft-Client-Features-Classic-WOW64-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                 Installed LanguagePack 24/02/2018 07:53:00
    Microsoft-Windows-Enterprise-Desktop-Shared-WOW64-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                       Installed LanguagePack 24/02/2018 07:53:00
    Microsoft-Client-Features-Classic-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                       Installed LanguagePack 24/02/2018 07:53:00
    Microsoft-Client-Features-Classic-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                            Installed  FeaturePack 24/02/2018 07:52:00
    Microsoft-Client-Features-Classic-WOW64-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                      Installed  FeaturePack 24/02/2018 07:52:00
    Microsoft-Windows-ShellExperienceHost-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                   Installed LanguagePack 24/02/2018 07:52:00
    Microsoft-Windows-Enterprise-Desktop-Shared-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                             Installed LanguagePack 24/02/2018 07:52:00
    Microsoft-Windows-Embedded-ShellLauncher-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                     Installed  FeaturePack 24/02/2018 07:52:00
    Microsoft-Windows-Embedded-ShellLauncher-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                Installed LanguagePack 24/02/2018 07:52:00
    Microsoft-Windows-Client-ShellLauncher-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                  Installed LanguagePack 24/02/2018 07:52:00
    Microsoft-Windows-Shell-SoundThemes-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                     Installed LanguagePack 24/02/2018 07:52:00
    Microsoft-Windows-Enterprise-Desktop-Shared-WOW64-Package~31bf3856ad364e35~amd64~~10.0.16299.15                            Installed  FeaturePack 24/02/2018 07:52:00
    Microsoft-Windows-Shell-SoundThemes-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                          Installed  FeaturePack 24/02/2018 07:51:00
    Microsoft-Windows-ShellExperienceHost-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                        Installed  FeaturePack 24/02/2018 07:51:00
    Microsoft-Windows-Client-ShellLauncher-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                       Installed  FeaturePack 24/02/2018 07:51:00
    Microsoft-Windows-Enterprise-Desktop-Shared-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                  Installed  FeaturePack 24/02/2018 07:51:00
    Microsoft-Windows-Client-Features-WOW64-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                 Installed LanguagePack 24/02/2018 07:49:00
    Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                       Installed LanguagePack 24/02/2018 07:48:00
    Microsoft-Windows-Client-Features-WOW64-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                      Installed  FeaturePack 24/02/2018 07:46:00
    Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                            Installed  FeaturePack 24/02/2018 07:43:00
    Microsoft-Windows-Security-SPP-Component-SKU-ServerStandardACor-GVLK-Package~31bf3856ad364e35~amd64~~10.0.16299.15         Installed  FeaturePack 29/09/2017 14:41:00
    Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                 Installed OnDemandPack 29/09/2017 14:40:00
    Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.16299.15                        Installed OnDemandPack 29/09/2017 14:40:00
    Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.16299.15                              Installed OnDemandPack 29/09/2017 14:40:00
    Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.16299.15                          Installed OnDemandPack 29/09/2017 14:40:00
    Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.16299.15                               Installed OnDemandPack 29/09/2017 14:39:00
    Microsoft-Windows-Server-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.15                                   Installed LanguagePack 29/09/2017 14:39:00
    Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.16299.15                         Installed OnDemandPack 29/09/2017 14:39:00
    Microsoft-Windows-ServerCore-SKU-Foundation-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                  Installed  FeaturePack 29/09/2017 12:30:00
    Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                                 Installed   Foundation 29/09/2017 12:30:00
    Microsoft-Windows-ServerCore-Package~31bf3856ad364e35~amd64~~10.0.16299.15                                                 Installed  FeaturePack 29/09/2017 12:30:00
    Microsoft-ActiveDirectory-TRLParser-Package-ds~31bf3856ad364e35~amd64~en-US~10.0.16299.2                                  Superseded LanguagePack 01/01/0001 00:00:00
    Microsoft-ActiveDirectory-TRLParser-Package-ds~31bf3856ad364e35~amd64~~10.0.16299.2                                       Superseded  FeaturePack 01/01/0001 00:00:00
    Microsoft-Windows-ServerManager-UX-ARW-Plugins-Package~31bf3856ad364e35~amd64~en-US~10.0.16299.2                          Superseded LanguagePack 01/01/0001 00:00:00
    Microsoft-Windows-ServerManager-UX-ARW-Plugins-Package~31bf3856ad364e35~amd64~~10.0.16299.2                               Superseded  FeaturePack 01/01/0001 00:00:00
     
  14. sebus

    sebus MDL Guru

    Jul 23, 2008
    6,384
    2,037
    210
    #214 sebus, Feb 25, 2018
    Last edited: Mar 1, 2018
    Edge is installed, but it ONLY CRASHES on anything (definitely does NOT work - most likely other bits)
     
  15. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,343
    1,048
    90
    Its weird it doesnt show the rest of the packages did u unhide them ?
    dont bother i will test it on hyper -v
     
  16. sebus

    sebus MDL Guru

    Jul 23, 2008
    6,384
    2,037
    210
    No, I did not unhive them, sorry!
     
  17. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,343
    1,048
    90
    np

    there no difference between with main package or without
    there no secret package or something
    i guess the main package reconfigure all together
     
  18. truongpro

    truongpro MDL Novice

    Aug 2, 2016
    23
    3
    0
    i getting error
    Processing 1 of 1 - Access denied to Microsoft-Windows-Client-Features-WOW64-Package??? The specified package is not a type that can be modified.

    Error: 5

    Access is denied.

    The DISM log file can be found at C:\Windows\Logs\DISM\dism.log
     
  19. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,343
    1,048
    90
    i updated the topic, mb u missing something
     
  20. sebus

    sebus MDL Guru

    Jul 23, 2008
    6,384
    2,037
    210
    Which means you did NOT extract *.esd OVERWRITING the lot