Skip to content

Instantly share code, notes, and snippets.

@yetanotherchris
Last active February 4, 2024 14:02
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yetanotherchris/756ed06990777d750732880588888b7b to your computer and use it in GitHub Desktop.
Save yetanotherchris/756ed06990777d750732880588888b7b to your computer and use it in GitHub Desktop.
Setup script for a new PC/laptop, once all the bloatware has been removed
# Launch Powershell as admin
Set-ExecutionPolicy RemoteSigned -Confirm:$false -Force
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
# Stop prompting in Choclately
choco feature enable -n allowGlobalConfirmation
choco install googlechrome
choco install firefox
choco install coneumu
choco install visualstudiocode
choco install linqpad5
choco install visualstudio2017community
choco install visualstudio2017-workload-netcoretools
choco install visualstudio2017-workload-netweb
choco install 7zip
choco install gitkraken
choco install github
choco install docker-for-windows
#http://visualstudiogallery.msdn.microsoft.com/76293c4d-8c16-4f4a-aee6-21f83a571496
# Resharper
choco install resharper-platform -y
$resharperInstaller = Resolve-Path "$env:ChocolateyInstall\lib\resharper-platform\JetBrains.ReSharperUltimate.*.exe"
Write-Output "Installing ReSharper Ultimate with lots of goodies: $resharperInstaller"
Start-Process -FilePath "$resharperInstaller" -ArgumentList "/SpecificProductNames=ReSharper /Silent=True" -Wait -PassThru
# Windows subsytem
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux -NoRestart
# Install codemaid
# Install code snippets
# Install Visual Studio settings
# Install conemu settings
@yetanotherchris
Copy link
Author

yetanotherchris commented Aug 3, 2016

To run this script (remove the newline):

https://gist.github.com/yetanotherchris/756ed06990777d750732880588888b7b

choco install curl
curl -O -k https://gist.github.com/yetanotherchris/756ed06990777d750732880588888b7b

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