1. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,894
    10,735
    240
    hmm, the way the "things" go the way is to be quiet and use only the W10 LTSC and wait for the next version ...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    783
    629
    30
    It sounds as though the best solution is just to live with the Pending.xml and use the UUP Dump ISO. Will resume testing later today.
     
  3. tefor

    tefor MDL Senior Member

    Apr 5, 2017
    317
    240
    10
    Version 11 gives pending .xml error while integrating latest CU for LTSC 2019 although i did not enable .netfx35
    I made the same experiment with previous version 10.9 , it did not give pending .xml error
     
  4. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    382
    161
    10
    #17844 zero cool root, Dec 18, 2020
    Last edited: Dec 18, 2020
    @MSMG

    It would be possible to remove the items below using the RemovePkgsList.txt..??

    OneConnect
    MPEG2VideoExtension

    These items are not in the Template file

    Thanks in Advance..!!
     
  5. spidernz

    spidernz MDL Senior Member

    May 20, 2011
    390
    114
    10
    No for 20H2 i had to move the folders from x64\10.0.19041 to x64\
    for the toolkit to detect

    now when i try use 2004 it can't detect in either place.
    get this error:

    Code:
    ===============================================================================
                       MSMG ToolKit - Integrate WHD General Updates
                    to Windows Setup Boot, Install & Recovery Images
    ===============================================================================
    
    WHD General Updates folder <WHD\w10\x64\Cumulative> is empty...
    
    Please copy WHD General Updates to respective folder...
    
    ===============================================================================
    
    Press any key to continue . . .
     
  6. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    The only change made to WHD Updates integration was to use separate folders for each Windows 10 version
    and to use updated Feature Enablement Pack for v20H1.

    Will check to see if anything else is writing pending.xml.

    Can you post the steps you followed, features added or components removed?

     
  7. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Microsoft has removed OneConnect starting with Windows 10 v2004 .

    MPEG2VideoExtension is not available with any of the retail or MSDN Windows 10 images, it's only available to OEM partners.

     
  8. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    #17848 MSMG, Dec 18, 2020
    Last edited: Dec 18, 2020
    (OP)
    For v1903 and v1909 the <\WHD\w10\10.0.18362\x64> is used and for v2004 and v20H2 the <\WHD\w10\
    10.0.19041\x64> is used for integration.

    The code to assign this path has been added in the script

    Code:
    :: Settings WHD Baseline Updates folder path
    if "%SelectedSourceOS%" equ "w81" set "Updates=%WHD%\%SelectedSourceOS%\%ImageArchitecture%\Baseline"
    if "%SelectedSourceOS%" equ "w10" (
        if "%ImageBuild%" neq "18363" if "%ImageBuild%" neq "19042" set "Updates=%WHD%\%SelectedSourceOS%\%ImageArchitecture%\%ImageBuild%"
        if "%ImageBuild%" equ "18363" set "Updates=%WHD%\%SelectedSourceOS%\%ImageArchitecture%\10.0.18362"
        if "%ImageBuild%" equ "19042" set "Updates=%WHD%\%SelectedSourceOS%\%ImageArchitecture%\10.0.19041"
    )
    
    But when checking for the update files the error message didn't show the correct path, which has been fixed now.

    Code:
    :: Windows 10
    if "%SelectedSourceOS%" equ "w10" if not exist "%Updates%\Cumulative\*.msu" if not exist "%Updates%\Cumulative\*.cab" (
        if "%ImageBuild%" neq "18363" if "%ImageBuild%" neq "19042" echo.WHD General Updates folder ^<WHD\w10\%ImageArchitecture%\%ImageBuild%\Cumulative^> is empty...
        if "%ImageBuild%" equ "18363" echo.WHD General Updates folder ^<WHD\w10\%ImageArchitecture%\10.0.18362\Cumulative^> is empty...
        if "%ImageBuild%" equ "19042" echo.WHD General Updates folder ^<WHD\w10\%ImageArchitecture%\10.0.19041\Cumulative^> is empty...
        echo.
        echo.Please copy WHD General Updates to respective folder...
        goto :Stop
    )
    
    The Toolkit checks only for the Cumulative update as other updates are optional.


    Code:
    ===============================================================================
      MSMG ToolKit - Integrate WHD General Updates to Windows Setup Install Image
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ##################Starting Integrating WHD General Updates#####################
    ######################to Windows Setup Install Image###########################
    -------------------------------------------------------------------------------
    
        Image                    : Install.wim
        Image Index              : 1
        Image Architecture       : x64
        Image Version            : 10.0.19042.685.0
    
    -------------------------------------------------------------------------------
    ####Processing WHD General Updates Packages####################################
    -------------------------------------------------------------------------------
    
    Creating WHD General Updates Temporary folder...
    
    Extracting .CAB Package files to Temporary folder...
    
    Finished Extracting .CAB Package files to Temporary folder...
    
    -------------------------------------------------------------------------------
    ####Integrating WHD General Updates to Windows Setup Install Image#############
    -------------------------------------------------------------------------------
    
    ===========================[Install.wim, Index : 1]============================
    
    -------------------------------------------------------------------------------
    Integrating Windows 10 Cumulative Update to Install Image...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.20279.1
    
    Image Version: 10.0.19042.685
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~19041.685.1.6
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Generating WHD General Updates Integration Log File...
    -------------------------------------------------------------------------------
    
    Writing WHD General Updates Integration Log.
    
    -------------------------------------------------------------------------------
    ####Cleaning Up Temporary files & Folders######################################
    -------------------------------------------------------------------------------
    
    Cleaning Up WHD General Updates Temporary folder.
    
    -------------------------------------------------------------------------------
    ##################Finished Integrating WHD General Updates#####################
    ######################to Windows Setup Install Image###########################
    -------------------------------------------------------------------------------
    
    ===============================================================================
    
    Press any key to continue . . .
    
    

     
  9. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    382
    161
    10
  10. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Updated the DaRT Pack for Windows 10 v2004/20H2 with newer Debug Tools.
     
  11. Igor147

    Igor147 MDL Member

    Oct 20, 2016
    144
    67
    10
    Doesn't work on working Windows?
    2020-12-19_130651.png
    On working Windows, you need to change the path like this?
    2020-12-19_131053.png

     
  12. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    #17854 MSMG, Dec 19, 2020
    Last edited: Dec 19, 2020
    (OP)
    I gave the reg entries for offline image, You need to change the registry paths for live systems.

     
  13. myvircandy

    myvircandy MDL Novice

    Jun 17, 2018
    23
    4
    0
    My source image is 19042.508, I removed some components, integrated NET3.5 and KB4592438, and encountered this error during the virtual machine installation.Could you take a look at it for me?
    ”Windows could not configure one or more system components. To install Windows, restart the computer and then restart the installation."
     
  14. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Did you integrate the KB4592438 update before or after the component removal?

    Do post the steps followed to know what might have gone.

     
  15. spidernz

    spidernz MDL Senior Member

    May 20, 2011
    390
    114
    10
    #17857 spidernz, Dec 19, 2020
    Last edited: Dec 19, 2020
    Can you upload the updated script please.


    Ugh unpacked zip to start fresh and having same issues again :/
    I've also tried reinstalling windows fresh and same issue
    Also tried c drive

    I've put WHD updates in
    x64\10.0.19041 and x64\ to cover bases but still can't detect

    I'm using en-GB, anyone else having this issue?

    It detects fine if I use the Non-WHD integration path.
    but WHD path always brings this error
     
  16. spidernz

    spidernz MDL Senior Member

    May 20, 2011
    390
    114
    10
    Also @MSMG

    I noticed you've added Wordpad to Toolkitapp remover
    But notepad wasn't. (I tired by putting it in the list as well but it showed up, while wordpad didn't as you see.)

    Any chance of having notepad added?
    And are these others accessories also already in?

    here's the current list i''m using
    Code:
    3DViewer
    AADBrokerPlugin
    AdobeFlashForWindows
    AdvertisingXaml
    Alarms
    AssignedAccess
    AssignedAccessLockApp
    BingWeather
    BioEnrollment
    Calculator
    Camera
    CBSPreview
    CEIP_SQM
    CommunicationsApps
    ContentDeliveryManager
    Cortana
    DesktopAppInstaller
    DeviceLockdown
    EaseOfAccessThemes
    ECApp
    Edge
    EdgeDevToolsClient
    FaceRecognition
    FeedbackHub
    FileExplorer
    FirstLogonAnimation
    GameExplorer
    GetHelp
    Getstarted
    HEIFImageExtension
    HomeGroup
    InternetExplorer
    KernelDebugging
    LockApp
    MapControl
    Maps
    Messaging
    NarratorQuickStart
    OfficeHub
    OfficeOneNote
    OneConnect
    OneDrive
    Paint
    Paint3D
    ParentalControls
    People
    PeopleExperienceHost
    Photos
    PicturePassword
    PinEnrollment
    PPIProjection
    Print3D
    QuickAssist
    RemoteAssistance
    RetailDemoContent
    ScreenSketch
    SecureAssessmentBrowser
    SecurityCenter
    SettingSync
    SkypeApp
    SkypeORTC
    SmartScreen
    SnippingTool
    SolitaireCollection
    SoundRecorder
    SpeechRecognition
    StickyNotes
    SystemRestore
    UnifiedTelemetryClient
    VP9VideoExtensions
    WalletService
    WebMediaExtensions
    WebpImageExtensions
    WiFiNetworkManager
    Win32WebViewHost
    WindowsDefender
    WindowsErrorReporting
    WindowsInsiderHub
    WindowsMediaPlayer
    WindowsPhotoViewer
    WindowsReaderPDF
    WindowsSubsystemForLinux
    WindowsToGo
    WinSAT
    YourPhone
    ZuneMusic
    ZuneVideo
    Wordpad
    Notepad
     

    Attached Files:

  17. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
  18. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Have added the script to upload queue, do check back in the download link.