Skip to content

Instantly share code, notes, and snippets.

Easy Telemetry Disable for 10/11

Prerequisites

  1. Upgrade to Enterprise edition of Windows 10/11 if you are running Home or Pro.
    • You can do this through the Change Edition option in the Extras menu in MAS.

Disabling Telemetry via Group Policy

  1. Open the Group Policy Editor. Search for "Edit Group Policy" in search or run gpedit.msc.
@alexander-hanel
alexander-hanel / bn-cheat.md
Last active August 3, 2025 00:22
Cheat Sheet for Binary Ninja
@ishad0w
ishad0w / aveyo_edge_removal.bat
Last active September 5, 2025 12:35
AveYo (Microsoft Edge Removal)
@(set "0=%~f0"^)#) & powershell -nop -c iex([io.file]::ReadAllText($env:0)) & exit /b
#:: just copy-paste into powershell - it's a standalone hybrid script
sp 'HKCU:\Volatile Environment' 'Edge_Removal' @'
$also_remove_webview = 1
## why also remove webview? because it is 2 copies of edge, not a slimmed down CEF, and is driving bloated web apps
$also_remove_widgets = 1
## why also remove widgets? because it is a webview glorified ad portal on msn and bing news cathering to stupid people
$also_remove_xsocial = 1
## why also remove xsocial? because it starts webview setup every boot - xbox gamebar will still work without the social crap
@ishad0w
ishad0w / microsoft_edge_uninstaller_21h1_ltsc.bat
Last active September 5, 2025 12:35
Microsoft Edge Uninstaller [Windows 10 LTSC 2021/21H1 Edition]
@echo off
@title Microsoft Edge Uninstaller [Windows 10 LTSC 2021/21H1 Edition]
ver
echo+
goto check_admin_permissions
:check_admin_permissions
echo Script must Run as Administrator! Detecting permissions...
net session >nul 2>&1
if %errorLevel% == 0 (
@MarlevPy
MarlevPy / greedy_cutting.py
Created August 5, 2019 07:06
Greedy 1D Cutting Optimization Algorithm - Developed when I needed to cut some wood planks for the new railing in the appartment I was building.
from dataclasses import dataclass
from typing import List
from warnings import warn
from collections import Counter
from prettytable import PrettyTable
@dataclass
class CutPiece: