1. marianoblesa

    marianoblesa MDL Novice

    Apr 25, 2014
    17
    0
    0
    Hola buenas, se puede actualizar de la version "ToolKit_v8.8" a la versio "ToolKit_v12.1" DIRECTAMENTE o hay que ir una a una.

    Ejemplo 1: ToolKit_v8.8, ToolKit_v8.9, ToolKit_v9.0, ToolKit_v9.2, ToolKit_v9.3 etc
    o
    Ejemplo 2: ToolKit_v8.8, ToolKit_v12.1 (SERIA ASI CORRECTO)
     
  2. shyamsundarsoni

    shyamsundarsoni MDL Novice

    Jan 15, 2012
    16
    13
    0
    @MSMG, Thanks for reply & kind support, I am currently using your Toolkit for Windows Server 2022, I am correcting only those lines of code which are executed for 20348 only.

    Please note that, your script only works successfully when Target Edition for Upgrade operation is Datacenter only, but as in my case, "Standard Evaluation" can be upgraded to "Standard Desktop" & "Datacenter Evaluation" can be upgraded to "Datacenter Desktop", so the same can be achieved by my changes, hence I mentioned it earlier.

    Also for ^ character, note that, we are just assigned to a variable, & trying to set it as a property of Wim file. i.e. as we are not echoing it using echo chars hence ^ character should be removed otherwise it will becoming as a part of Image Index Name
     
  3. eXeToR

    eXeToR MDL Novice

    Jan 10, 2012
    7
    4
    0
    Puedes actualizar directamente, extrae la versión nueva. Es como si hicieras una instalación nueva y limpia. - You can upgrade it directly, extract the new version. It should be like a new installation.
    La próxima vez pregunta en inglés. - Next time ask in English.


    Un saludo - Greetings
     
  4. marianoblesa

    marianoblesa MDL Novice

    Apr 25, 2014
    17
    0
    0
    Thanks
     
  5. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    8,326
    11,611
    270
    @MSMG this morning was working with version 12.1 of MSMG Toolkit then after some operations appeared this warning (see image below) this never happened before what I did wrong? Thank you again for collaboration Thank you :tankyou:
     

    Attached Files:

    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Ok, I have updated the script to support converting Windows Server 20348 Evaluation version editions.
     
  7. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Windows 10 Enterprise LTSB/LTSC won't contain any apps and so the command shows no package entries.
     
  8. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    The error is due to the mount folder being used by any other programs or make sure the image registry hive is not left mounted.
     
  9. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    349
    486
    10
    #22349 graver.x, Mar 27, 2022
    Last edited: Mar 27, 2022
  10. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Yes I did forgot to replay to your message, last time when I added support for Windows 11 PSX format, it was working, will check again with the WHD updates integration.

    In Windows 11, the Settings Sync is either removed or merged with some other component need to find out.
     
  11. RafhaCorreia

    RafhaCorreia MDL Novice

    Aug 14, 2015
    16
    4
    0
    Is there any rule of integrating Directx9c? The process completes successfully, however when I test the virtual image it is not installed in the control panel.
    I downloaded DirectX9c from various sources and it still does the same thing. My .iso I made by uup dump Win10 Pro 21h2
     
  12. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #22352 inTerActionVRI, Mar 27, 2022
    Last edited: Mar 27, 2022
    Examples:
    Code:
    set "Name=Windows Server 2012 R2 Datacenter ^(Server Core Installation^)"
    set "Description=This option ^(recommended^) reduces management and servicing by installing only what is needed to run most server roles and applications. It does not include a GUI, but you can fully manage the server locally or remotely with Windows PowerShell or other tools. You can switch to a different installation option later. See \"Windows Server Installation Options.\""
    set "DisplayName=Windows Server 2022 Datacenter ^(Desktop Experience^)"
    set "DisplayDescription=This option ^(recommended^) reduces management and servicing by installing only what is needed to run most server roles and applications. It does not include a GUI, but you can fully manage the server locally or remotely with Windows PowerShell or other tools. For more details see \"Windows Server Installation Options.\""
    

    Changes:
    Code:
    rem set "Name=%Name:^=%"
    rem set "DisplayName=%DisplayName:^=%"
    rem set "Description=%Description:^=%"
    rem set "DisplayDescription=%DisplayDescription:^=%"
    
    for %%# in (
       Name
       DisplayName
       Description
       DisplayDescription
    ) do (
       set "%%#=!%%#:^=!"
    )
    
    %WimLibImagex% info "%InstallWim%" %ImageIndexNo% "%Name%" "%Description%" --image-property DISPLAYNAME="%DisplayName%" --image-property DISPLAYDESCRIPTION="%DisplayDescription%" --image-property FLAGS="%Flag%" >nul
    
    This will replace the ^ characters with nothing. That is, it will remove them. But only at the time of application to the image.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. brz.2k2

    brz.2k2 MDL Novice

    Jul 24, 2015
    11
    6
    0
    @marianoblessa,
    Remember to backup your "RemovePkgs/AppList.txt" and "Enable/DisableFeaturesLists.txt" (if personalized) or they'll be replaced by empty ones.
     
  14. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    349
    486
    10
    The problem has been observed since build 22000.376 (KB5008215)
    Also, windows10.0-kb5008215-x64.msu could not be integrated using WHD.
     
  15. Knives*

    Knives* MDL Member

    Sep 21, 2013
    239
    142
    10
    Hey MSMG, after years of downloading updates of your tool for the sake of archiving, I finally used it with the video instructions you provided by CyberCPU Tech.

    It works great. Thanks for keeping your project alive for us.
     
  16. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #22356 inTerActionVRI, Mar 30, 2022
    Last edited: Apr 9, 2022
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Supern00b

    Supern00b MDL Addicted

    Dec 30, 2010
    768
    560
    30
    #22357 Supern00b, Mar 30, 2022
    Last edited: Mar 30, 2022
    That's not your fault, in fact you are correct in your observation.
    Directx9c does not get integrated correctly.

    You will encounter issues when installing software that depends on directx9c, let's take for example autocad 2022: It simply won't install at all, errors out on the first 4%.
    This happens because directx9c does not appear to be installed, so the Autocad 2022 installer tries to use it's bundled installer, which fails because directx9c was already integrated.
    As directx9c is a prerequisite for Autocad 2022, the installation cannot proceed.
    Hopefully @MSMG can fix this.

    Cheers.
     
  18. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Lately I have been preparing setupcomplete.cmd to install several essential packages like directx9c, vcruntime++, powershell and others.
    I am avoiding to integrate into the image to avoid these small problems that are only fixable faster by preparing another ISO.

    There is a directx9c package that is shared by abbodi1406.
    Try it to see if it fixes the problem.
    https://forums.mydigitallife.net/th...nd-user-runtime-june-2010.84785/#post-1715945
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. tefor

    tefor MDL Senior Member

    Apr 5, 2017
    317
    240
    10
    I removed all components inside RemovePkgsList_W10_LTSC_2021.txt file
    After installation of windows 10 , i can not open any .txt file
    What should i do to read .txt files ?
    Did i remove a component realted to .txt viewer ?
    Thanks
     
  20. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Notepad is Win32 app.

    NotepadApp is W11 InboxApp

    Do notepad++ download and associate txt files with it.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...