Last active
July 15, 2016 07:24
-
-
Save bse666/7bb139176326fda3de19154479f96528 to your computer and use it in GitHub Desktop.
Win10 defaults
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_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search] | |
"AllowCortana"=dword:00000000 | |
"ConnectedSearchUseWeb"=dword:00000000 | |
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
# Uninstall Windows 10 stuff | |
Get-AppxPackage *3dbuilder* | Remove-AppxPackage | |
Get-AppxPackage *windowsalarms* | Remove-AppxPackage | |
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage | |
Get-AppxPackage *windowscamera* | Remove-AppxPackage | |
Get-AppxPackage *officehub* | Remove-AppxPackage | |
Get-AppxPackage *zunemusic* | Remove-AppxPackage | |
Get-AppxPackage *windowsmaps* | Remove-AppxPackage | |
Get-AppxPackage *solitairecollection* | Remove-AppxPackage | |
Get-AppxPackage *bingfinance* | Remove-AppxPackage | |
Get-AppxPackage *zunevideo* | Remove-AppxPackage | |
Get-AppxPackage *bingnews* | Remove-AppxPackage | |
Get-AppxPackage *onenote* | Remove-AppxPackage | |
Get-AppxPackage *photos* | Remove-AppxPackage | |
Get-AppxPackage *bingsports* | Remove-AppxPackage | |
Get-AppxPackage *bingweather* | Remove-AppxPackage | |
Get-AppxPackage *windowsphone* | Remove-AppxPackage |
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
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"} |
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
Set-WindowsExplorerOptions -EnableShowFileExtensions -EnableShowFullPathInTitleBar -DisableShowProtectedOSFiles -EnableShowHiddenFilesFoldersDrives | |
Enable- |
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-WindowsUpdate | |
Enable-MicrosoftUpdate | |
Enable-RemoteDesktop | |
Set-TaskbarOptions -Size Large -Unlock -Dock Bottom | |
# General | |
cinst "google-chrome-x64" | |
cinst adobereader | |
cinst notepadplusplus | |
cinst virtualbox | |
cinst gimp | |
cinst malwarebytes | |
#Util | |
cinst virtualclonedrive | |
cinst keepass | |
cinst 7zip | |
cinst Greenshot | |
cinst ImgBurn | |
cinst googledrive | |
# Dev Tools | |
cinst sysinternals | |
cinst fiddler4 | |
#fun | |
cinst steam | |
cinst itunes | |
cinst vlc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment