27 строки
1.2 KiB
PowerShell
27 строки
1.2 KiB
PowerShell
# Description: Boxstarter Script
|
|
# Author: Microsoft
|
|
|
|
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
|
|
|
|
#--- Windows Subsystems/Features ---
|
|
choco install -y Microsoft-Hyper-V-All -source windowsFeatures
|
|
choco install -y Microsoft-Windows-Subsystem-Linux -source windowsfeatures
|
|
|
|
#--- Tools ---
|
|
choco install -y visualstudio2017community # See this for install args: https://chocolatey.org/packages/VisualStudio2017Community
|
|
choco install -y sysinternals
|
|
choco install -y docker-for-windows
|
|
|
|
Enable-UAC
|
|
Enable-MicrosoftUpdate
|
|
Install-WindowsUpdate -acceptEula
|