[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. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    50,320
    106,593
    450
    Windows 7 was introduced in 2009 (july 22. 2009), wasn't it? What was wrong with it?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. haz367

    haz367 MDL Addicted

    Jan 11, 2020
    823
    1,490
    30
    excuse me for bumping this one....

    After reading lots...i like to test cbsenum to remove packages... I have no clue howto run this tool? There's no exe in the zip? Noticed cbsenum_x64.exe but can't find it...

    Thx for any tips :)

    Code:
    ### Fully Automatic Removing Packages / Lite'en Windows 10 / 8.x, by Lite8@MDL / Aviv00@MSFN ###
    
    #Get packages list excluding en-us packages
    $s = dir c:\Windows\servicing\Packages\*.cat -Exclude *en-US*,*en-*Package*
    # Filter Packages
    $s = (dir $s -Include  *WindowsFeedback*,*Windows-Skype-ORTC*,*Windows-Prerelease*,*Windows-DiagTrack*,*Windows-ContactSupport*,*OneCore-Maps*,*OneDrive*,*TroubleShooting*,*Search2*,*Cortana*,*Xbox*,*Defender*  -Exclude *AutoMerged-xbox*).BaseName
    #Count
    $s; $s.count
    #
    cd "HKLM:\Software\Microsoft\windows\CurrentVersion\Component Based Servicing\Packages"
    # Remove Owners from reg
    $s | foreach { join-path $PSItem \owners | rd }
    #Set location to c:
    c:
    #Remove packages 3.5
    $s | out-file packagesfile.txt
    #Run cbsenum,File, Uninstall by txt, choose packagesfile.txt, restart, DONE
     
  3. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,353
    1,062
    90
    cbsenum need to be run as Trusted Installer (look up in google or here )
    right click on the package, manage -> decouple
    then uninstall

    the code is for running in powershell also with system or Trusted Installer privilege
     
  4. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,353
    1,062
    90
    Im still using the same version from years ago
    no problem at all :)

    the exe is in the zip file
     
  5. Mvp77

    Mvp77 MDL Junior Member

    May 16, 2016
    58
    4
    0
    #987 Mvp77, May 6, 2022
    Last edited: May 6, 2022
    Anyone knows how to make a bulk (script) removal with CBSEnum?
    I mean... does it have any kind of cmdlet?
     
  6. pm67310

    pm67310 MDL Guru

    Sep 6, 2011
    3,490
    2,713
    120
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    50,320
    106,593
    450
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. ancestor

    ancestor MDL Guru

    Jun 26, 2007
    3,016
    6,228
    120
    Locked as requested.