Hey @freddie-o Could you add something like this in your script to see the version if it's updated, thanks Code: @set ver=21-09-24 @echo off rem == Disable_Telemetry_Script, https://forums.mydigitallife.net/threads/repo-windows-10-telemetry-repository.63874/page-73#post-1723965 == echo ====================== Disable_Telemetry_Script %ver% ======================= And to write what has been changed, fixed, added , to keep the thread directly in : https://forums.mydigitallife.net/th...lemetry-repository.63874/page-66#post-1686849 Spoiler disable_telemetry scripts [ Updated 09-21-2024 ] Windows 10 LTSC 2021 https://forums.mydigitallife.net/th...lemetry-repository.63874/page-73#post-1723965 added in: rem == disable app permissions == reg add "HKLM\SOFTHIVE\Policies\Microsoft\Windows\AppPrivacy" /v "LetAppsAccessBackgroundSpatialPerception" /t REG_DWORD /d "2" /f rem == delete telemetry services == rem == data usage == reg delete "HKLM\SYSHIVE\ControlSet001\Services\DusmSvc" /f rem == disable windows features with telemetry == dism /scratchdir:temp /image:mount /disable-feature:Internet-Explorer-Optional-amd64 dism /scratchdir:temp /image:mount /disable-feature:MediaPlayback dism /scratchdir:temp /image:mount /disable-feature:SearchEngine-Client-Package dism /scratchdir:temp /image:mount /disable-feature:Windows-Defender-Default-Definitions dism /scratchdir:temp /image:mount /disable-feature:WindowsMediaPlayer rem == remove capabilities with telemetry == dism /scratchdir:temp /image:mount /Remove-Capability /CapabilityName:Browser.InternetExplorer~~~~0.0.11.0 dism /scratchdir:temp /image:mount /Remove-Capability /CapabilityName:Media.WindowsMediaPlayer~~~~0.0.12.0 Before 09-13-24: rem == disable windows firewall == reg add "HKLM\SOFTHIVE\Policies\Microsoft\Windows\IPSec\ICFv4" /v "BypassFirewall" /t REG_DWORD /d "1" /f rem == disable windows firewall service == rem == deleting these services will cause system instability == reg add "HKLM\SYSHIVE\ControlSet001\Services\mpsdrv" /v "Start" /t REG_DWORD /d "4" /f reg add "HKLM\SYSHIVE\ControlSet001\Services\mpssvc" /v "Start" /t REG_DWORD /d "4" /f rem == add Disable Firewall == reg add "HKLM\SYSHIVE\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile" /v "EnableFirewall" /t REG_DWORD /d "0" /f reg add "HKLM\SYSHIVE\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\PublicProfile" /v "EnableFirewall" /t REG_DWORD /d "0" /f reg add "HKLM\SYSHIVE\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\DomainProfile" /v "EnableFirewall" /t REG_DWORD /d "0" /f
@freddie-o Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer] "HideRecommendedSection"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Start] "HideRecommendedSection"=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\current\device\Education] "IsEducationEnvironment"=dword:00000001 to disable recommended section in start menu works on windows 11 any sku
Nice for a "cleaner" start menu. But not related to telemetry. Those that want to apply this tweak can use it.
Ran this script, it works great so far. However, I need to download the graphics driver via WU, that driver only not security or features updates.. How can I accomplish that? TIA
It's always best to download your drivers directly from the manufacturers' sites. Especially for the CG where WU can block and install a default driver
Unfortunately Microsoft Update Catalog says «We did not find any results for "PCI\VEN_8086&DEV_4693&SUBSYS_7D461462"» Spoiler This is a MSI mainboard, PRO H610M-G DDR4
So all this time you've just been using drivers from Windows update? Another option you can try would be to install an unmodified Windows OS Update it using Windows update Then export your drivers
The Windows Calculator appx is working fine on my end with Windows 11 Enterprise 26100.1742 using your script. I did not remove Client.AIX, and by keeping it, it doesn't break the new File Explorer UI.
Why use run_as_trustedinstaller.cmd because the script by dragging it directly into PowerRun replaced it ?
Updated the disable_telemetry scripts Removed the following lines It was messing up WindowsApps in Windows 11 Thanks to @wtfjajaja for figuring this out and how to make WindowsApps work in Windows 11 Code: rem == disable windows firewall service == rem == deleting these services will cause system instability == reg add "HKLM\SYSHIVE\ControlSet001\Services\mpsdrv" /v "Start" /t REG_DWORD /d "4" /f reg add "HKLM\SYSHIVE\ControlSet001\Services\mpssvc" /v "Start" /t REG_DWORD /d "4" /f