[REPO] Windows 10 TELEMETRY REPOSITORY

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

  1. Sorter

    Sorter MDL Novice

    Mar 15, 2010
    12
    0
    0
    #2281 Sorter, Jun 29, 2024
    Last edited: Jun 29, 2024
    That's exactly what I use to rebuild the ISO.

    My process is:

    Mount untouched ISO
    Copy all files from ISO to arbitrary local directory
    Extract the specific version I want from the multiple edition ISO WIM
    Take the resulting WIM and run your script on it
    Replace original WIM in arbitrary local directory with this modified WIM
    Run Windows ADK on this folder to build new ISO
    Make bootable USB with Rufus

    Can you see any mistakes with this method?

    This does result in functional install media if I omit running the script.
     
  2. qwesta

    qwesta MDL Senior Member

    Jul 22, 2011
    350
    135
    10
    exactly, this is the best and easiest way to rebuild the ISO, after interchanging the .wim
     
  3. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,585
    2,651
    60
    idk anymore. never had that error in 22631 and 26100
    maybe something will come up
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Sorter

    Sorter MDL Novice

    Mar 15, 2010
    12
    0
    0
    Yeah I don't know either, pausing for now. Hopefully something does come up.

    Thanks anyway for your replies.
     
  5. Patch0

    Patch0 MDL Novice

    Jan 30, 2013
    7
    1
    0
    I have created a PowerShell script that blocks Windows Telemetry IPs and domains with hosts file, firewall and persistent routes. If something goes wrong, you can always undo the changes as the script makes a backup of the hosts file, firewall and persistent routes before making any changes.

    https:// github.com /yeah-Buddyy/Telemetry-Blocker
     
  6. Acideb135

    Acideb135 MDL Junior Member

    Jun 25, 2024
    68
    17
    0
    Thanks a lot for this script ,

    How do I run the scipt on the OS that is already installed, is it possible ?
     
  7. xakerz

    xakerz MDL Novice

    Jan 17, 2014
    33
    1
    0
    Looks Like it made to run on existing OS by downloading and running Telemetry-Blocker.ps1
     
  8. Acideb135

    Acideb135 MDL Junior Member

    Jun 25, 2024
    68
    17
    0
  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. Acideb135

    Acideb135 MDL Junior Member

    Jun 25, 2024
    68
    17
    0
    And do you know an app to see the Reg key and process during an installation ?
     
  11. 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...
  12. Acideb135

    Acideb135 MDL Junior Member

    Jun 25, 2024
    68
    17
    0
    Is there a rule that is created if i enable an option for example in SutUp, while you deleted it by default when installing Os ?

    Like a shutup that you have to restart every time you update.
     
  13. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,585
    2,651
    60
    Sorry i don't understand
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. Acideb135

    Acideb135 MDL Junior Member

    Jun 25, 2024
    68
    17
    0
    Sorry my bad english may be.

    Will there be a new key that will be created ? if I activate an option in ShutUp that your script may have probably deleted when building the OS .
    Can this be an issue ?

    You more undersrand ?
     
  15. freddie-o

    freddie-o MDL Expert

    Jul 29, 2009
    1,585
    2,651
    60
    It will just add new Registry keys but no harm in that.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. drew84

    drew84 MDL Expert

    Mar 13, 2014
    1,406
    2,419
    60
    #2300 drew84, Jul 10, 2024
    Last edited: Jul 10, 2024
    @freddie-o , re: disable_telemetry script

    Trying to implement the removal of 8dot3 filenames into your script
    wondering if this would work (given script is already elevated), or maybe provide a better solution... hopefully
    placing it immediately after mounting the image
    Code:
    rem == remove 8dot3 filenames from image ==
    fsutil 8dot3name strip /f /s /mountdir:mount
    
    ... a heads up This post in the 26100 thread suggests, if removing Defender you also need to remove Smart App Control... not currently in your script