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
| # ========================================================================== | |
| # | |
| # Script Name: Install-ProgramsForWindows10.ps1 | |
| # | |
| # Author: Andy Parkhill | |
| # | |
| # Date Created: 22/09/2016 | |
| # | |
| # Description: A simple environment setup script for Windows 10 PCs. | |
| # |
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
| @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 |
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
| ########## | |
| # 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 ... |
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
| # 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>" | |
| } |
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
| @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 |