- Open Command Prompt or PowerShell
- Execute the following command to install the binaries:
winget install Google.PlatformTools
- Execute the following command to install the binaries:
Command:
$ fastboot helpOutput:
usage: fastboot [OPTION...] COMMAND...
flashing:#resources
- Windows 10 PowerShell script to disable E.T. Features
- [Fully disable UAC without breaking Metro](http://www.tenforums.com/software-apps/12065-cant-open-any-windows-app-uac-disabled-2.htmlj
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
| <# | |
| NAME | |
| Debloat-Windows10.ps1 | |
| DESCRIPTION | |
| Debloats and customizes Windows 10 Enterprise N LTSB. | |
| It changes your privacy options in the settings app and disables scheduled tasks and services that are there | |
| to gather information about you. It also tweaks the registry to customize settings, make your font display properly | |
| on DPI scaling 125% and disable OneDrive completely. Windows Features are also disabled, such as Internet Explorer | |
| and XPS Viewer, while others are enabled such as .NET framework 3.5. On top of it all, it appends new lines to your | |
| hosts file that block Microsoft from collecting data on you, as well as enables or disables local policies to |
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
| ################## | |
| # Privacy Settings | |
| ################## | |
| # Privacy: Let apps use my advertising ID: Disable | |
| Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 0 | |
| # To Restore: | |
| #Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 1 | |
| # Privacy: SmartScreen Filter for Store Apps: Disable | |
| Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost -Name EnableWebContentEvaluation -Type DWord -Value 0 |