MSMG ToolKit

Discussion in 'MDL Projects and Applications' started by MSMG, Nov 21, 2013.

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,567
    59,634
    450
    Nope, it should be ok to use.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    298
    89
    10
    Ohhhhh, sorry.

    Code:
    Dism /Image:x:\ToolKit_v11.3\Mount\Install\1\ /Cleanup-Image /StartComponentCleanup /ResetBase
    
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,567
    59,634
    450
    /resetbase won't be ran when the regkey is not changed to enable it.

    It will run the command without /resetbase.

    On 1809 this can (most likely will) break the reset pc option (i never run it full resetbase on 1809 myself and am a W10UI user).
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    298
    89
    10
    Wich the command to cleanup WinSxS Folder..??
     
  5. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,567
    59,634
    450
    With resetbase (and if it's enabled in registry) it will remove superseded components, without resetbase it will compress the superseded components.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. RaiyvaN

    RaiyvaN MDL Senior Member

    Sep 23, 2009
    302
    347
    10
    #18726 RaiyvaN, Mar 10, 2021
    Last edited: Mar 10, 2021
    @zero cool root, /Cleanup-Image /StartComponentCleanup /ResetBase

    There is a problem, for builds 1903 1909 too.

    I stopped using this function.

    This is the same function present in the toolkit.
    [5] Apply
    [1] Cleanup Source Images

    and

    [7] Tools
    [1] WIM Manager
    [K] Cleanup
    [1] Cleanup Image (here - /Cleanup-Image /StartComponentCleanup /ResetBase)
    [2] Cleanup Image with CheckHealth
    [3] Cleanup Image with ScanHealth
     
  7. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    298
    89
    10
    Ohhhh,

    Thank you so much @RaiyvaN ..!!
     
  8. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    6,209
    7,533
    210
    Hello Master MSMG well I would like you to be able to guide me in a project that I am thinking of doing:
    I have an ISO already worked with MSMG Tookit v 10.1 where everything works 100%, without problems with sfc and by the way this system that I've been running for a while has been a real wonder, this way it would be possible to open a new project with this ISO and integrate the 7 updates for the W10 LTSC that have been made available until today and in the sequence I apply the modifications, convert from install.wim to install.esd and create a new ISO will be going to work ...
    Thank you in advance.
     
  9. kosta26

    kosta26 MDL Junior Member

    Jan 1, 2019
    88
    5
    0
    After updating Windows 10.0-KB5000802-x64, the browser appeared in the menu, it was not there before. What kind of script can be used to clear it?
     

    Attached Files:

  10. niche99

    niche99 MDL Junior Member

    Oct 5, 2009
    79
    14
    0
    #18730 niche99, Mar 11, 2021
    Last edited: Mar 12, 2021
    @MSMG This may have been reported already, my apologies if that is the case.

    I am using Windows 10 x64 as the host system, integrating Windows 2004_19041.804 [en-GB] and 3/4/21 toolkit.cmd
    I get the following error when attempting to Integrate Fonts using the menu option:
    Code:
    Exception calling "ReleaseComObject" with "1" argument(s): "Object reference
    not set to an instance of an object."
    At D:\MSMG\Bin\AddFonts.ps1:22 char:2
    +     $null = [System.Runtime.Interopservices.Marshal]::ReleaseComObjec ...
    +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: :)) [], MethodInvocationException
        + FullyQualifiedErrorId : NullReferenceException
    
     
  11. RaiyvaN

    RaiyvaN MDL Senior Member

    Sep 23, 2009
    302
    347
    10
    Are you starting the toolki with start.cmd?
    You have checked that the storage space is sufficient.
    I was having a similar problem with only 10gb of free space.
     
  12. Supern00b

    Supern00b MDL Addicted

    Dec 30, 2010
    650
    423
    30
    I've tested the toolkit on latest public build 19042.867, both x86 and x64, all OK including deployment.

    Cheers.
     
  13. prozinhubr

    prozinhubr MDL Novice

    Dec 12, 2014
    38
    8
    0
    #18733 prozinhubr, Mar 11, 2021
    Last edited: Mar 11, 2021
    nvm
     
  14. Thvle

    Thvle MDL Member

    Oct 7, 2012
    246
    58
    10
    Hello, I removed dge, IE, etc, and when I update Windows it reinstalls Edge. Can this be avoided? Thanks.
     
  15. niche99

    niche99 MDL Junior Member

    Oct 5, 2009
    79
    14
    0
    Thanks for replying.
    Yes I use the start.cmd to launch the toolkit.
    I start with 30GB free space so I think that should be enough?
     
  16. RaiyvaN

    RaiyvaN MDL Senior Member

    Sep 23, 2009
    302
    347
    10
    Nice!

    Are you using the toolkit with a short folder structure?
    So... Like:
    C:\Toolkit (no version, etc.)

    If it is not something like that, we have to wait that MSMG can answer.
     
  17. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    5,430
    11,396
    180
    Mount the Image
    Code:
    Dism /Mount-Image /ImageFile:<ImageFile> /Index:<Image-Index> /MountDir:<Mount-Folder>
    
    Get the package list
    Code:
    DIR/B "<Mount-Folder>\Windows\Servicing\Packages\*.mum" | findstr /v "en-US"
    
    Mount the Image Registry
    Code:
    REG LOAD HKLM\TK_SOFTWARE "<Mount-Folder>\windows\system32\config\SOFTWARE"
    
    Call the UnHidePackage function from my previous post
    Code:
    CALL :UnHidePackage "<Package-Name>"
    
    Un-mount the Image Registry
    Code:
    REG UNLOAD HKLM\TK_SOFTWARE
    
    Remove the Package
    Code:
    Dism /Image:<Mount-Folder> /Remove-Package /PackageName:<Package-Name>
    
    Un-Mount the Image
    Code:
    Dism /Unmount-Image /MountDir:<Mount-Folder> /Discard
    
     
  18. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    5,430
    11,396
    180
    Do follow the steps specified in the readme.txt for proper working of the Toolkit.

    19043.844 is not supported, from next version 19043 component will be supported with .867 CU, do use it.

    Not it's not supported, Please do use next version and

     
  19. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    5,430
    11,396
    180
    Yes it's fixed now, do wait for the next version.