Add -y to all choco install
This is useful for running the PowerShell scripts directly. Ref: https://github.com/Microsoft/windows-dev-box-setup-scripts/issues/11
This commit is contained in:
@@ -14,35 +14,34 @@ Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\
|
||||
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name MMTaskbarMode -Value 2
|
||||
|
||||
#--- Tools ---
|
||||
choco install visualstudiocode -y
|
||||
choco install git -params '"/GitAndUnixToolsOnPath /WindowsTerminal"' -y
|
||||
choco install Git-Credential-Manager-for-Windows -y
|
||||
choco install 7zip.install -y
|
||||
choco install -y visualstudiocode
|
||||
choco install -y git -params '"/GitAndUnixToolsOnPath /WindowsTerminal"'
|
||||
choco install -y Git-Credential-Manager-for-Windows
|
||||
choco install -y 7zip.install
|
||||
|
||||
#--- Windows Subsystems/Features ---
|
||||
choco install Microsoft-Hyper-V-All -source windowsFeatures
|
||||
choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures
|
||||
choco install -y Microsoft-Hyper-V-All -source windowsFeatures
|
||||
choco install -y Microsoft-Windows-Subsystem-Linux -source windowsfeatures
|
||||
|
||||
#--- Browsers ---
|
||||
choco install Firefox -y
|
||||
choco install Googlechrome -y
|
||||
choco install -y Firefox
|
||||
choco install -y Googlechrome
|
||||
|
||||
#--- Fonts ---
|
||||
choco install inconsolata -y
|
||||
choco install ubuntu.font -y
|
||||
choco install -y inconsolata
|
||||
choco install -y ubuntu.font
|
||||
|
||||
#--- Tools ---
|
||||
choco install nodejs-lts -y # Node.js LTS, Recommended for most users
|
||||
# choco install nodejs -y # Node.js Current, Latest features
|
||||
choco install visualstudio2017buildtools -y
|
||||
choco install visualstudio2017-workload-vctools -y
|
||||
choco install sysinternals -y
|
||||
choco install docker-for-windows
|
||||
choco install python2 # Node.js requires Python 2 to build native modules
|
||||
choco install pip
|
||||
choco install easy.install
|
||||
choco install -y nodejs-lts # Node.js LTS, Recommended for most users
|
||||
# choco install -y nodejs # Node.js Current, Latest features
|
||||
choco install -y visualstudio2017buildtools
|
||||
choco install -y visualstudio2017-workload-vctools
|
||||
choco install -y sysinternals
|
||||
choco install -y docker-for-windows
|
||||
choco install -y python2 # Node.js requires Python 2 to build native modules
|
||||
choco install -y pip
|
||||
choco install -y easy.install
|
||||
|
||||
Enable-UAC
|
||||
Enable-MicrosoftUpdate
|
||||
Install-WindowsUpdate -acceptEula
|
||||
|
||||
|
||||
Reference in New Issue
Block a user