initial commit

This commit is contained in:
2018-04-14 00:59:06 -07:00
parent 52554ef25a
commit cdd85eacdf
4 changed files with 144 additions and 1 deletions

26
dev_app.ps1 Normal file
View File

@@ -0,0 +1,26 @@
# Description: Boxstarter Script
# Author: Microsoft
Disable-UAC
#--- Windows Features ---
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
#--- File Explorer Settings ---
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name NavPaneExpandToCurrentFolder -Value 1
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name NavPaneShowAllFolders -Value 1
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name LaunchTo -Value 1
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name MMTaskbarMode -Value 2
#--- Windows Subsystems/Features ---
choco install Microsoft-Hyper-V-All -source windowsFeatures
choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures
#--- Tools ---
choco install visualstudio2017community -y # See this for install args: https://chocolatey.org/packages/VisualStudio2017Community
choco install sysinternals -y
choco install docker-for-windows
Enable-UAC
Enable-MicrosoftUpdate
Install-WindowsUpdate -acceptEula