Skip to content

Instantly share code, notes, and snippets.

@hiono
Last active July 6, 2018 10:11
Show Gist options
  • Save hiono/83942b7d12a1eb3fc94fc36c4165e9d7 to your computer and use it in GitHub Desktop.
Save hiono/83942b7d12a1eb3fc94fc36c4165e9d7 to your computer and use it in GitHub Desktop.
My Boxstarter script
# Orig: http://torumakabe.github.io/post/intro_boxstarter/
# Learn more: http://boxstarter.org/Learn/WebLauncher
# Chocolateyパッケージがないもの、パッケージ更新が遅いものは別途入れます。メモです。
# Install manually (Ubuntu, VS, snip, Azure CLI/PS/Storage Explorer, Terraform, Go, 1Password 6, Driver Management Tool)
#---- TEMPORARY ---
Disable-UAC
#--- Fonts ---
choco install inconsolata
choco install fonts-ricty-diminished
choco install noto
#--- Windows Settings ---
# 可能な設定はここで確認 --> [Boxstarter WinConfig Features](http://boxstarter.org/WinConfig)
Disable-GameBarTips
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions
Set-TaskbarOptions -Size Small -Dock Bottom -Combine Full -Lock
Set-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced -Name NavPaneShowAllFolders -Value 1
#--- Windows Subsystems/Features ---
choco install Microsoft-Hyper-V-All -source windowsFeatures
choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures
choco install containers -source windowsfeatures
#--- Tools ---
choco install git.install
choco install ccleaner
choco install sysinternals
choco install 7zip
choco install colortool
#--- Apps ---
choco install googlechrome
choco install docker-for-windows
choco install putty
choco install visualstudiocode
#--- Restore Temporary Settings ---
Enable-UAC
Enable-MicrosoftUpdate
Install-WindowsUpdate -acceptEula
# HHK Eng keyboard
# 1st:
. { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
# 2nd:
Install-BoxstarterPackage -PackageName "https://gist.githubusercontent.com/hiono/83942b7d12a1eb3fc94fc36c4165e9d7/raw/c1aa30cf17e20cd8fbe5c026c39a69e14727bba6/boxstarter.txt" -DisableReboots
@hiono
Copy link
Author

hiono commented Jul 6, 2018

fix dist url.

@hiono
Copy link
Author

hiono commented Jul 6, 2018

Add noto font

@hiono
Copy link
Author

hiono commented Jul 6, 2018

Add ccleaner

@hiono
Copy link
Author

hiono commented Jul 6, 2018

remove unused apps

@hiono
Copy link
Author

hiono commented Jul 6, 2018

Add colortool

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment