Skip to content

Instantly share code, notes, and snippets.

@DewArmy
DewArmy / remove_crw.cmd
Created May 5, 2016 01:56 — forked from xvitaly/remove_crw.cmd
Remove telemetry updates for Windows 7 and 8.1
@echo off
echo Uninstalling KB3075249 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3075249 /quiet /norestart
echo Uninstalling KB3080149 (telemetry for Win7/8.1)
start /w wusa.exe /uninstall /kb:3080149 /quiet /norestart
echo Uninstalling KB3021917 (telemetry for Win7)
start /w wusa.exe /uninstall /kb:3021917 /quiet /norestart
echo Uninstalling KB3022345 (telemetry)
start /w wusa.exe /uninstall /kb:3022345 /quiet /norestart
echo Uninstalling KB3068708 (telemetry)
@DewArmy
DewArmy / README.md
Created May 5, 2016 01:55 — forked from nikcub/README.md
Twitter refined Greasemonkey / user script

Chrome install - drag + drop onto extensions window at chrome://extensions

@DewArmy
DewArmy / StopW10.bat
Created February 26, 2016 17:27 — forked from vip3rc0de/StopW10.bat
This Bat will stop windows 10 spying you, also it will Uninstall OneDrive....So you will keep your privacy! This bat will Disable Data Logging Services, will Configure Windows Explorer, Uninstall OneDrive and edit Hosts to stop sending Telemetry Data to Microsoft!
@echo off
echo ***************************************************************
echo ***************************************************************
echo *** This Script will stop Windows 10 Spying you...YEYYYY!!! ***
echo ***************************************************************
echo *** We will Disable Data Logging Services ***
echo *** We will Configure Windows Explorer ***
echo *** We will Uninstall OneDrive ***
echo *** We will edit Hosts to stop sending Data to Microsoft ***
echo ***************************************************************
@DewArmy
DewArmy / macycle
Created November 30, 2015 23:12 — forked from paxperscientiam/macycle
Simple script for MAC address spoofing for Bash on OSX
#!/opt/local/bin/bash
# This is an active experiment; use at your own peril.
# Macycle expects a declared associateive array in RC file.
# # declare -A devices=(
# # ['dev1']='aa:aa:aa:aa:aa:aa'
# # ['dev2']='bb:bb:bb:bb:bb:bb' #etc
# # )
#
# load config file
if [ -f "${HOME}"/.macyclerc ]; then