1. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    349
    486
    10
    #22861 graver.x, Jun 11, 2022
    Last edited: Jun 11, 2022
  2. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    @MSMG,

    As the optimized WinRE is already in the correct location within the DefaultIndexNo, and is not being moved to Temp.
    This change has to be made so that the copy of WinRE to other indexes works.
    Code:
        %WimLibImagex% optimize "%InstallMount%\%DefaultIndexNo%\%WinReWim%"
        echo.
        copy /y "%InstallMount%\%DefaultIndexNo%\%WinReWim%" "%Temp%\rebuild.wim"
    )
    :: Saving & Un-Mounting Source Install & Recovery Images
    for /l %%i in (1, 1, %ImageCount%) do (
        if exist "%InstallMount%\%%i" (
            if "%IsRecoveryImageSelected%" equ "Yes" (
                echo.-------------------------------------------------------------------------------
                echo.Copying Winre.wim file to [Install.wim, Index : %%i] Image...
                echo.-------------------------------------------------------------------------------
                copy /y "%Temp%\rebuild.wim" "%InstallMount%\%%i\%WinReWim%"
                echo.
            )
    
            echo.-------------------------------------------------------------------------------
            echo.Applying Changes ^& Un-Mounting [Install.wim, Index : %%i] Image...
            echo.-------------------------------------------------------------------------------
            call :UnMountImage "%InstallMount%\%%i", "Commit"
            call :RemoveFolder "%InstallMount%\%%i"
        )
    )
    
    call :RemoveFile "%Temp%\rebuild.wim" >nul
    
    :: Re-Building Source Install Image with Maximum Compression.
    
    This case of WinRE is the only one, in which the optimize command needs a copy of optimized image to the temp.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    @MSMG
    The LiveCaptions and VoiceAccess apps that are present in the Accessibility menu on have not yet been removed, even after the new ToolKitHelper_Preview update that meets the prerequisites of build v10.0.22621.4

    and you can't remove MicrosoftWindows.Client.CBS_cw5n1h2txyewy because it has many other applications inside it that are needed

    And now how to do it ??
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    Thanks inTerActionVRI
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. lurkingaroundagain

    lurkingaroundagain MDL Novice

    Oct 14, 2021
    7
    0
    0
    Updated to 2262.4 after running it through the toolkit and I still get this error with svchost.exe, I tried sfc /scannow and Dism /Online /Cleanup-Image /RestoreHealth but will get the error when using a program like OBS. Anyone else get this error?
     
  6. Zanza-kun

    Zanza-kun MDL Junior Member

    May 28, 2012
    87
    15
    0
    I have already had errors of this type when disabling services, to use OBS you must keep CapturePicker, but that did not prevent the application from starting.
     
  7. OpenSourceGhost

    OpenSourceGhost MDL Member

    Feb 14, 2022
    170
    24
    10
    Does ToolkitHelper_Preview.exe have to be renamed to ToolkitHelper.exe to work on newer builds?
     
  8. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    Hi folks,

    To create a .reg file to import by MSMG Toolkit that has the line below, how would I do it..??
    Reg add "HKLM\TK_DEFAULT\SOFTWARE\Policies\Microsoft\Edge" /v "SmartScreenEnabled" /t REG_DWORD /d 0 /f

    It would be like this..??
    [HKEY_USERS\.DEFAULT\SOFTWARE\Policies\Microsoft\Edge]
    "SmartScreenEnabled"=dword:00000000


    and

    To create a .reg file to import by MSMG Toolkit that has the line below, how would I do it..??
    Reg add "HKLM\TK_NTUSER\SOFTWARE\Policies\Microsoft\Edge" /v "SmartScreenEnabled" /t REG_DWORD /d 0 /f

    It would be like this..??
    [HKEY_LOCAL_MACHINE\NTUSER\SOFTWARE\Policies\Microsoft\Edge]
    "SmartScreenEnabled"=dword:00000000


    Thank you in advance..!!
     
  9. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    Yes
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    So
    Code:
    [HKEY_LOCAL_MACHINE\NTUSER\SOFTWARE\Policies\Microsoft\Edge]
    "SmartScreenEnabled"=dword:00000000
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    Didn't work for me..!!
     
  12. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
  13. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Yes. Rename it to ToolkitHelper.exe
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    Your registry entry looks like this:
    Code:
    [HKEY_LOCAL_MACHINE\NTUSER\SOFTWARE\Policies\Microsoft\Edge]
    "SmartScreenEnabled"=dword:00000000
    
    Do like this:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Edge]
    "SmartScreenEnabled"=dword:00000000
    entries only work in the Toolkit or CustomToolkit.: HKEY_LOCAL_MACHINE\NTUSER
    It's just a reference in the Toolkit for this one: HKEY_CURRENT_USER

    Ok
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    Privacy and Security => App & browser control => Reputation-based protection => Phishing Protection
     
  17. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    On my Win 11 I don't have this option showing up, sorry I can't help

    Did it work to add the registry key you asked earlier?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    It worked for all Reputation-based protection options, but not for Phishing Protection..!!
     
  19. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    I use offline account, so this option does not appear for me
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  20. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    I use offline account too, but it appear for me..!!