Skip to content

Instantly share code, notes, and snippets.

@thiagosanches
Last active January 26, 2018 00:24
Show Gist options
  • Save thiagosanches/4b051a5688511a5946325177298f4fa1 to your computer and use it in GitHub Desktop.
Save thiagosanches/4b051a5688511a5946325177298f4fa1 to your computer and use it in GitHub Desktop.
my-windows-recipes
# Remove Windows Cortana
$path = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search"
IF(!(Test-Path -Path $path)) {
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows" -Name "Windows Search"
}
Set-ItemProperty -Path $path -Name "AllowCortana" -Value 1
Stop-Process -name explore
# Enable Ubuntu on Windows 10
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
# Microsoft Visual Studio 2017 Community full installation
wget "https://aka.ms/vs/15/release/vs_community.exe"
vs_community.exe --addProductLang en-US --includeRecommended --includeOptional --quiet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment