[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,585
    2,651
    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
    8
    7
    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
    8
    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,585
    2,651
    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,585
    2,651
    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,585
    2,651
    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,585
    2,651
    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
    623
    114
    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.
     
  14. minino666

    minino666 MDL Novice

    Nov 20, 2017
    8
    0
    0
    referring to Windows 10 disable_telemetry script, after fresh install get randomly (after some days of using) UPDATING WINDOWS then reboot and CRITICAL PROCESS DIED so cant boot any more (normal neither safe mode). The question is how can i log/record to KNOW WHICH is the misterious windows update who autoinstall then can boot never again, forcing to completly new fresh windows reinstall? any idea to solve mistery is welcome thanks
     
  15. BetaTesta

    BetaTesta MDL Senior Member

    Aug 6, 2022
    282
    92
    10
    I ran the script on this image and installed it back in September. All is fine. Now I want to install December updates using abbodi1406's W10UI script manually.
    I assume many tweaks are going to be lost, right?
     
  16. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,585
    2,651
    60
    #2476 freddie-o, Dec 29, 2024
    Last edited: Dec 29, 2024
    Windows update should be completely disabled, so it is a mystery -- if the disable_telemetry script ran successfully.
    disable_telemetry.png

    I've been using the script for years now and never encountered Windows update running
    Make sure the script "completed successfully" without any errors, like so


    No errors
    Code:
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19044.1288
    
    Disabling feature(s)
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19044.1288
    
    Disabling feature(s)
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19044.1288
    
    Disabling feature(s)
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19044.1288
    
    Disabling feature(s)
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19044.1288
    
    Disabling feature(s)
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19044.1288
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image Version: 10.0.19044.1288
    
    [==========================100.0%==========================]
    The operation completed successfully.
            1 file(s) copied.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Image File : F:\disable_telemetry\install.wim
    Image Index : 1
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.3636
    
    Exporting image
    [==========================100.0%==========================]
    The operation completed successfully.
    Press any key to continue . . .
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,585
    2,651
    60

     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,585
    2,651
    60
    Yes those SystemApps but mainly just these ones

    Code:
    rem == prevent SystemApps with telemetry from getting deployed ==
    set key=HKLM\SOFTHIVE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\InboxApplications
    for %%i in (
    AppRep.ChxApp
    CloudExperienceHost
    Client.AIX
    Client.CBS
    SecHealthUI
    ) do (
      for /f %%a in ('reg query "%key%" /f %%i /k ^| find /i "InboxApplications"') do if not errorlevel 1 (reg delete %%a /f)
    )
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. BetaTesta

    BetaTesta MDL Senior Member

    Aug 6, 2022
    282
    92
    10
    So next time I just run the above script before installing any new update?
    Is that what you mean?