(GH-11) Added -y to all Chocolatey calls

- Used the same style as per this commit: 4ab2d140ab
This commit is contained in:
Gary Ewan Park
2018-05-01 13:14:33 +01:00
committed by GitHub
parent bcaad0c2f2
commit 12483c4ec7

View File

@@ -13,13 +13,13 @@ Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name MMTaskbarMode -Value 2 Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name MMTaskbarMode -Value 2
#--- Windows Subsystems/Features --- #--- Windows Subsystems/Features ---
choco install Microsoft-Hyper-V-All -source windowsFeatures choco install -y Microsoft-Hyper-V-All -source windowsFeatures
choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures choco install -y Microsoft-Windows-Subsystem-Linux -source windowsfeatures
#--- Tools --- #--- Tools ---
choco install visualstudio2017community -y # See this for install args: https://chocolatey.org/packages/VisualStudio2017Community choco install -y visualstudio2017community # See this for install args: https://chocolatey.org/packages/VisualStudio2017Community
choco install sysinternals -y choco install -y sysinternals
choco install docker-for-windows choco install -y docker-for-windows
Enable-UAC Enable-UAC
Enable-MicrosoftUpdate Enable-MicrosoftUpdate