This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .NOTES | |
| =========================================================================== | |
| Created on:2018.11.09 | |
| Latest Update: 2018.12.15 | |
| Script Version:1.1.3 | |
| Author:Timothy Gruber | |
| Website: TimothyGruber.com | |
| GitLab:https://gitlab.com/tjgruber/win10crappremover | |
| =========================================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\FlipAhead] | |
| "FPEnabled"=dword:00000000 | |
| [HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\Main] | |
| "ShowSearchSuggestionsGlobal"=dword:00000000 | |
| "DoNotTrack"=dword:00000001 | |
| [HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\ServiceUI] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: Windows 10 Hardening Script | |
| :: This is based mostly on my own personal research and testing. My objective is to secure/harden Windows 10 as much as possible while not impacting usability at all. (Think being able to run on this computer's of family members so secure them but not increase the chances of them having to call you to troubleshoot something related to it later on). References for virtually all settings can be found at the bottom. Just before the references section, you will always find several security settings commented out as they could lead to compatibility issues in common consumer setups but they're worth considering. | |
| :: Thank you @jaredhaight for the Win Firewall config recommendations! | |
| :: Thank you @ricardojba for the DLL Safe Order Search reg key! | |
| :: Best script I've found for Debloating Windows 10: https://github.com/Sycnex/Windows10Debloater | |
| :: | |
| ::####################################################################### | |
| :: | |
| :: Change file associations to protect against common ransomware |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| import json | |
| import socket | |
| import sys | |
| import urllib.request | |
| host = sys.argv[1] if (len(sys.argv) >= 2) else socket.gethostname() | |
| target_hostname = "%s.sub.yournet.com" % host | |
| zone_id = "REMOVEDREMOVEDREMOVED" | |
| token = "REMOVEDREMOVEDREMOVED" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net.Sockets; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace HolePunchTest | |
| { | |
| public class TcpProxy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Net.Sockets; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace HolePunchTest | |
| { | |
| public class TcpProxy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| import re | |
| import subprocess | |
| def get_supported_marches(): | |
| # gcc -c -Q -march=native --help=target | |
| res = subprocess.getoutput("gcc -c -Q -march=native --help=target") | |
| match = re.search(r" valid arguments for -march= option:\W*([^\r\n]+)", res, re.DOTALL) | |
| if match: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import lvgl as lv | |
| import lcd_bus | |
| import ili9341 | |
| from machine import SPI, Pin | |
| import machine | |
| import network | |
| import task_handler | |
| import asyncio | |
| import utime | |
| import ntptime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Install WarpIN, then ANPM. | |
| On plain Warp, install kLIBC Pathrewriters first: | |
| klibccfg_1_0_2_1.exe | |
| Let ANPM bootstrap RPM/YUM. We used: | |
| SET UNIXROOT=C: |
OlderNewer