Install automatically VS Code debugger extensions for Chrome and Edge - - - - - - - - - - - - - - - - - - - Ref: #46
63 lines
2.1 KiB
PowerShell
63 lines
2.1 KiB
PowerShell
# Description: Boxstarter Script
|
|
# Author: Microsoft
|
|
# Common dev settings for web dev
|
|
|
|
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
|
|
|
|
#--- Tools ---
|
|
choco install -y vscode
|
|
code --install-extension msjsdiag.debugger-for-chrome
|
|
code --install-extension msjsdiag.debugger-for-edge
|
|
|
|
choco install -y git -params '"/GitAndUnixToolsOnPath /WindowsTerminal"'
|
|
choco install -y 7zip.install
|
|
|
|
#--- Windows Subsystems/Features ---
|
|
choco install -y Microsoft-Hyper-V-All -source windowsFeatures
|
|
choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures
|
|
|
|
#--- Ubuntu ---
|
|
# Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile ~/Ubuntu.appx -UseBasicParsing
|
|
# Add-AppxPackage -Path ~/Ubuntu.appx
|
|
|
|
<#
|
|
#--- SLES ---
|
|
# Install SLES Store app
|
|
Invoke-WebRequest -Uri https://aka.ms/wsl-sles-12 -OutFile ~/SLES.appx -UseBasicParsing
|
|
Add-AppxPackage -Path ~/SLES.appx
|
|
# Launch SLES
|
|
sles-12.exe
|
|
|
|
# --- openSUSE ---
|
|
Invoke-WebRequest -Uri https://aka.ms/wsl-opensuse-42 -OutFile ~/openSUSE.appx -UseBasicParsing
|
|
Add-AppxPackage -Path ~/openSUSE.appx
|
|
# Launch openSUSE
|
|
opensuse-42.exe
|
|
#>
|
|
|
|
#--- Browsers ---
|
|
choco install -y googlechrome
|
|
choco install -y firefox
|
|
|
|
#--- Fonts ---
|
|
choco install -y inconsolata
|
|
# choco install -y ubuntu.font
|
|
|
|
#--- Tools ---
|
|
choco install -y sysinternals
|
|
choco install -y docker-for-windows
|
|
choco install -y python
|
|
|
|
Enable-UAC
|
|
Enable-MicrosoftUpdate
|
|
Install-WindowsUpdate -acceptEula
|