-
-
Save timelf123/8a1dcc046e3fdc5fbd5f56d29297253d to your computer and use it in GitHub Desktop.
Winget Boxstarter Developer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# | |
# Run this boxstarter by calling the following from an **elevated** command-prompt: | |
# start http://boxstarter.org/package/nr/url?<URL-TO-RAW-GIST> | |
# OR | |
# Install-BoxstarterPackage -PackageName <URL-TO-RAW-GIST> -DisableReboots | |
# | |
# Learn more: http://boxstarter.org/Learn/WebLauncher | |
### Disable UAC for Session | |
Disable-UAC | |
### Install winget preview release | |
$winget_release = "https://github.com/microsoft/winget-cli/releases/download/v1.0.11451/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle" | |
Invoke-WebRequest -Uri $winget_release -OutFile ~/Downloads/Microsoft.DesktopAppInstaller.appxbundle -UseBasicParsing | |
Add-AppxPackage -Path ~/Downloads/Microsoft.DesktopAppInstaller.appxbundle | |
# winget install --exact Microsoft.Edge | |
# winget install --exact Quicklook | |
# winget install --exact Microsoft.MouseandKeyboardCenter | |
# winget install --exact Adobe.AdobeAcrobatReaderDC | |
winget install --exact Microsoft.WindowsTerminalPreview | |
winget install -e --id Docker.DockerDesktop | |
winget install -e --id Microsoft.VisualStudioCode | |
winget install -e --id OpenJS.NodeJSLTS | |
winget install -e --id Git.Git | |
winget install -e --id bitvise.SSHClient | |
winget install -e --id dbeaver.dbeaver | |
winget install -e --id Axosoft.GitKraken | |
winget install -e --id VideoLAN.VLC | |
winget install -e --id Streamlink.Streamlink | |
winget install anaconda | |
# gamer stuff | |
winget install -e --id GOG.Galaxy | |
winget install -e --id Discord.Discord | |
winget install -e --id Discord.DiscordPTB | |
winget install -e --id Valve.Steam | |
winget install zoom | |
winget install wox | |
winget install everything | |
# winget install autohotkey | |
# WSL 2 Installation | |
# https://docs.microsoft.com/en-us/windows/wsl/install-win10 | |
choco install VirtualMachinePlatform -source WindowsFeatures -y | |
choco install Microsoft-Windows-Subsystem-Linux -source WindowsFeatures -y | |
# https://docs.microsoft.com/en-us/windows/wsl/wsl2-kernel | |
$wsl2_kernel = "https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi" | |
Invoke-WebRequest -Uri $wsl2_kernel -OutFile ~/Downloads/wsl_update_x64.msi -UseBasicParsing | |
$wsl2_kernel_msi = Resolve-Path "~/Downloads/wsl_update_x64.msi" | select -ExpandProperty Path | |
msiexec /i $wsl2_kernel_msi /quiet | |
wsl --set-default-version 2 | |
### Standard WSL Install | |
# choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures | |
# Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1804 -OutFile ~/Ubuntu.appx -UseBasicParsing | |
# Add-AppxPackage -Path ~/Ubuntu.appx | |
### run the distro once and have it install locally with a blank root user | |
# Ubuntu1804 install --root | |
### Install WSL and ubuntu-1804 container | |
# choco install wsl-ubuntu-1804 | |
# choco pin add -n=wsl-ubuntu-1804 | |
### User permissions for wsl-ubuntu-1804, see wsl-ubuntu-1804 package notes | |
# $path = "C:\ProgramData\chocolatey\lib\wsl-ubuntu-1804\tools\unzipped" | |
# $permissions = "BUILTIN\Users", 'FullControl', 'ContainerInherit,ObjectInherit', 'None', 'Allow' | |
# | |
# $existingAcl = Get-Acl -Path $path | |
# $rule = New-Object -TypeName System.Security.AccessControl.FileSystemAccessRule -ArgumentList $permissions | |
# $existingAcl.SetAccessRule($rule) | |
# $existingAcl | Set-Acl -Path $path | |
### Primary Applications | |
# choco install microsoft-edge | |
# choco install quicklook | |
# choco install fluent-terminal | |
# choco install wsltty | |
# choco install microsoft-windows-terminal | |
### | |
# choco install autohotkey | |
### Command-line applications | |
# choco install gsudo | |
# choco install vim | |
### Enable UAC and Update | |
Enable-UAC | |
Enable-MicrosoftUpdate | |
Install-WindowsUpdate -acceptEula | |
### Rename Machine | |
$computername = "User" | |
if ($env:computername -ne $computername) { | |
Rename-Computer -NewName $computername | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment