1. rorewe4314

    rorewe4314 MDL Member

    Jun 18, 2020
    107
    22
    10
    MSMG, Did you know that MS is planning to block the installation of modified versions of Windows with certificates, I mean the beginning of this is already in Windows 11? What further counter-actions will be taken?

    p.s
    I'm telling you that what we do today could be a huge problem tomorrow.
     
  2. aedthuio

    aedthuio MDL Junior Member

    Aug 14, 2009
    58
    18
    0
    Dear MSMG, I would like to integrate some language packs to W11 using your tool. Where could i download them? Actually I have this file: "mul_windows_11_languages_optional_features_x64_dvd_05ae8dae.iso" Is it enough? Where are the needed files? Thank you very much!!
     
  3. Titanos

    Titanos MDL Novice

    Dec 11, 2019
    31
    28
    0
    Source of that info ?!
     
  4. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    342
    476
    10
  5. rorewe4314

    rorewe4314 MDL Member

    Jun 18, 2020
    107
    22
    10
    They themselves are open about it. TPM 2.0 will need updated UEFI - it will check system integrity. They need it to separate old PCs.
     
  6. amnester

    amnester MDL Junior Member

    Nov 9, 2018
    70
    17
    0
    Greetings! With the latest updates of Toolkit.cmd from 17.10.2021 and ToolkitHelper.exe from 19.10.2021, registry files .reg (Custom-Registry-w10-x64) are not integrated into Windows 10 Pro 21H2_19044.1319 ! Before that, everything was fine. Please fix it!
     
  7. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    #20967 inTerActionVRI, Oct 22, 2021
    Last edited: Oct 22, 2021
    MSMG knows about Toolkithelper.exe. It has already warned on the day of publication. Read here:
    https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-1045#post-1698277

    edit:
    But about integration of reg files may have been the change that was made, however it was not for double conversion of reg files to have some interference in W10.
     
  8. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    342
    476
    10
    #20968 graver.x, Oct 22, 2021
    Last edited: Oct 22, 2021
    Yes!
    Thank you for your feedback) now I see that something strange is happening not only for me alone ...

    I once again analyzed the oddities I noticed well, and came to the same conclusion.

    And the commands I added to SetupComplete.cmd to delete some system Services that I use all the time didn't work this time. And several custom registry tweaks added to the Toolkit also didn't work.

    I checked the same commands in the installed system, in the command line from the Administrator, some commands work, and some do not work. Services such as TroubleshootingSvc, WbioSrvc and some others are not deleted as usual, with Administrator rights. But only with Trusted Installer rights.
    The command to enable the classic menu (win11) in CMD from the Administrator does not work.
    In PowerShell, it works from the Administrator.
     
  9. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    For w11, you checked the ".\Custom\Registry\w10" folder and duplicated the w10 folder already renaming it as w11?


    Even so, the Double Conversion of *.reg Files is causing this problem below.

    original file:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig]
    "BypassTPMCheck"=dword:00000001
    "BypassSecureBootCheck"=dword:00000001
    "BypassRAMCheck"=dword:00000001
    "BypassStorageCheck"=dword:00000001
    "BypassCPUCheck"=dword:00000001
    
    resulted file:
    Code:
    Windows Registry Editor Version 5.00
    Windows Registry Editor Version 5.00
    "BypassTPMCheck"=dword:00000001
    "BypassSecureBootCheck"=dword:00000001
    "BypassRAMCheck"=dword:00000001
    "BypassStorageCheck"=dword:00000001
    "BypassCPUCheck"=dword:00000001
    


    So, for now, inside the Toolkit.cmd script file;
    Keep this line:
    Code:
    PowerShell -Executionpolicy Bypass -File "%Bin%\ConvertReg.ps1" "%CustomRegistry%" "%Temp%\CustomRegistry"
    
    and remove this line:
    Code:
    PowerShell -Executionpolicy Bypass -File "%Bin%\ConvertReg.ps1" "%Temp%\CustomRegistry" "%Temp%\CustomRegistry"
    
     
  10. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    342
    476
    10
    In Toolkit v11.8, folders for w11 were already there initially, so there was no need to create them.

    As far as I understand, you mean Double Conversion in connection with the solution of the recently discussed problem with the conversion of CurrentControlSet -> ControlSet001.
    Thanks for the information. I checked my files, they haven't changed.
     
  11. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    Yes, well this solution.

    But you will only be able to view this problem when you import your reg files and pick up the files generated in the "Toolkit\Temp" folder.
    Originals are never changed.
    As soon as you finalize the import, check the folder.
    Note: If you do the Discard and exit Toolkit the Temp and others folder will be clean.

    Verify that this duplication occurs within the generated files?
    Code:
    Windows Registry Editor Version 5.00
    Windows Registry Editor Version 5.00
    
    And if the keys are present. In my case you can notice that the key has been deleted, only the values remained.
     
  12. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    #20972 inTerActionVRI, Oct 22, 2021
    Last edited: Oct 23, 2021
    Follows the fixed "ConvertReg.ps1" file;

    I was able to find the error that did not convert CurrentControlSet to ControlSet001.
    from
    Code:
        "[HKEY_LOCAL_MACHINE\TK_SYSTEM\CurrentControlSet\" = "[HKEY_LOCAL_MACHINE\TK_SYSTEM\ControlSet001\";
        "[-HKEY_LOCAL_MACHINE\TK_SYSTEM\CurrentControlSet\" = "[-HKEY_LOCAL_MACHINE\TK_SYSTEM\ControlSet001\";
    
    to
    Code:
        "[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet"     = "[HKEY_LOCAL_MACHINE\TK_SYSTEM\ControlSet001";
        "[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet"    = "[-HKEY_LOCAL_MACHINE\TK_SYSTEM\ControlSet001";
        "[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001"         = "[HKEY_LOCAL_MACHINE\TK_SYSTEM\ControlSet001";
        "[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001"        = "[-HKEY_LOCAL_MACHINE\TK_SYSTEM\ControlSet001";
    
    I also put a redundancy for you to be working with some registry file that has already been converted to use with Toolkit. No more problem described above, which doubles the header and removes all keys.

    The original "ConvertReg.ps1" file is present in the "Toolkit_v11.8.7z". If you need to recover it from there.
    So just extract "ConvertReg.zip" inside the ".\Toolkit\Bin" folder and replace.

    EDIT: Extract "ToolkitREGsConverter.zip" inside the ".\Toolkit" folder.
     

    Attached Files:

  13. olris

    olris MDL Novice

    Mar 9, 2019
    22
    5
    0
    What is ClientWebExperience from RemovePkgsList_W11_10.0.22000.txt ?
    And what corresponds to it in the window for selecting components for manual removal via the toolkit helper ?
     
  14. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    Widgets.

    But to remove manually via Toolkithelper command you have to use "ClientWebExperience".
    Widgets only through the menu.
     
  15. Bira

    Bira MDL Member

    Oct 4, 2017
    197
    108
    10
    Clientwebexperience is giving error and the only one, it does everyone when it arrives in it, the message in the toolkithelper the rest goes well
     
  16. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,411
    15,485
    210
    Removing the below things will remove the non win32 stuffs, the rest is upto you to decide which one is required.

    - System Apps (Except AADBrokerPlugin - needed for Microsoft Account, Windows Store Client - needed for Microsoft DCH drivers)
    - Windows Apps

     
  17. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,411
    15,485
    210
    I'm using AMD Ryzen 5 3600 6-Core Processor 3.60 GHz with UEFI + TPM20 with modified Windows 11 (10.0.22483.1011) image and it's working fine, lets see what changes they will make in future builds.

     
  18. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,411
    15,485
    210
    Make this changes to Toolkit.cmd to revert back to old thing.

    from

    Code:
    PowerShell -Executionpolicy Bypass -File "%Bin%\ConvertReg.ps1" "%CustomRegistry%" "%Temp%\CustomRegistry"
    PowerShell -Executionpolicy Bypass -File "%Bin%\ConvertReg.ps1" "%CustomRegistry%" "%Temp%\CustomRegistry"
    
    to

    Code:
    PowerShell -Executionpolicy Bypass -File "%Bin%\ConvertReg.ps1" "%CustomRegistry%" "%Temp%\CustomRegistry"