Updated disable_telemetry scripts https://forums.mydigitallife.net/th...lemetry-repository.63874/page-66#post-1686849 Disabled executables that collect and transmit data Code: rem == disable executables that collect and transmit data == reg add "HKLM\SOFTHIVE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\CompatTelRunner.exe" /v "Debugger" /t REG_SZ /d "%windir%\System32\systray.exe" /f reg add "HKLM\SOFTHIVE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\DeviceCensus.exe" /v "Debugger" /t REG_SZ /d "%windir%\System32\systray.exe" /f reg add "HKLM\SOFTHIVE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\wsqmcons.exe" /v "Debugger" /t REG_SZ /d "%windir%\System32\systray.exe" /f Removed Services that record activity and access user data such as calendars, contact information, messages and other content Code: rem == recording == reg delete "HKLM\SYSHIVE\ControlSet001\Services\BcastDVRUserService" /f rem == access to user data such as calendars, contact information, messages and other content == reg delete "HKLM\SYSHIVE\ControlSet001\Services\OneSyncSvc" /f reg delete "HKLM\SYSHIVE\ControlSet001\Services\UnistoreSvc" /f reg delete "HKLM\SYSHIVE\ControlSet001\Services\UserDataSvc" /f
2024-11-29 10:16:27, Info CSI 00000001 Shim considered [l:206]'\??\C:\Users\Administrator\Desktop\Disable Telemetry in Windows 10 and 11 (Offline)\mount\Windows\WinSxS\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.26100.1738_none_a5031b637767a4e7\wcp.dll' : got STATUS_SUCCESS 2024-11-29 10:16:28, Info DISM DISM Appx Provider: PID=13096 TID=8804 Processing 'packagename' option at index 2 - CAppxManager:rocessCommandRemoveAllUserAppx 2024-11-29 10:16:28, Info DISM DISM Appx Provider: PID=13096 TID=8804 packagename='Microsoft.SecHealthUI_1000.26100.1.0_x64__8wekyb3d8bbwe' - CAppxManager:rocessCommandRemoveAllUserAppx 2024-11-29 10:16:28, Error DISM DISM Appx Provider: PID=13096 TID=8804 Failed to uninstall becuase policy prevents the removal of this package - CAppxManager::RemoveAllUserAppx(hr:0x80073cfa) 2024-11-29 10:16:28, Error DISM DISM Appx Provider: PID=13096 TID=8804 Failed to remove package 'Microsoft.SecHealthUI_1000.26100.1.0_x64__8wekyb3d8bbwe' - CAppxManager:rocessCommandRemoveAllUserAppx(hr:0x80073cfa) 2024-11-29 10:16:28, Error DISM DISM Appx Provider: PID=13096 TID=8804 Failed processing command to remove Appx package - CAppxManager::ExecuteCmdLine(hr:0x80073cfa) 2024-11-29 10:16:28, Info DISM DISM Package Manager: PID=13096 TID=13548 Finalizing CBS core. - CDISMPackageManager::Finalize
why remove this lines from the original script? REGDELETE... ...MicrosoftEdge ...MicrosoftEdgeDevToolsClient reg add "HKLM\SOFTHIVE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\Microsoft.MicrosoftEdge_8wekyb3d8bbwe" /f reg add "HKLM\SOFTHIVE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Deprovisioned\Microsoft.MicrosoftEdgeDevToolsClient_8wekyb3d8bbwe" /f
If you're referring to Windows 11 disable_telemetry script It uses "dism" now to remove Edge Code: rem == remove edge == dism /scratchdir:temp /image:mount /Remove-Edge This removes all traces of Edge Those lines are not needed anymore
Not working with IoT 2024 LTSC iso. Well, all of this gave me a massive headache. I changed the mounting index to 2, and made some progress, i included the VMware drivers in the iso, but now, im stuck at the installation. It does not finish. It would be nice if you could make something more user friendly.
I don't understand this Did you export IoT 2024 LTSC image first before mounting the install.wim? Code: Dism /Export-Image /SourceImageFile:install.wim /SourceIndex:2 /DestinationImageFile:install2.wim /CheckIntegrity I made the process as user-friendly to the best of my ability
You can using Code: dism /online /add-package: but SystemApps will get restored It's not a big deal though because the essential Telemetry are still disabled Personally every month I create an updated image, disable telemetry and clean install but this may not be realistic for everyone