continuing to refine the scripts (#26)

This commit is contained in:
Yosef Durr
2018-05-06 12:57:25 -07:00
committed by GitHub
parent c14d8f7586
commit 91a61099b8
5 changed files with 14 additions and 13 deletions

View File

@@ -1,4 +1,4 @@
Contributing to Windows Dev Box Setup Scripts ## Contributing to Windows Dev Box Setup Scripts
The goal for **Windows Dev Box Setup Scripts** is to help developers get their dev box up and going quickly. The goal for **Windows Dev Box Setup Scripts** is to help developers get their dev box up and going quickly.

View File

@@ -1,5 +1,6 @@
# Description: Boxstarter Script # Description: Boxstarter Script
# Author: Microsoft # Author: Microsoft
# Common dev settings for desktop app development
Disable-UAC Disable-UAC
@@ -19,7 +20,9 @@ choco install -y Microsoft-Windows-Subsystem-Linux -source windowsfeatures
#--- Tools --- #--- Tools ---
choco install -y visualstudio2017community # 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 -y sysinternals choco install -y sysinternals
choco install -y docker-for-windows # choco install -y docker-for-windows
# TODO: should pass install args to VS2017 to install additional options
Enable-UAC Enable-UAC
Enable-MicrosoftUpdate Enable-MicrosoftUpdate

View File

@@ -1,6 +1,6 @@
# Description: Boxstarter Script # Description: Boxstarter Script
# Author: Microsoft # Author: Microsoft
# Common dev settings for web development # Common dev settings for machine learning
Disable-UAC Disable-UAC
@@ -22,8 +22,8 @@ choco install -y Microsoft-Hyper-V-All -source windowsFeatures
choco install -y Microsoft-Windows-Subsystem-Linux -source windowsfeatures choco install -y Microsoft-Windows-Subsystem-Linux -source windowsfeatures
#--- Ubuntu --- #--- Ubuntu ---
Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile ~/Ubuntu.appx -UseBasicParsing # Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile ~/Ubuntu.appx -UseBasicParsing
Add-AppxPackage -Path ~/Ubuntu.appx # Add-AppxPackage -Path ~/Ubuntu.appx
#--- Fonts --- #--- Fonts ---
choco install -y inconsolata choco install -y inconsolata

View File

@@ -1,13 +1,12 @@
# Description: Boxstarter Script # Description: Boxstarter Script
# Author: Microsoft # Author: Microsoft
# Common dev settings # Common dev settings for web dev
Disable-UAC Disable-UAC
#--- Windows Features --- #--- Windows Features ---
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
#--- File Explorer Settings --- #--- 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 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 NavPaneShowAllFolders -Value 1
@@ -22,12 +21,11 @@ choco install -y 7zip.install
#--- Windows Subsystems/Features --- #--- Windows Subsystems/Features ---
choco install -y Microsoft-Hyper-V-All -source windowsFeatures choco install -y Microsoft-Hyper-V-All -source windowsFeatures
# Your system will prompt you to restart choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
#--- Ubuntu --- #--- Ubuntu ---
Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile ~/Ubuntu.appx -UseBasicParsing # Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile ~/Ubuntu.appx -UseBasicParsing
Add-AppxPackage -Path ~/Ubuntu.appx # Add-AppxPackage -Path ~/Ubuntu.appx
<# <#
#--- SLES --- #--- SLES ---

View File

@@ -24,8 +24,8 @@ choco install -y Microsoft-Hyper-V-All -source windowsFeatures
choco install -y Microsoft-Windows-Subsystem-Linux -source windowsfeatures choco install -y Microsoft-Windows-Subsystem-Linux -source windowsfeatures
#--- Ubuntu --- #--- Ubuntu ---
Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile ~/Ubuntu.appx -UseBasicParsing # Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile ~/Ubuntu.appx -UseBasicParsing
Add-AppxPackage -Path ~/Ubuntu.appx # Add-AppxPackage -Path ~/Ubuntu.appx
#--- Browsers --- #--- Browsers ---
choco install -y Firefox choco install -y Firefox