MSMG ToolKit

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

  1. xhemal1325

    xhemal1325 MDL Member

    May 24, 2014
    123
    9
    10
    Thank you
     
  2. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,030
    1,328
    90
    I delete XboxIdentityProvider and the Store is working fine.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. RaiyvaN

    RaiyvaN MDL Senior Member

    Sep 23, 2009
    302
    347
    10
    Take a look again.
    The part you can edit starts with that first line of the code parts I posted.
     
  4. RaiyvaN

    RaiyvaN MDL Senior Member

    Sep 23, 2009
    302
    347
    10
  5. Supern00b

    Supern00b MDL Addicted

    Dec 30, 2010
    650
    423
    30
    @MSMG
    I must apologize, I'm getting too old for this. My latest reports were, obviously, a result from user error.

    First, the KB4486153 error when integrating - Assumed it was a net CU but this is actually the .Net framework 4.8 package itself.
    So I was integrating .Net 4.8 on top of another already integrated .Net 4.8 package, hence the error.

    The game pack not working - I had indeed removed Game Explorer from the image.
    I have made another set and will test this asap.

    Please discard my previous reports.

    Cheers.
     
  6. E_B_M

    E_B_M MDL Member

    Jan 16, 2012
    134
    72
    10
    #15846 E_B_M, Jul 5, 2020
    Last edited: Jul 5, 2020
    TK v10.1 source 10.0.19041.208
    I had similar problem with spp.dll & no system protection tab on System Properties, attempt to sysprep failed due to missing spp.dll/rstrui.exe as a result. Subsequent image without removing File History does not resolve the problem, spp.dll / System Protection tab still missing.

    spp_dll.JPG
     

    Attached Files:

    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. winproof

    winproof MDL Novice

    Apr 22, 2016
    2
    1
    0
    very usefull tool, but not work on win 10 2004 host for a 2004 iso, try to remove components (one or all), script start but freeze after "finished removing...", i'm waiting but never see "press any key to continue".
    only thing to work is to close app (and deal with uncorrectly unmounted things :) )
    work perfect with win 10 1909 host and a 2004 iso.

    And one feature still missing, the ability to remove multiples (but not all) components in one pass in a more simply way that using lists.
    maybe with a "loop" in the script for having the possibility to indicate multiple choix (ex A B D H ...)?
     
  8. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,030
    1,328
    90
    works fine
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. winproof

    winproof MDL Novice

    Apr 22, 2016
    2
    1
    0
    #15849 winproof, Jul 5, 2020
    Last edited: Jul 5, 2020
    strange, not on my computer, maybe it's because i've just install windows ADK 2004 (deployement tools only), i try with another computer

    EDIT : ok, there is something strange with my computer, work with another ... :thinking:
     
  10. E_B_M

    E_B_M MDL Member

    Jan 16, 2012
    134
    72
    10
    It appears removing Windows Backup, not File History breaks system restore.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Great_Gwyn

    Great_Gwyn MDL Novice

    Jun 4, 2020
    10
    5
    0
    Shame on that.

    Anyway, great tool!. Congrats. I'm using it since long ago now ^^
     
  12. RaiyvaN

    RaiyvaN MDL Senior Member

    Sep 23, 2009
    302
    347
    10
    #15853 RaiyvaN, Jul 6, 2020
    Last edited: Jul 8, 2020
    https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-793#post-1606110

    I just resent an updated file in the post above.

    Disable some had left locale and themes settings;
    The part with menu options with custom component removal scripts has been retained.
    I made a huge change to apply Tweaks by answering Y (yes) or N (no) questions.


    I must remind you that Toolkit by MSMG functionality has not been removed. I just made a contribution. And, in my spare time, I tried to develop improvements for the procedures I use the most. All details I learned here on the forum with the explanations of @MSMG. I put a 0 in the version, getting 10.10. But it is still based on version 10.1. Even so, 10.1 or 10.10 is the same. 10.01 is different. ;):p

    It would be nice to see these changes implemented in the official version. But then the one who decides is @MSMG.

    I hope you all like it.

    If we disregard the additions of features, the code gave a good decrease. Especially in the part related to registry tweaks.

    Thanks to @MSMG.
     
  13. MrChiliCheese

    MrChiliCheese MDL Novice

    Dec 15, 2017
    7
    1
    0
    I should be able to modify Windows, put it onto an USB drive reinstall Windows from scratch on a Surface Pro 7, right?
     
  14. RaiyvaN

    RaiyvaN MDL Senior Member

    Sep 23, 2009
    302
    347
    10
    #15855 RaiyvaN, Jul 7, 2020
    Last edited: Jul 7, 2020
    @MSMG,
    I also hope that this contribution can give new ideas for the Script to become more and more top. Sure that with the experience you have you will dry a lot what has been done. They have a lot of features that I don't know how to use. I was trying to get the script to read and first define what type of installation mount "%InstallMount%\%%i" or "%InstallMount%" and then execute the removal commands. But I don't understand that "for" "do" "else". I was thinking of reducing the duplicate parts with "call". In the registry tweaks, I managed to do this partially. But some duplicate passages are essential and still remain.

    Something like:
    Code:
    if "%InstallMount%\%%i" (
    set "MountPoint=%InstallMount%\%%i"
    call :CustomRemovalScripts
    ) 
    if "%InstallMount%" (
    set "MountPoint=%InstallMount%"
    call :CustomRemovalScripts
    )
    
    or keeping "do" "else"
    Code:
    for .............. do (
    if "%InstallMount%\%%i" (
    set "MountPoint=%InstallMount%\%%i"
    call :CustomRemovalScripts
    ) else (
    if "%InstallMount%" (
    set "MountPoint=%InstallMount%"
    call :CustomRemovalScripts
    )
    
    And, inside of :CustomRemovalScripts
    The codes could look like this:
    Code:
    :CustomRemovalScripts
    %ToolKitHelper% "%MountPoint%" %RemovePkgsList%
    
    Instead of the traditional one that repeats thousands of lines of code:
    Code:
    for .............. do (
    %ToolKitHelper% "%InstallMount%\%%i" %RemovePkgsList%
    ) else (
    %ToolKitHelper% "%InstallMount%" %RemovePkgsList%
    )
    
    Anyway, anything is possible in programming, but I have reached my creative limit. I lack content to try some other way.

    Edit:
    Maybe with using command "set":
    set "MountPoint=%InstallMount%\%%i"
    or
    set "MountPoint=%InstallMount%" ???
     
  15. haremmon

    haremmon MDL Novice

    Aug 29, 2016
    20
    18
    0
    I was wondering what had happened with v10.1.

    I reverted to Toolkit v10.0 and skipped integration .331 CU update step.
    With v10.0, I successfully installed .331 CU after fresh windows install.
     
  16. RaiyvaN

    RaiyvaN MDL Senior Member

    Sep 23, 2009
    302
    347
    10
    #15857 RaiyvaN, Jul 7, 2020
    Last edited: Jul 8, 2020
    https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-793#post-1606110

    Resent an today updated file in the post above.

    In that apply tweaks menu by answering questions system, I added a question to the end to apply the integration of your Registry (*.reg) files.

    I removed some "pause" commands from the end of some processes in the Menus (Integrate Windows Features Menu - Integrate Windows Custom Features Menu - Customize Menu) and replaced them with a question "Do you want to continue on this menu?"

    All tested and working in Editions 1909 and 2004, in both architectures (x86 and x64).

    Thnx!

    Edit: Not everything. I left it configured to save ISOs on my drive I:
    It has been corrected.
     
  17. tefor

    tefor MDL Senior Member

    Apr 5, 2017
    266
    212
    10
    hi MSMG
    I integrated enablement package to get 20H2
    after that i removed all components including Edge
    after installation EDGE is still on my desktop and i can not uninstall it from programs add-remove
    is there any way to get rid of Edge ?
     
  18. letmeout

    letmeout MDL Novice

    Jun 15, 2020
    5
    0
    0