Last active
May 6, 2020 12:29
-
-
Save davidst/7e356b73cb5f66d34d28 to your computer and use it in GitHub Desktop.
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 -AcceptEula -SuppressReboots | |
# Windows configuration | |
Disable-InternetExplorerESC | |
Disable-GameBarTips | |
Disable-UAC | |
Enable-RemoteDesktop | |
Set-WindowsExplorerOptions -DisableShowHiddenFilesFoldersDrives -DisableShowProtectedOSFiles -DisableOpenFileExplorerToQuickAccess -EnableShowFileExtensions -EnableShowFullPathInTitleBar -EnableExpandToOpenFolder -EnableShowRibbon | |
Set-TaskbarOptions -Size Large -Lock -Dock Bottom -Combine Full | |
Update-ExecutionPolicy Unrestricted | |
# Enable Windows optional feature | |
Enable-WindowsOptionalFeature -Online -NoRestart -FeatureName Microsoft-Hyper-V-All | |
Enable-WindowsOptionalFeature -Online -NoRestart -FeatureName Containers | |
Enable-WindowsOptionalFeature -Online -NoRestart -FeatureName Microsoft-Windows-Subsystem-Linux | |
choco feature enable -n=allowGlobalConfirmation | |
# Install programs | |
choco install 7zip.install | |
choco install adobereader | |
choco install ccleaner | |
choco install f.lux | |
choco install Firefox | |
choco install GoogleChrome | |
choco install grammarly | |
choco install lockhunter | |
choco install notepadplusplus.install | |
choco install slack | |
choco install spacesniffer | |
choco install strokesplus | |
choco install zoom | |
# Install dev tools | |
choco install CloudBerryExplorer.AmazonS3 | |
choco install cmder | |
choco install cuda | |
choco install docker-desktop | |
choco install docker-kitematic | |
choco install git.install | |
choco install kdiff3 | |
choco install linqpad6.portable | |
choco install miniconda3 | |
choco install nodejs.install | |
choco install NugetPackageExplorer | |
choco install plantuml | |
choco install postman | |
choco install SourceTree | |
choco install totalcommander | |
choco install visualstudiocode | |
choco install yarn | |
choco install visualstudio2019professional | |
choco install visualstudio2019-workload-netcoretools | |
choco install visualstudio2019-workload-netweb | |
choco install dotnetcore-sdk | |
choco feature disable -n=allowGlobalConfirmation | |
# Install global npm packages | |
npm install -g @angular/cli webpack webpack-dev-server | |
Install-WindowsUpdate -AcceptEula |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment