work like a charm at my end with 19044.1288 ;)
     
  1. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    May be something have changed with Windows 11, will check out.

     
  2. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Ok will test the command, didn't you the one who gave this command earlier for disabling the Firewall?

     
  3. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #20884 graver.x, Oct 19, 2021
    Last edited: Oct 19, 2021
    MSMG,
    Thank you so much for all these changes, it's really very cool!!!:eek: :thumbsup:

    Now all these components will move from my RemovePkgsList for Dism to RemovePkgsList for ToolkitHelper.

    Thank you. I'm sorry, I misunderstood a little, does this mean that you can add these components to RemovePkgsList right now?
    Or will their support be in the final version of ToolkitHelper?
     
  4. rorewe4314

    rorewe4314 MDL Member

    Jun 18, 2020
    107
    22
    10
    I don't remember exactly.
     
  5. rorewe4314

    rorewe4314 MDL Member

    Jun 18, 2020
    107
    22
    10
    Code:
    if "%Tweak%" equ "DisableWindowsUpdate" (
                Reg add "HKLM\TK_NTUSER\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization" /v "SystemSettingsDownloadMode" /t REG_DWORD /d "0" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Microsoft\Speech_OneCore\Preferences" /v "ModelDownloadAllowed" /t REG_DWORD /d "0" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization" /v "OptInOOBE" /t REG_DWORD /d "0" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /v "DODownloadMode" /t REG_DWORD /d "0" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsStore\WindowsUpdate" /v "AutoDownload" /t REG_DWORD /d "5" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Services\7971f918-a847-4430-9279-4a52d1efe18d" /v "RegisteredWithAU" /t REG_DWORD /d "0" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\Microsoft-Windows-DeviceUpdateAgent/Operational" /v "Enabled" /t REG_DWORD /d "0" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\Microsoft-Windows-WindowsUpdateClient/Operational]" /v "Enabled" /t REG_DWORD /d "0" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "HideMCTLink" /t REG_DWORD /d "1" /f >nul 2>&1
    
                if "%ImageDefaultLanguage%" equ "zh-CN" Reg add "HKLM\TK_SOFTWARE\Microsoft\LexiconUpdate\loc_0804" /v "HapDownloadEnabled" /t REG_DWORD /d "0" /f >nul 2>&1
                if "%ImageDefaultLanguage%" equ "zh-HK" Reg add "HKLM\TK_SOFTWARE\Microsoft\LexiconUpdate\loc_0804" /v "HapDownloadEnabled" /t REG_DWORD /d "0" /f >nul 2>&1
                if "%ImageDefaultLanguage%" equ "zh-TW" Reg add "HKLM\TK_SOFTWARE\Microsoft\LexiconUpdate\loc_0804" /v "HapDownloadEnabled" /t REG_DWORD /d "0" /f >nul 2>&1
    
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Speech" /v "AllowSpeechModelUpdate" /t REG_DWORD /d "0" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\DeliveryOptimization" /v "DODownloadMode" /t REG_DWORD /d "0" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "DoNotConnectToWindowsUpdateInternetLocations" /t REG_DWORD /d "1" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "DisableWindowsUpdateAccess" /t REG_DWORD /d "1" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "WUServer" /t REG_SZ /d " " /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "WUStatusServer" /t REG_SZ /d " " /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "UpdateServiceUrlAlternate" /t REG_SZ /d " " /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "AUOptions" /t REG_DWORD /d "2" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "NoAutoUpdate" /t REG_DWORD /d "1" /f >nul 2>&1
                Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v "UseWUServer" /t REG_DWORD /d "1" /f >nul 2>&1
                Reg add "HKLM\TK_SYSTEM\ControlSet001\Services\wuauserv" /v "Start" /t REG_DWORD /d "4" /f >nul 2>&1
            )
     
  6. rorewe4314

    rorewe4314 MDL Member

    Jun 18, 2020
    107
    22
    10
    Code:
    if "%ImageDefaultLanguage%" equ "zh-CN" Reg add "HKLM\TK_SOFTWARE\Microsoft\LexiconUpdate\loc_0804" /v "HapDownloadEnabled" /t REG_DWORD /d "0" /f >nul 2>&1
                if "%ImageDefaultLanguage%" equ "zh-HK" Reg add "HKLM\TK_SOFTWARE\Microsoft\LexiconUpdate\loc_0804" /v "HapDownloadEnabled" /t REG_DWORD /d "0" /f >nul 2>&1
                if "%ImageDefaultLanguage%" equ "zh-TW" Reg add "HKLM\TK_SOFTWARE\Microsoft\LexiconUpdate\loc_0804" /v "HapDownloadEnabled" /t REG_DWORD /d "0" /f >nul 2>&1

    If I delete these lines, will the updates be completely disabled?

    p.s
    I'm much quicker to test your registry tweaks in my automated scripts (This allows me to do several things at once).
     
  7. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Yes you can add it to RemovePkgs.txt list

    The below is the list for Windows 11, if using ToolKitHelper.exe outside Toolkit then remove the ManualSetup entry from the list.

    Code:
    EdgeChromium
    InternetExplorer
    FirstLogonAnimation
    GameExplorer
    SpeechRecognition
    WindowsMediaPlayer
    WindowsPhotoViewer
    WinSAT
    OfflineFiles
    OpenSSH
    RemoteDesktopClient
    RDC
    SimpleTCPIPServices
    TelnetClient
    TFTPClient
    WorksFolderClient
    AssignedAccess
    CEIP
    FaceRecognition
    KernelDebugging
    LocationService
    PicturePassword
    PinEnrollment
    UnifiedTelemetryClient
    WiFiNetworkManager
    WindowsErrorReporting
    WindowsInsiderHub
    MultiPointConnector
    RemoteAssistance
    RemoteDesktopServer
    RemoteRegistry
    DeviceLockdown
    EaseOfAccessThemes
    EasyTransfer
    FileHistory
    ManualSetup
    ProjFS
    SecurityCenter
    StepsRecorder
    StorageSpaces
    SystemRestore
    WindowsBackup
    WindowsFirewall
    WindowsSubsystemForLinux
    WindowsToGo
    Wordpad
    AADBrokerPlugin
    AccountsControl
    AssignedAccessLockApp
    AsyncTextService
    BioEnrollment
    CallingShellApp
    CapturePicker
    CBSPreview
    ContentDeliveryManager
    CredDialogHost
    ECApp
    Edge
    EdgeDevToolsClient
    FileExplorer
    LockApp
    MapControl
    NarratorQuickStart
    OneDrive
    OOBENetworkCaptivePortal
    OOBENetworkConnectionFlow
    ParentalControls
    PeopleExperienceHost
    QuickAssist
    RetailDemoContent
    SecureAssessmentBrowser
    SkypeORTC
    SmartScreen
    Win32WebViewHost
    WindowsDefender
    WindowsMixedReality
    WindowsReaderPDF
    WindowsStoreClient
    XboxClient
    XboxGameCallableUI
    XGpuEjectDialog
    Alarms
    BingNews
    BingWeather
    Calculator
    Camera
    ClientWebExperience
    CommunicationsApps
    Cortana
    DesktopAppInstaller
    FeedbackHub
    GamingApp
    GetHelp
    Getstarted
    HEIFImageExtension
    Maps
    Notepad
    OfficeHub
    Paint
    People
    Photos
    PowerAutomateDesktop
    ScreenSketch
    SolitaireCollection
    SoundRecorder
    StickyNotes
    StorePurchaseApp
    Terminal
    Todos
    VP9VideoExtensions
    WebMediaExtensions
    WebpImageExtension
    WindowsStoreApp
    XboxGameOverlay
    XboxGamingOverlay
    XboxIdentityProvider
    XboxSpeechToTextOverlay
    XboxTCUI
    YourPhone
    ZuneMusic
    ZuneVideo
    

     
  8. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    Thank you for the information and the warning. I understood you.

    I work in a Toolkit and use RemovePkgsList for ToolkitHelper. But for someone this information will be necessary.
     
  9. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
  10. Igor147

    Igor147 MDL Member

    Oct 20, 2016
    144
    67
    10
    Thanks. I will wait
     
  11. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #20892 graver.x, Oct 19, 2021
    Last edited: Oct 19, 2021
    And such settings are not enough? (keys are created when the firewall is disabled in group policies)

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile]
    "EnableFirewall"=dword:00000000

    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\PublicProfile]
    "EnableFirewall"=dword:00000000

    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\StandardProfile]
    "EnableFirewall"=dword:00000000
     
  12. great ;)
     
  13. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #20894 inTerActionVRI, Oct 20, 2021
    Last edited: Oct 20, 2021
    to put into toolkit...
    from
    Code:
           if "%Tweak%" equ "DisableWindowsFirewall" Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /v "DisableFirewall" /t REG_SZ /d "%%windir%%\System32\netsh.exe advfirewall set allprofiles state off" /f >nul 2>&1
    
    to
    Code:
           if "%Tweak%" equ "DisableWindowsFirewall" (
               Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile" /v "EnableFirewall" /t REG_DWORD /d "0" /f >nul 2>&1
               Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\WindowsFirewall\PublicProfile" /v "EnableFirewall" /t REG_DWORD /d "0" /f >nul 2>&1
               Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\WindowsFirewall\StandardProfile" /v "EnableFirewall" /t REG_DWORD /d "0" /f >nul 2>&1
               Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce" /v "DisableFirewall" /t REG_SZ /d "%%windir%%\System32\netsh.exe advfirewall set allprofiles state off" /f >nul 2>&1
           )
    
     
  14. tefor

    tefor MDL Senior Member

    Apr 5, 2017
    317
    240
    10
    Has NET5 pack been updated to new version which is Microsoft .NET Desktop Runtime 5.0.11 Build 30524 ?
     
  15. jinvidia

    jinvidia MDL Member

    Aug 7, 2016
    238
    35
    10
    #20896 jinvidia, Oct 20, 2021
    Last edited: Oct 20, 2021
    @MSMG - Sir i see frequent updates for toolkithelper.exe and toolkit.cmd. These are meant for the latest toolkit v11.8 right ?. Correct me if I am wrong. Thank you

    edit: toolkithelper.exe is flagged as a malware in kaspersky. Previously there was no such issue. Can you kindly rectify this ?. May be some new virus definitions and signatures were added to the antivirus and this is causing the toolkithelper.exe to be flagged as a virus. Is there anything which can be done to avoid this ?. I have excluded the toolkit directory in KIS but still previously there was no such issue even if the toolkit folder was not placed in the exclusion list of KIS.
     
  16. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #20897 graver.x, Oct 20, 2021
    Last edited: Oct 20, 2021
    The registry tweak Bypass TPM\SecureBoot\RAM\CPU\Storage check should be integrated into BootSetup image (boot.wim: 2), in order to disable this checks of PC components during installation.

    If you want to follow MSMG's advice, then go to the Toolkit in Customize->Apply Tweaks menu. And just select Bypass: [A] Disable Windows 11 Installer Hardware Check, you will see the desired option there. Toolkit will do everything you need by itself. You will no longer need additional actions.

    Toolkit will perform all the same settings that the registry tweak that Feartamixg offered you will contain:
    (MSMG has already added them all before)

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\SYSTEM\Setup\LabConfig]
    "BypassCPUCheck"=dword:00000001
    "BypassRAMCheck"=dword:00000001
    "BypassSecureBootCheck"=dword:00000001
    "BypassStorageCheck"=dword:00000001
    "BypassTPMCheck"=dword:00000001


    Therefore, it is not necessary to additionally place this tweak in Toolkit_v11.8\Custom\Registry\w11\x64 and integrate it using the option to import custom registry settings [4] - Customize -> 7 - Importing Custom Registry Settings from Registry File, since this will not give you the desired result.
    In this way, it will be integrated only into install.wim, and this will not disable check of PC components during installation.
     
  17. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Yes had misplaced the code, now have fixed it.

     
  18. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210