[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,375
    2,277
    60
    #1481 freddie-o, Feb 27, 2022
    Last edited: Oct 9, 2023
  2. ralf ralf

    ralf ralf MDL Member

    May 11, 2017
    174
    24
    10
    In the occupied German Empire and controlled by the Allied Government of the Federal Republic of Germany:)
     
  3. ralf ralf

    ralf ralf MDL Member

    May 11, 2017
    174
    24
    10
  4. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,375
    2,277
    60

    No. You need to know how to compare files for changes.
     
  5. ralf ralf

    ralf ralf MDL Member

    May 11, 2017
    174
    24
    10
    I do not quite understand linguistically!?
     
  6. BraneStawm

    BraneStawm MDL Novice

    Apr 14, 2020
    37
    13
    0
    #1486 BraneStawm, Feb 27, 2022
    Last edited: Feb 28, 2022
    Freddie-o
    Could you add a note to your original script post to say these are the lines which need to be removed if you want to use OOBE:
    -------------------------------------------------------------------
    From "delete telemetry scheduled tasks" section:
    reg delete "HKLM\SOFTHIVE\Microsoft\Windows NT\CurrentVersion\Schedule\TaskCache\Tree\Microsoft\Windows\CloudExperienceHost" /f

    From "delete telemetry services" section:
    reg delete "HKLM\SYSHIVE\ControlSet001\Services\DiagTrack" /f
    reg delete "HKLM\SYSHIVE\ControlSet001\Services\dmwappushservice" /f
    ------------------------------------------------------------------
    Finally: At the end of the script delete this entry.

    rem == create panther folder and add unnatend.xml ==
    mkdir mount\Windows\Panther
    copy /y unattend.xml mount\Windows\Panther
    -------------------------------------------------------------------

    It may help those less familiar with it.
     
  7. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,375
    2,277
    60
    Thank you for testing. Will do
     
  8. BraneStawm

    BraneStawm MDL Novice

    Apr 14, 2020
    37
    13
    0
    Freddie-o
    You've got it back-to-front, removing those lines will ENABLE OOBE not get you stuck in OOBE. If you keep them in the script you will need to use your unattend.xml
     
  9. thatswhat i was thinking as cloudexperiencehost task is needed for oobe post phase or else will result in error so that one will use unattend to bypass machine as well as user oobe in xml tags of <oobe>
    but i was keeping myself restricted so that freddie-o will not think that i am trying to do bad for him .
    he has done a great job via sharing this telemetry removal script on MDL :worthy:

    as well as dmwappushseevice is needed for oobe as well as sysprep phase.
     
  10. ralf ralf

    ralf ralf MDL Member

    May 11, 2017
    174
    24
    10
    Ok, this is a somewhat new script and in itself so okay! I can use it then but still for LTSC 2021!??
     
  11. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,375
    2,277
    60
    That's what I said. Anyway I edited the post
     
  12. ralf ralf

    ralf ralf MDL Member

    May 11, 2017
    174
    24
    10
    How do I install other file types like MSU etc?
     
  13. The same way as suggested by freddie-o in his turorial comment via dism.
     
  14. ralf ralf

    ralf ralf MDL Member

    May 11, 2017
    174
    24
    10
    Ok, so it doesn't matter what file type it is, dism handles all file types. I didn't know that, didn't come up anywhere!
     
  15. No but i suggested you for your query regarding windows Updates nothing else ie either in form of extracted cabs from msu itself or either msu itself the same way.
     
  16. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,375
    2,277
    60
    #1497 freddie-o, Mar 1, 2022
    Last edited: Mar 27, 2022

    Extract the cabs from the msu then add them as TrustedInstaller
    install LCUs.png



    run_as_trustedinstaller.cmd
    Code:
    @echo off
    pushd "%~dp0"
    "%~dp0PowerRun_x64.exe" add-package.cmd


    add-package.cmd
    Code:
    @echo off
    
    rem == add latest servicing stack update ==
    dism /online /add-package:SSU-19041.1525-x64.cab /norestart
    
    rem == add latest cumulative update ==
    dism /online /add-package:Windows10.0-KB5010342-x64.cab /norestart
    
    rem == add latest .NET framework 3.5 and 4.8 update ==
    dism /online /add-package:Windows10.0-KB5009467-x64-NDP48.cab /norestart
    
    pause
     
  17. ralf ralf

    ralf ralf MDL Member

    May 11, 2017
    174
    24
    10
    Error 0x80070002---> What now??