[Solved] Where to get Microsoft-Windows-Security-SPP-Component-SKU-Enterprise-GVLK-Package ?

Discussion in 'Windows 10' started by kal, Aug 28, 2017.

  1. kal

    kal MDL Member

    Aug 18, 2007
    105
    20
    10
    Hi,

    I'm building a custom Windows 10 Enterprise with MSMG Toolkit. I've read in a custom release from @murphy78 the following :
    It seems that he's talking about the following package :
    Microsoft-Windows-Security-SPP-Component-SKU-Enterprise-GVLK-Package~31bf3856ad364e35~amd64~~10.0.15063.0

    I have no idea how to put my hands on this. Any help would be highly appreciated :)
     
  2. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,682
    18,582
    340
    #2 Tito, Aug 29, 2017
    Last edited: Aug 29, 2017
    @kal

    If your source is Techbench/MSDN/VLSC Enterprise ISO, then it's already present in it.
     
  3. kal

    kal MDL Member

    Aug 18, 2007
    105
    20
    10
    Hi tito,

    My source is en_windows_10_enterprise_version_1703_updated_july_2017_x64_dvd_10925376.iso. But it doesn't seem to get installed when I install my custom build. I can find it when I mount my install.wim though :

    Code:
    > DISM /Format:Table /Image:D:\ToolKit-v7.6\Mount\Install /Get-Packages | findstr /c:"GVLK"
    Microsoft-Windows-Security-SPP-Component-SKU-Enterprise-GVLK-Package~31bf3856ad364e35~amd64~~10.0.15063.0 | Installed       | Feature Pack    | 19/03/2017 02:54
    
    The operation completed successfully.
    
    
    But, once windows is installed, it doesn't show up :
    Code:
    PS C:\Users\Admin> Get-AppxPackage | findstr /c:"GVLK"
    PS C:\Users\Admin>
    

    Any idea how to retrieve the package from the iso and force its installation with dism ?
     
  4. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,682
    18,582
    340
    @kal

    You're mixing up two different things - Get-AppxPackage returns the list of the app packages, not the system packages. Use this for online images:
    Code:
    dism /online /get-packages /format:table
    
     
  5. kal

    kal MDL Member

    Aug 18, 2007
    105
    20
    10
    THANK YOU !!!

    Code:
    >dism /online /get-packages /format:table | findstr /c:"GVLK"
    Microsoft-Windows-Security-SPP-Component-SKU-Enterprise-GVLK-Package~31bf3856ad364e35~amd64~~10.0.15063.0 | Installed  | Feature Pack    | 19/03/2017 02:54
    
    I was looking for something that I already had :roflmao: