[REPO] Windows 10 TELEMETRY REPOSITORY

Discussion in 'Windows 10' started by Yen, Aug 4, 2015.

  1. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,557
    2,594
    60
    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
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. sevenlin007

    sevenlin007 MDL Novice

    Nov 22, 2017
    6
    6
    0
    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::processCommandRemoveAllUserAppx
    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::processCommandRemoveAllUserAppx
    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::processCommandRemoveAllUserAppx(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
     
  3. minino666

    minino666 MDL Novice

    Nov 20, 2017
    1
    0
    0
    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
     
  4. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,557
    2,594
    60
    #2464 freddie-o, Nov 29, 2024
    Last edited: Nov 29, 2024
    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
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. testlauf6

    testlauf6 MDL Novice

    Nov 12, 2018
    2
    1
    0
    #2465 testlauf6, Dec 4, 2024
    Last edited: Dec 5, 2024
    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.
     
  6. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,557
    2,594
    60
    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
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. testlauf6

    testlauf6 MDL Novice

    Nov 12, 2018
    2
    1
    0
    #2467 testlauf6, Dec 5, 2024
    Last edited: Dec 6, 2024
    I managed to make it work, so far so good!
     
  8. joker72

    joker72 MDL Novice

    Jan 19, 2015
    8
    0
    0
    freddy how do you install lcu 24h2 without the windows update service?

    sorry for my bad english.
     
  9. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,557
    2,594
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. joker72

    joker72 MDL Novice

    Jan 19, 2015
    8
    0
    0
  11. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,557
    2,594
    60
    #2471 freddie-o, Dec 13, 2024
    Last edited: Dec 13, 2024
    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
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. pp03

    pp03 MDL Addicted

    Apr 12, 2014
    566
    94
    30
    i do the same :)
     
  13. joker72

    joker72 MDL Novice

    Jan 19, 2015
    8
    0
    0
    Thanks and that's what I wanted to know.