Skip to content

Instantly share code, notes, and snippets.

View franklinleandro's full-sized avatar

Leandro Franklin franklinleandro

View GitHub Profile
# ==========================================================================
#
# Script Name: Install-ProgramsForWindows10.ps1
#
# Author: Andy Parkhill
#
# Date Created: 22/09/2016
#
# Description: A simple environment setup script for Windows 10 PCs.
#
@franklinleandro
franklinleandro / disable-all-windows-unnecessary-services.txt
Created January 5, 2021 14:45 — forked from jq2/disable-all-windows-unnecessary-services.txt
Microsoft Windows XP/7/8/8.1/10 - Surveillance Self-Defense Scripts, Tools, Guides/HowTo's, (E)books and much more!
@matthewjberger matthewjberger/Remove-Windows10-Bloat.bat
https://gist.github.com/matthewjberger/2f4295887d6cb5738fa34e597f457b7f
@ilyaigpetrov/Tuning Windows 10 for Slow Machines.md
https://gist.github.com/ilyaigpetrov/03506150e0a3a4104a24f7e519d42078
@alirobe/reclaimWindows10.ps1
https://gist.github.com/alirobe/7f3b34ad89a159e6daa1
@2510/Windows 10 Disable Services.bat
@franklinleandro
franklinleandro / reclaimWindows10.ps1
Created January 5, 2021 14:34 — forked from alirobe/reclaimWindows10.ps1
This Windows 10 Setup Script turns off a bunch of unnecessary Windows 10 telemetery, bloatware, & privacy things. Not guaranteed to catch everything. Review and tweak before running. Reboot after running. Scripts for reversing are included and commented. Fork of https://github.com/Disassembler0/Win10-Initial-Setup-Script (different defaults). N.…
##########
# Tweaked Win10 Initial Setup Script
# Primary Author: Disassembler <[email protected]>
# Modified by: alirobe <[email protected]> based on my personal preferences.
# Version: 2.20.2, 2018-09-14
# Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script
# Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/
# Tweak difference:
#
# @alirobe's version is a subset focused on safely disabling telemetry, some 'smart' features and 3rd party bloat ...
@franklinleandro
franklinleandro / DisplayAllFonts.ps1
Created January 5, 2021 14:29 — forked from matthewjberger/DisplayAllFonts.ps1
Lists all installed TrueType fonts on Windows
# Displays all installed truetype font names in their corresponding font in a browser
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing")
$objFonts = New-Object System.Drawing.Text.InstalledFontCollection
$colFonts = $objFonts.Families
foreach ($objFont in $colFonts)
{
$strHTML = $strHTML + "<font size='5' face='" + $objFont.Name + "'>" + $objFont.Name + "</font><br>"
}
@rem *** Disable Some Service ***
sc stop DiagTrack
sc stop diagnosticshub.standardcollector.service
sc stop dmwappushservice
sc stop WMPNetworkSvc
sc stop WSearch
sc config DiagTrack start= disabled
sc config diagnosticshub.standardcollector.service start= disabled
sc config dmwappushservice start= disabled