Popular Post UpGrade Posted August 4, 2015 Popular Post Share Posted August 4, 2015 (edited) I IN NO WAY TAKE ANY CREDIT FOR THIS IT WAS TAKEN FROM MDL FORUM AND SOME POSTS BY MEMBERS ON THIS FORUM! Manual: Spoiler Windows 10 Telemetry Repo [MDL] (Home of Win 10 S-M-R-T Enable Disable v0.07.77) http://forums.mydigitallife.info/threads/63874-REPO-Windows-10-TELEMETRY-REPOSITORY Manual Guide v3.5 [by Lite8 - MDL]: (Press first spoiler button) Spoiler Homepage: http://forums.mydigitallife.info/threads/57339-Guide-Way-to-Disable-Keylogger [Guide]Way to Disable Keylogger/ Telemetry v3.5 Notices -Before The panic began, please note its only opinion calling Telemetry a Keylogger -This Topic is about ensure Keylogger/ Telemetry is disabled as much as possible but we cant be certain, Although after Testing its working as should Tut - Video https://youtu.be/HYzmztnCC4c Tested On Builds TH1 10240 - RS1 14393 I don't see the weird dns packets in server 2016 build 10.0.10514 [Guide]Way to Disable Keylogger/ Telemetry v3.5 Removing packages with Powershell script, need to run as TrustedInstaller Packages like: Windows defender, Telemetry, Onedrive, Cortana... This script can used also to make LTSB Like version #Preparation If u have OS with another lang change "*en-US*,*en-*Package*" to your lang For mounted wim, copy dism folder with lastest dism version, cmd to mount: Code: #Mount dism\dism /Mount-Wim /WimFile:install.wim /index:1 /MountDir:temp /ScratchDir:. #Removing packages - Mounted Wim 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 .\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 # Hive reg reg.exe load HKLM\111 ".\Windows\System32\config\software" # cd "HKLM:\111\Microsoft\windows\CurrentVersion\Component Based Servicing\Packages" # Remove Owners from reg $s | foreach { join-path $PSItem \owners | rd } # z: # save reg and unhive reg.exe unload HKLM\111 # remove packages $s | foreach { dism /ScratchDir:. /image:temp /Remove-Package /PackageName:$PSItem } #Preparation - DISABLE WINDOWS UPDATE & SYSTEM RESTORE WHILE USING THESE TOOLS !!!(credit goes to dobbelina) #Removing packages - Online 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 $s | foreach { dism /ScratchDir:. /image:temp /Remove-Package /PackageName:$PSItem /norestart } #Finalizing - Mounted Wim Code: #Cleanup dism\dism /image:temp /Cleanup-Image /StartComponentCleanup /ResetBase #Commit dism\dism /Commit-Wim /MountDir:temp /ScratchDir:. #Export dism\dism /Export-Image /SourceImageFile:install.wim /SourceIndex:1 /DestinationImageFile:install2.wim ; if u use ramdisk like me copy install2 to another folder and format the ramdisk to save time #OneDrive remove service Code: sc delete OneSyncSvc sc delete OneSyncSvc_XXXX #For Enterprise - open cmd.exe with admin run the code(credit goes to murphy78) Tested on Enterprise Code: REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection\ /v AllowTelemetry /t REG_DWORD /d 0 /f Use this Also for Other Editions Run cmd as admin then start the process use Sc.exe to delete the 3 services run this: Code: sc delete dmwappushsvc sc delete diagnosticshub.standardcollector.service sc delete diagtrack #Deny Access to Diagnosis Folder deny system accessing the file AutoLogger-Diagtrack-Listener.etl with cacls Code: icacls "C:\ProgramData\Microsoft\Diagnosis" /remove:g system /inheritance:r /deny system:(OI)(CI)f #Blocking Cortana v1.1 Change Search in Firewall advanced to block or run this in cmd with admin Code: Powershell Set-NetFirewallRule -DisplayName search -Action Block #Disabling "Windows Connect Now - Config Registrar" Powershell Set-service wcncsvc -StartupType disabled ::todo #Blocking with Firewall #OneDrive #Removing MetroApps Extreme / TESTERS ONLY / ADVANCED USERS * This Method should break Internet connective for the OS internal parts * Firefox and standalone application can connect outside * if application use Internal connective OS's components it should break * might block backdoors planted in OS Step1 Run autoruns.exe Uncheck hide windows entries Search for v6 then uncheck them if u cant uncheck remove them Code: to restore default settings run netsh winsock reset Steps2 MMC -> add snaps-in "cert" -> Computer account, set the cert like in the picture below http://i59.tinypic.com/24gul9t.jpg Step3 Code: #Sisable all the services that doesn't need the OS to boot, u might encounter some problems, ask i might remember #Run as trusedinstaller Get-Service -Exclude DeviceInstall,Netman,NetSetupSvc,VaultSvc,vds,Appinfo,StateRepository,SysMain,seclogon,EventLog,KeyIso,trustedinstaller,Eaphost,dot3svc,BFE,BrokerInfrastructure,CoreMessagingRegistrar,DcomLaunch,Dhcp,LSM,PlugPlay,AudioEndpointBuilder,Audiosrv,ProfSvc,RpcEptMapper,RpcSs,sppsvc,CryptSvc,DeviceInstall,EventSystem,msiserver,nsi,Power,Spooler,swprv,UserManager | Set-Service -StartupType Disabled #PLS BECAREFULL WITH THIS ONE ITS HARD TO SET IT BACK, ONLY VIA REGEDIT ITS POSSBIEL Windows connection manager and wlan auto config needed for WIFI #BUG - nvidia driver wont install - fixed #bug - taskbar loaded after a min - pnidui.dll - network dll does this problem need to be removed Semi-Extreme - Lossing ipv6 protocol Explaining - Windows 10 might use those protocols to tunneling the data out to internet. the whole idea of this Method eventually to disable totally network protocols that integrate to OS which make IE / OS unable to go out #Disabling IPv6 Code: Powershell Set-service Tcpip6 -StartupType disabled Powershell Set-service wanarpv6 -StartupType disabled Powershell Set-service iphlpsvc -StartupType disabled Windows Firewall Configuration - Truly Block EVERYTHING... [by CODYQX4-MDL] http://forums.mydigitallife.info/threads/64640-Windows-Firewall-Configuration-Truly-Block-EVERYTHING Another way blocking telemetry in Microsoft Windows 10 ( using firewall rules ) - [by CoolZoid] http://www.nsaneforums.com/topic/252503-another-way-blocking-telemetry-in-microsoft-windows-10/ Tools: Microsoft Telemetry Tools Bundle v2.42 Spoiler A Collection of Tools with installer and a launcher created by me. Description: A Collection of Telemetry blocking tools with an installer and a launcher created by me. /////////////////////////////////////////////////////////////////////////////////////////////////////////////// • Type: Install | Portable • System: x86 | x64 • Languages: English • Included Apps: • Telemetry Blockers / Disablers: Blackbird v1.0.85.3 | x86 | x64 O&O ShutUp10++ v1.9.1435.396 | With Custom Settings WPD v1.5.2042 RC 1 WindowsSpyBlocker v4.39.0 W10Privacy v4.1.2.3 Privatezilla v0.50.0 SharpApp v0.46.1 Spybot Anti-Beacon v3.0.8 • Windows Update Apps: Sledgehammer v2.7.3 RC1 WuMgr v1.1b StopWinUpdates v2.9 StopUpdates10 v4.0.2023.0306 Windows Update MiniTool v20.12.2016 WAU (Windows Automatic Updates) Manager v3.3.1.0 Wu10Man v4.4.0 Windows Update Toggle v10.1 Patchfluent v0.12.2 • Extras: o TTLauncher v1.22 o Option to exclude Launcher and program folder in Windows Defender (exclusions Removed when uninstalled). To Remove exclusions when updating, uncheck the option to add them, then reinstall (Not recommended). Download: Site: https://www.mirrored.to Sharecode [?]: /files/ZLIME101/Microsoft_Telemetry_Tools_Bundle_v2.42.7z_links /////////////////////////////////////////////////////////////////////////////////////////////////////////////// [File Hashes] [Original Filename] Microsoft Telemetry Tools Bundle v2.42 [Repack].exe [MD5] 930A5C68B7AC3139950DB6F3D5797B46 [SHA-1] 10E9EB1E3F357D226DE838325B61242943CF473A [SHA-256] 696BE0A0D9B223DFB6445397E664B2D9A929293ACD34D7F40931367115BDCC5E /////////////////////////////////////////////////////////////////////////////////////////////////////////////// Changelog: Spoiler Changelog: • v2.42 [*] Updated WindowsSpyBlocker to v4.39.0 [*] Updated Blackbird to v1.0.85.3 [*] Updated O&O ShutUp10++ to v1.9.1435.396 [*] Updated W10Privacy to v4.1.2.3 [*] Updated StopWinUpdates to v2.9 [*] Updated WAU Manager (Windows Automatic Updates) to v3.3.1.0 [*] Updated StopUpdates10 to v4.0.2023.0306 • v2.41 [*] Updated WindowsSpyBlocker to v4.38.0 [*] Updated O&O ShutUp10++ to v1.9.1427 [*] Updated Wu10Man to v4.4.0 • v2.40 [*] Spybot Anti-Beacon v3.8 [*] Updated WAU (Windows Automatic Updates) Manager to v3.1.0.0 • v2.39 [*] Updated O&O ShutUp10++ to v1.9.1426 • v2.38 [*] Updated WPD to v1.5.2042 RC 1 •v2.37 [*] Updated WAU (Windows Automatic Updates) Manager to v3.0.0.0 • v2.36 [*] Updated TTLauncher to v1.22 [*] Updated O&O ShutUp10++ to v1.9.1425 [*] Updated O&O ShutUp10++ Custom Settings [*] Updated W10Privacy to v3.8.0.0 • v2.35 [*] Updated WindowsSpyBlocker to v4.37.1 • v2.34 [*] Updated W10Privacy to v3.7.0.9 • v2.33 [*] Updated O&O ShutUp10 to v1.8.1423 [*] Updated StopUpdates10 to v3.6.2021 • v2.32 [*] Updated O&O ShutUp10 v1.8.1422 [*] Updated W10Privacy to v3.7.0.8 • v2.31 [*] Updated WindowsSpyBlocker to v4.36.0 [*] Updated W10Privacy to v3.7.0.6 [*] Updated Privatezilla to v0.50.0 [*] Updated Wu10Man to v4.3.0 [*] WAU (Windows Automatic Updates) Manager to v2.9.0.0 • v2.30 [*] Updated O&O ShutUp10 to v1.8.1420.321 [*] Updated WPD to v1.4.1834 [*] Updated WindowsSpyBlocker to v4.35.0 • v2.29 [*] Updated O&O ShutUp10 to v1.8.1418.309 • v2.28 [*] Updated O&O ShutUp10 to v1.8.1417.287 • v2.27 [*] Updated W10Privacy to v3.7.0.4 [*] Updated Privatezilla to v0.43.0 • v2.26 [*] Updated WPD to v1.4.1765 [*] Updated TTLauncher to v1.21 •v2.25 [*] Updated WindowsSpyBlocker to v4.34.2 [*] Updated W10Privacy to v3.7.0.3 • v2.24 [*] Updated StopWinUpdates to v2.8 • v2.23 [*] Updated WAU Manager v2.8.0.0 • v2.22 [*] Updated WAU Manager v2.7.0.0 • v2.21 [*] Updated W10Privacy v3.7.0.1 • v2.20 [*] Updated WPD to v1.4.1722.0 • v2.19 [*] Updated W10Privacy v3.7.0.0 • v2.18 [*] Updated Blackbird x86 to v1.0.80.2 [*] Updated W10Privacy v3.6.1.1 • v2.17 [*] Updated Blackbird x64 to v1.0.80.2 • v2.16 [*] Updated WindowsSpyBlocker v4.34.0 [*] Updated Sledgehammer v2.7.3 RC1 • v2.15 [*] Updated Privatezilla to v0.42.70 • v2.14 [*] Updated Privatezilla to v0.42.50 • v2.13 [*] Updated W10Privacy v3.6.0.1 • v2.12 [*] Updated W10Privacy v3.5.1.0 [*] Updated Privatezilla to v0.42.20 • v2.11 [*] Updated Blackbird to v1.0.80.1 [*] Updated Privatezilla to v0.42.0 • v2.10 [*] Updated O&O ShutUp10 v1.8.1415.283 • v2.09 [*] Updated Privatezilla to v0.41.10 • v2.08 [*] Updated O&O ShutUp10 v1.8.1414.283 • v2.07 [*] Updated Privatezilla to v0.41.0 • v2.06 [*] Updated Privatezilla to v0.40.2 • v2.05 [*] Updated Wu10Man to v4.2.1 • v2.04 [*] Updated Privatezilla to v0.40.1 • v2.03 [*] Updated Privatezilla to v0.40.0 • v2.02 [*] Updated WindowsSpyBlocker to v4.33.1 [*] Updated Wu10Man to v4.2.0 • v2.01 [*] Updated Privatezilla to v0.30.2 • v2.00 [*] Updated WindowsSpyBlocker to v4.32.0 • v1.99 [*] Added/Updated Privatezilla to v0.30.0 (Previously SharpApp) [*] Added Patchfluent v0.12.2 [*] Updated TTLauncher to v1.20 • v1.98 [*] Updated SharpApp to v0.46.1 • v1.97 [*] Updated Wu10Man to v4.1.0 • v1.96 [*] Updated WindowsSpyBlocker to v4.31.1 • v1.95 [*] Updated WindowsSpyBlocker to v4.31.0 • v1.94 [*] Updated Spydish to v0.20.0 • v1.93 [*] Updated Spydish to v0.16.0 [*] Updated WPD to v1.3.1577 • v1.92 [*] Updated WAU Manager v2.5.1.0 • v1.91 [*] Updated Spydish to v0.15.0 • v1.90 [*] Updated WindowsSpyBlocker to v4.30.0 • v1.89 [*] Updated Spydish to v0.14.1 • v1.88 [*] Updated Spydish to v0.14.0 [*] Updated SharpApp to v0.45.10 [*] Updated W10Privacy to v3.5.0.0 • v1.87 [*] Updated Spydish to v0.13.0 • v1.86 [*] Updated O&O ShutUp10 v1.8.1413.250 | Updated Custom Settings • v1.85 [*] Updated Spydish to v0.12.3 • v1.84 [*] Updated O&O ShutUp10 v1.8.1412.240 • v1.83 [*] Updated SharpApp to v0.45.10 • v1.82 [*] Updated Spydish to v0.12.0 • v1.81 [*] Updated Spydish to v0.11.2 [*] Updated W10Privacy to v3.4.0.2 [*] Updated TTLauncher to v1.18 • v1.80 [*] Updated O&O ShutUp10 to v1.8.1411 [*] Updated Spydish to v0.11.0 • v1.79 [*] Updated StopUpdates10 to v3.5.0.115 • v1.78 [*] Added Spydish v0.10.1 [*] Updated Sledgehammer to v2.7.2 [*] Updated TTLauncher to v1.17 [*] Removed Debotnet • v1.77 [*] Updated SharpApp to v0.44.20 • v1.76 [*] Updated SharpApp to v0.43.0 [*] Updated WPD to v1.3.1532 [*] Updated TTLauncher to v1.16 [*] Added Wu10Man v4.0.0 • v1.75 [*] Updated SharpApp to v0.42.1 • v1.74 [*] Updated SharpApp to v0.41 • v1.73 [*] Updated SharpApp to v0.40.1 • v1.72 [*] Updated SharpApp to v0.35.0 • v1.71 [*] Updated SharpApp to v0.34.4 • v1.70 [*] Updated O&O ShutUp10 to v1.8.1410 | Updated Custom Settings • v1.69 [*] Updated TTLauncher to v1.14 • v1.68 [*] Added SharpApp v0.34.1 [*] Updated TTLauncher to v1.12 • v1.67 [*] Updated WindowsSpyBlocker to v4.29.0 • v1.66 [*] Updated Debotnet to v0.7.8 • v1.65 [*] Updated Debotnet to v0.7.6 • v1.64 [*] Updated WindowsSpyBlocker to v4.28.1 • v1.63 [*] Updated Debotnet to v0.7.510 • v1.62 [*] Updated Debotnet to v0.7.0 [*] Updated O&O ShutUp10 to v1.8.1409 [*] Updated StopWinUpdates to v2.7 • v1.61 [*] Updated WAU Manager to v2.5.0.0 • v1.60 [*] Updated Debotnet to v0.6.7 • v1.59 [*] Updated Debotnet to v0.6.6 • v1.58 [*] Updated WAU Manager to v2.4.0.0 • v1.57 [*] Updated Debotnet to v0.6.503 • v1.56 [*] Updated Debotnet to v0.6.5 • v1.55 [*] Updated Debotnet to v0.6.4 • v1.54 [*] Updated WindowsSpyBlocker to v4.28.0 • v1.53 [*] Updated Debotnet to v0.6.3 • v1.52 [*] Updated O&O ShutUp10 to v1.7.1408 • v1.51 [*] Updated O&O ShutUp10 to v1.7.1407 • v1.50 [*] Updated Debotnet to v0.5.4 • v1.49 [*] Updated Debotnet to v 0.5.3 • v1.48 [*] Updated O&O ShutUp10 to v1.7.1406 • v1.47 [*] Updated W10Privacy to v 3.4.0.1 [*] Updated Debotnet to v 0.5.2 • v1.46 [*] Updated TTLauncher to v1.10 • v1.45 [*] Updated Debotnet to v0.5.0 [*] Updated TTLauncher to v1.9 • v1.44 [*] Updated WAU Manager to v2.3.0.0 • v1.43 [*] Updated Debotnet to v0.4.5 • v1.42 [*] Updated WindowsSpyBlocker to v4.27.1 • v1.41 [+] Added Debotnet v0.4.0 [*] Updated TTLauncher to v1.8 • v1.40 [*] Updated W10Privacy to v3.4.0.0 • v1.39 [*] Updated WAU Manager to v2.2.0.0 • v1.38 [*] Updated WuMgr to v1.1b • v1.37 [*] Updated WindowsSpyBlocker to v4.26.0 • v1.36 [*] Updated O&O ShutUp10 to v1.7.1405 • v1.35 [*] Updated O&O ShutUp10 to v1.7.1404 • v1.34 [*] Updated W10Privacy to v3.3.2.1 • v1.33 [*] Updated W10Privacy to v3.3.2.0 • v1.32 [*] Updated WAU Manager to v2.1.0.0 • v1.31 [*] Updated WindowsSpyBlocker to v4.25.0 • v1.30 [*] Updated Blackbird to v1.0.79.3 • v1.29 [*] Updated WPD to v1.3.1323 • v1.28 [*] Updated StopUpdates10 to v3.1.101 • v1.27 [*] Updated TTLauncher to v1.6 [*] Updated WuMgr to v1.0 [*] Added WAU (Windows Automatic Updates) Manager v2.0.0.0 • v1.26 [*] Updated Blackbird to v1.0.79.2 • v1.25 [*] Updated WindowsSpyBlocker to v4.24.1 • v1.24 [*] Updated StopUpdates10 to v3.0.100 • v1.23 [*] Updated W10Privacy to v3.3.1.0 • v1.22 [*] Updated WindowsSpyBlocker to v4.24.0 • v1.21 [*] Updated Blackbird to v1.0.79.1 • v1.20 [*] Updated O&O ShutUp10 to v1.6.1403 • v1.19 [*] Updated W10Privacy to v3.3.0.4 • v1.18 [*] Updated WindowsSpyBlocker to v4.23.1 • v1.17 [*] Updated Blackbird to v1.0.79 • v1.16 [*] Updated WindowsSpyBlocker to v4.22.3 • v1.15 [+] Added Windows Update Tools! [*] Updated Launcher to v1.4 • v1.14 [*] Updated Blackbird to v1.0.78 • v1.13 [*] Updated Blackbird to v1.0.75 • v1.12 [*] Updated WindowsSpyBlocker to v4.22.2 • v1.11 [*] Updated WindowsSpyBlocker to v4.22.1 • v1.10 [*] Updated WPD to v1.3.1203 • v1.9 [*] Updated Blackbird to v1.0.7 • v1.8 [*] Updated W10Privacy to v3.3.0.3 • v1.7 [*] Updated W10Privacy to v3.3.0.2 • v1.6 [*] Updated Blackbird to v1.0.6 • v1.5 [*] Updated TTLauncher to v1.2 [*] Updated Changelog so latest version displays first • v1.4.1 [*] Updated TTLauncher to v1.1 • v1.4 [*] Updated WindowsSpyBlocker to v4.22.0 • v1.3 [*] Updated WPD to v1.3.1164 [*] Information Updated • v1.2 [+] Updated O&O ShutUp10 to v1.6.1402 • v1.1 [*] Updated WindowsSpyBlocker to v4.21.0 • v1.0 [+] Initial Release Windows 10 Lite v9 Spoiler Instructions: 1. download Windows 10 Lite 2. extract, rename to Win10Lite (easier to call later) 3. put Win10Lite folder in root of Windows 10 ISO using UltraISO 4. burn to DVD 5. install Windows 10 as normal 6. press Shift + F10 at Personalization screen. (where it asks for User Account name, Time Zone, etc.) 7. a command prompt will appear 8. enter: cd x:\Win10Lite (replace x with your DVD drive letter) 9. enter: start rmApps.cmd 10. it will ask which features you'd like to remove (i recommend skipping Association tweaks) 11. close CMD window and continue with installation until complete Homepage: http://sourceforge.net/projects/windows-10-lite Download: https://sourceforge.net/projects/windows-10-lite/files/ https://sourceforge.net/projects/windows-10-lite/files/WinLite10V9.zip/download Private WinTen v0.85 Spoiler Private WinTen is an open-source application that lets you tweak a wide range of privacy-related settings and disable Windows features that can’t be turned off normally. Moreover, it comes with a front-end for the built-in firewall. Homepage & Download: https://github.com/DavidXanatos/priv10/releases Repack & Portable: Download: Site: https://www.mirrored.to Sharecode [?]: /files/1VOQGNQY/Private_Win10_v0.85_[Repack].exe_links Blackbird v6 v1.0.85.3 [Works with Win 7/8/8/1/10] Spoiler Blackbird was designed to alleviate spending hours on tweaking your privacy settings by using some known and less-known techniques to fully disarm Windows without leaving behind even the smallest possible footprint. There are other tools that claim to block Windows spying but they are cumbersome to use and not as powerful or are limited in scope. So the author took Windows apart, piece by piece, analyzed web traffic, system calls, file changes,etc., compared different configurations, designed and built a stand-alone tool and spent hundreds of hours on beta testing so anyone can use it and it gets the job done right. Block Windows spyware, on both the application and network level, with dynamic filtering and without editing the HOSTS file or firewall settings as well as preventing diagnostic, password, contact, URL, SMS, handwriting, location, and P2P-update sharing. Updated frequently and regularly, as long as Windows gets updates so will Blackbird. Blackbird Features: Disables OneDrive Disables Cortana Disables Bing-integration Disables Wi-Fi Sense Disables system-wide Telemetry on all Windows versions Disables Xbox Live services Disables web content evaluation / URL check-in ("SmartScreen") Disables Windows Media Online DRM Disables Windows P2P Update sharing Disables all application metric collection agents Disables all AutoLoggers Disables start menu ads Prevents all location/contacts/handwritting/password sharing Prevents cross-device synchronization Patches various data-leaks (IE/EDGE/Defender/Explorer/MRT) Removes Windows Genuine Advantage (WGA) Disables Diagnostic Tracking / "Connected User Experiences and Telemetry" service Disables WAP-push Message Routing service Removes your unique Ad-ID tracking token Removes Windows 10 upgrade setup files on Vista, 7, 8, 8.1 Removes a bunch of Windows Vista, 7, 8, 8.1 telemetry updates Blocks 100+ different Microsoft tracking/telemetry/ad servers (supports IPv6/IPv4, Wifi/Eth) bonus (some) Youtube, Skype, Facebook ads blocked Blackbird can also be used via CMD Prompt with the following switches available: blackbird -v > Verbose mode. Displays additional information on all changes as they're being made. blackbird -s > Silent mode. No additional user interaction required, good for scripts. blackbird -r > Recovery mode. Restores all values changed by Blackbird to default Microsoft values. blackbird -k > Kill Cortana completely (prevent searchUI.exe from loading). blackbird -d > Disable Windows Defender. blackbird -h > Disable Hibernation (deletes hiberfil.sys file). blackbird -u > Disable automatic installation of updates / Sets to manual download and install only. blackbird -m > Disable automatic installation of Windows Malicious Removal Tool (MRT) updates. blackbird -? > Displays help information. Homepage: http://www.getblackbird.net/ Download: x64: https://www.getblackbird.net/download/Blackbird_v1.0.80.1_x64.zip x86: https://www.getblackbird.net/download/Blackbird_v1.0.80.1_x32.zip O&O ShutUp10++ v1.9.1435.396 Spoiler Homepage: http://www.oo-software.com/en/shutup10 Download: https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe https://dl5.oo-software.com/files/ooshutup10/OOSU10.zip WPD - Windows Privacy Dashboard v1.5.2042 RC 1 Spoiler Homepage: https://getwpd.com/ Download: https://getwpd.com/get/latest.zip WindowsSpyBlocker v4.39.0 Spoiler Homepage, Download & Source Code: https://github.com/crazy-max/WindowsSpyBlocker/releases Spybot Anti-Beacon v3.8 Spoiler Homepage: https://www.safer-networking.org/spybot-anti-beacon/ https://forums.spybot.info/showthread.php?72686-Spybot-Anti-Beacon-for-Windows-10&s=05d3a6b8bce861478d88e4acbd64ca00 Setup: https://download.spybot.info/AntiBeacon/SpybotAntiBeacon-2.2-setup.exe Portable (Stand-Alone): https://download.spybot.info/AntiBeacon/StandAlone/SDAntiBeacon-1.7.exe Portable (PAF): https://download.spybot.info/AntiBeacon/Portable/SpybotAntiBeaconPortable-safer-networking.org_2.2_Dev_Test_6_-_64bit.paf.exe W10Privacy v4.1.2.3 Spoiler Homepage: http://www.winprivacy.de/english-home/ Download: http://www.winprivacy.de/deutsch-start/download/ Privatezilla v0.50.0 Spoiler Homepage: https://github.com/builtbybel/privatezilla Download: https://github.com/builtbybel/privatezilla/releases SharpApp v0.46.1 Spoiler Homepage: http://www.mirinsoft.com/ms-apps/sharpapp Download: https://github.com/mirinsoft/sharpapp/releases Debotnet v0.7.8 Spoiler Homepage: https://www.mirinsoft.com/ms-apps/debotnet Download: https://github.com/Mirinsoft/Debotnet/releases Disable Windows 10 Tracking v3.2.3 Spoiler Homepage & Download: https://github.com/10se1ucgo/DisableWinTracking/releases/ Destroy Windows Spying v1.0.1.0 [Works with Win 7/8/8/1/10] [NOT RECOMMENDED AS NOT UPDATED ANYMORE] Spoiler Description: An automatic tool for removing Telemetry in Windows 10 (One click tool). Homepage, Download & Source Code: Windows 10: https://github.com/Wohlstand/Destroy-Windows-10-Spying/releases/tag/1.0.1.0-realWindows 7-8.1: https://github.com/Wohlstand/Destroy-Windows-10-Spying/releases/tag/2.2.2.2-8 Edited May 22, 2023 by UpGrade Updated to Latest Versions dabourzannan, hdhxppro, 2sub and 42 others 25 20 Quote Link to comment Share on other sites More sharing options...
UpGrade Posted August 5, 2015 Author Share Posted August 5, 2015 OP updated with all tools and ways i know of i will try to update as much as possible if any of you catch updates before me and want to post please feel free to do so in this topic.Wont be able to update from the end of this week until the end of the month as i am away. Quote Link to comment Share on other sites More sharing options...
Jordan Posted August 6, 2015 Share Posted August 6, 2015 DoNotSpy 10.1.0.0.1http://www.datafilehost.com/d/9efb35bc Quote Link to comment Share on other sites More sharing options...
UpGrade Posted August 6, 2015 Author Share Posted August 6, 2015 (edited) Destroy Windows 10 Spying v1.4.1OP UPDATED! Edited August 6, 2015 by UpGrade Quote Link to comment Share on other sites More sharing options...
Chancer Posted August 6, 2015 Share Posted August 6, 2015 I think I will wait a while to see which tool surfaces as the best. Quote Link to comment Share on other sites More sharing options...
UpGrade Posted August 6, 2015 Author Share Posted August 6, 2015 Destroy Windows 10 Spying v1.4.2OP UPDATED! Quote Link to comment Share on other sites More sharing options...
jcvo Posted August 6, 2015 Share Posted August 6, 2015 Destroy Windows 10 Spying v1.4.2OP UPDATED!Please add direct link to the application layers already that web site is in Russian and not understanding anything Quote Link to comment Share on other sites More sharing options...
UpGrade Posted August 6, 2015 Author Share Posted August 6, 2015 (edited) Destroy Windows 10 Spying v1.4.2OP UPDATED!Please add direct link to the application layers already that web site is in Russian and not understanding anythingLink added: Thanks to November_Ra1n Edited August 6, 2015 by UpGrade Quote Link to comment Share on other sites More sharing options...
Jordan Posted August 6, 2015 Share Posted August 6, 2015 Found "Novicorp.Remove.Windows.10.Spying.1.0.0000"Link: http://downloadserver4.novicorp.com/ded5f59811726173/Novicorp%20Remove%20Windows%2010%20Spying%201.0.0000%20Portable.zipyou should check it and add it to first post if you wish. Quote Link to comment Share on other sites More sharing options...
UpGrade Posted August 6, 2015 Author Share Posted August 6, 2015 (edited) Found "Novicorp.Remove.Windows.10.Spying.1.0.0000"Link: http://downloadserver4.novicorp.com/ded5f59811726173/Novicorp%20Remove%20Windows%2010%20Spying%201.0.0000%20Portable.zipyou should check it and add it to first post if you wish.Thanks added to OP could not find a homepage for it and novicorp doesnt list it under projects any links ? Edited August 6, 2015 by UpGrade Quote Link to comment Share on other sites More sharing options...
Jordan Posted August 6, 2015 Share Posted August 6, 2015 no, sorry! angel 1 Quote Link to comment Share on other sites More sharing options...
Greed93 Posted August 6, 2015 Share Posted August 6, 2015 Found "Novicorp.Remove.Windows.10.Spying.1.0.0000"Link: http://downloadserver4.novicorp.com/ded5f59811726173/Novicorp%20Remove%20Windows%2010%20Spying%201.0.0000%20Portable.zipyou should check it and add it to first post if you wish.Thanks added to OP could not find a homepage for it and novicorp doesnt list it under projects any links ?https://wintoflash.com/download/en/ Quote Link to comment Share on other sites More sharing options...
jcvo Posted August 20, 2015 Share Posted August 20, 2015 new updates Quote Link to comment Share on other sites More sharing options...
UpGrade Posted August 25, 2015 Author Share Posted August 25, 2015 new updatesJust got back from holiday will update later today Quote Link to comment Share on other sites More sharing options...
UpGrade Posted August 26, 2015 Author Share Posted August 26, 2015 (edited) OP UPDATED NEW VERSIONS FOR MOST APPS! and added Win10 SpyStop v1.1.2 & O&O ShutUp10 v1.0.1343 Edited August 26, 2015 by UpGrade Quote Link to comment Share on other sites More sharing options...
Cereberus Posted August 27, 2015 Share Posted August 27, 2015 how effective is this O&O ShutUp10 v1.0.1343 compared to the other methods ? Quote Link to comment Share on other sites More sharing options...
ugurano Posted August 28, 2015 Share Posted August 28, 2015 great tools thx Quote Link to comment Share on other sites More sharing options...
UpGrade Posted August 29, 2015 Author Share Posted August 29, 2015 (edited) Disable Windows 10 Tracking v2.3 RELEASED!This version includes a fix for errors with Skype and Mail. To apply the fix, open the program and press the "Fix Skype/Mail" button. Edited August 29, 2015 by UpGrade Quote Link to comment Share on other sites More sharing options...
JackRabbit Posted August 30, 2015 Share Posted August 30, 2015 This needs to be pinned :)Great collection you have going! Quote Link to comment Share on other sites More sharing options...
Jordan Posted August 30, 2015 Share Posted August 30, 2015 (edited) Spybot Anti-Beacon for Windows 10 1.2http://www.nsaneforums.com/topic/250839-updated-spybot-anti-beacon-for-windows-10-12/Disable Windows 7/8/8.1 Telemetry (+Bonus Services) Version 0.2.4http://www.nsaneforums.com/topic/251030-disable-windows-7881-telemetry-bonus-services-version-021/ Edited August 30, 2015 by jordan4x Quote Link to comment Share on other sites More sharing options...
UpGrade Posted August 31, 2015 Author Share Posted August 31, 2015 (edited) Manual Guide Updated! and added links forSpybot Anti-Beacon for Windows 10 v1.2.0.19&Disable Windows 7/8/8.1 Telemetry (+Bonus Services) v0.2.5Thanks to jordan4xand added Link for Windows 10 Telemetry Repo [MDL] (Home of Win 10 S-M-R-T Enable Disable v0.07.77) Edited August 31, 2015 by UpGrade Quote Link to comment Share on other sites More sharing options...
Alanon Posted August 31, 2015 Share Posted August 31, 2015 In my experience, the ShutUp tool works best, you might supplement it with Anti-Beacon afterwards, just for a second opinion, if you will. Other tools had the unfortunate side effect of cutting off the internet off all metro apps. Quote Link to comment Share on other sites More sharing options...
Jordan Posted August 31, 2015 Share Posted August 31, 2015 Additional infos @Winaero:How to disable Telemetry and Data Collection in Windows 10http://winaero.com/blog/how-to-disable-telemetry-and-data-collection-in-windows-10/ Quote Link to comment Share on other sites More sharing options...
UpGrade Posted September 1, 2015 Author Share Posted September 1, 2015 (edited) Destroy Windows 10 Spying v1.5 Build 328 Relased Edited September 1, 2015 by UpGrade Quote Link to comment Share on other sites More sharing options...
UpGrade Posted September 2, 2015 Author Share Posted September 2, 2015 Updated OP whith links for:BlockWindows&Windows Privacy Tweaker v1.0.5723 Build 41941 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.