[Guide]Way to Disable Keylogger/ Telemetry v3.55

Discussion in 'Windows 10' started by LiteOS, Oct 9, 2014.

Thread Status:
Not open for further replies.
  1. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    Heh... it certainly will. I'd recommend doing that last in the integration process, tho. it might break a future update.
     
  2. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,343
    1,048
    90
    Windows Component Store, "tells" windows update what Component are currently on OS
    it will not give updates for defender anymore
     
  3. gnugeek

    gnugeek MDL Member

    Nov 23, 2009
    171
    41
    10
    #623 gnugeek, Jul 31, 2015
    Last edited by a moderator: Apr 20, 2017
    I ran the disable telemetry batch script. So after reboot and running it again, it should say that telemetry is disabled. Would you want to re-enable it?

    But instead, it still says that the Telemetry is enabled and offers to disable it again and again.

    So your script I am afraid is not working or needs some modifications.

    Thank you for the effort.
     
  4. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    Hmm. I will tinker a bit.
     
  5. orlfman

    orlfman MDL Novice

    Jul 26, 2015
    3
    0
    0
    sorry for reasking, but really want to make sure does that reg key truly disable telemetry on home and pro? have you tested it to make sure no telemetry traffic is going on? again i don't mean to bug.

    and yeah, when i ran the script, it told me it was already disabled and would i like to reenable it, but i never added the key. so i ended up adding it manually.
     
  6. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    #626 murphy78, Jul 31, 2015
    Last edited by a moderator: Apr 20, 2017
    Okay try this for the disable telemetry script.
    I had some errors that were causing it to only work to disable, but not to re-enable:

    Disable-Telemetry.cmd:
    Code:
    @echo off
    
    
    title Disable/Enable Windows Telemetry
    color 1f
    :Begin UAC check and Auto-Elevate Permissions
    :-------------------------------------
    REM  --> Check for permissions
    >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
    
    
    REM --> If error flag set, we do not have admin.
    if '%errorlevel%' NEQ '0' (
    echo:
    echo   Requesting Administrative Privileges...
    echo   Press YES in UAC Prompt to Continue
    echo:
    
    
        goto UACPrompt
    ) else ( goto gotAdmin )
    
    
    :UACPrompt
        echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
        echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
    
    
        "%temp%\getadmin.vbs"
        exit /B
    
    
    :gotAdmin
        if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
        pushd "%CD%"
        CD /D "%~dp0"
    :--------------------------------------
    
    
    :Check the key:
    (reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry"|find /i "0x0")>NUL 2>NUL
    if %errorlevel% NEQ 0 GOTO :KEYOFF
    
    
    :KEYON
    echo ============================================================
    echo Windows Telemetry currently disabled.
    echo Would you like to re-enable it? (Y/N)
    echo ============================================================
    echo.
    choice /c yn /n
    If %ERRORLEVEL% NEQ 1 GOTO :QUIT
    
    
    Echo Deleting Telemetry Registry key
    REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /F>NUL 2>NUL
    IF %ERRORLEVEL% NEQ 0 GOTO :ERROR
    Echo.
    
    
    Echo Windows Telemetry enabled
    Echo.
    goto :QUIT
    
    
    
    
    :KEYOFF
    echo ============================================================
    echo Windows Telemetry is currently enabled.
    echo Would you like to disable it? (Y/N)
    echo ============================================================
    echo.
    choice /c yn /n
    If %ERRORLEVEL% NEQ 1 GOTO :QUIT
    
    
    Echo Changing Registry key
    reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry">NUL 2>NUL
    if %errorlevel% equ 1 REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /F>NUL 2>NUL
    REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /D 0 /T REG_DWORD /F>NUL 2>NUL
    IF %ERRORLEVEL% NEQ 0 GOTO :ERROR
    Echo.
    
    
    Echo Windows Telemetry disabled
    Echo.
    goto :QUIT
    
    
    
    
    :QUIT
    echo ============================================================
    echo Press any key to exit...
    echo ============================================================
    pause>NUL
    goto :EOF
    
    
    :ERROR
    echo ============================================================
    echo The script ran into an unexpected error setting reg key.
    echo Press any key to exit...
    echo ============================================================
    pause>NUL
    goto :EOF
     
  7. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    Well, it's hard to prove. You can get wireshark out and find if any of the vortex addresses are being accessed.
    If they are, is any data being sent? or is it a timed thing that just checks in?

    All of this stuff needs further testing.
     
  8. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Would be good to gather reg-keys/info and put all together, the Tweaks Thread is a formidable Mess :hmm:.

    Then one could try to merge into a script.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    A lot of times ppl post a tweak without any sort of explanation.
    I don't know about you, but I tend to avoid adding registry info if I don't know what it's supposed to do :(
    Yes, needs cataloging and sorting.
     
  10. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Same here, only set when you know what's for :D. We'll get it done, i'm optimistic.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Reminds me, there's always a nice hybrid code(abbodi: Powershell/s1ave: CMD) to change a reg-key with TI level and set back to TI afterwards :g:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. wk-952

    wk-952 MDL Member

    Sep 2, 2012
    116
    287
    10
    May i ask if this keylogger is present in the RTM build (10240.16384.150709-1700) or was it found in the beta/testing builds only ?
     
  13. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    It's an option during setup, yes. Settings->Privacy->writing and inking data
     
  14. zmeul86

    zmeul86 MDL Member

    Jun 17, 2014
    193
    78
    10
    hello master Murphy78, i have installed Windows 10 Professional X64.
    There is option Speech, inkink, & typing at Settings->PrivacyIn the right side there is a button Stop getting to know me
    Have to press it ?
    On the other hand, at option General have to switch off all the privacy options?
    I don't understand exactlly your text: It's an option during setup, yes
    This option appears during the OS installing?Thank you in advance
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. dubur

    dubur MDL Novice

    Jul 30, 2015
    6
    2
    0
    Did some catch up reading on the 60+ pages of this thread and I've concluded MS and their data logging in W10 is ridiculous. Seems like they've made it FAR more tedious to get rid of their snooping behavior than in previous versions of Windows.

    Is it possible that someone is working on an all-in-one patcher to remove all datalogging/keylogging/telemetry/bulls**t in one click (similar to Microsoft Toolkit or KMSpico)?

    As a consumer, I can only dream.
     
  16. Allo

    Allo MDL Member

    Jul 29, 2009
    133
    44
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Infamou5

    Infamou5 MDL Novice

    Sep 4, 2008
    16
    1
    0
    Nice clickbait. Now back testing the s$$t out of win10.
     
  18. UpGrade4

    UpGrade4 MDL Novice

    Aug 22, 2012
    44
    9
    0
    This is what i am waiting for something we can integrate into the iso and straight after setup it can run automatically and disable all the telemetry sh*t!
     
  19. Demencial777

    Demencial777 MDL Junior Member

    Dec 30, 2012
    91
    30
    0
    So... this means all of this keylogger thing is just paranoia and it just collects data to make this services run better?
    Well... that sounds better... but what is all this telemetry all about then? :eek:
    Sorry, I'm just confused about this... Thanks in advance for the answer :)
     
  20. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Information = Currency (does 'Google' ring a bell).
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...