Thanks. I also try this procedure to avoid TPM control. The registry key must be inserted in the route: Toolkit_v11.8\Custom\Registry\w11\x64 ? Thanks
MSMG, could you upload this version of ToolkitHelper to MEGA? I want to test it with build 22000.282 thank you!
I applied the tweak "Disable Automatic Downloading and Installing 3rd Party Apps", but the recommendations remained ... How to remove it? Before the Internet was connected, there were empty squares.
Happy enough to test the en-GB resources for now if you can do that. Just want to get Win32Calc working properly again with my en-gb images in W10. Looking forward to testing new ToolKitHelper.exe with latest 19043.1288.
Ok will test the command, didn't you the one who gave this command earlier for disabling the Firewall?
MSMG, Thank you so much for all these changes, it's really very cool!!! 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?
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 )
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).
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
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.
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