Last active
April 3, 2022 00:01
-
-
Save corbob/cc3fb9f4558eacfe002b320223624484 to your computer and use it in GitHub Desktop.
New Workstation
This file contains hidden or 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
# Set execution Policy for the system | |
Set-ExecutionPolicy Bypass -Force | |
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072 | |
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
Invoke-WebRequest -Uri https://gist.githubusercontent.com/corbob/cc3fb9f4558eacfe002b320223624484/raw/d54a50248980faf078bc19bbde401da436082dd6/packages.config -OutFile C:\Packages.config -UseBasicParsing | |
choco feature enable -n allowGlobalConfirmation | |
choco install c:\packages.config |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="7zip" /> | |
<package id="7zip.install" /> | |
<package id="dotnet-6.0-sdk" /> | |
<package id="dotnetfx" /> | |
<package id="dotUltimate" /> | |
<package id="Everything" /> | |
<package id="git" /> | |
<package id="gh" /> | |
<package id="glab" /> | |
<package id="gitextensions" /> | |
<package id="gpg4win" /> | |
<package id="keybase" /> | |
<package id="neovim" /> | |
<package id="netfx-4.5.2-devpack" /> | |
<package id="netfx-4.6.1-devpack" /> | |
<package id="netfx-4.6.2" /> | |
<package id="netfx-4.6.2-devpack" /> | |
<package id="netfx-4.7-devpack" /> | |
<package id="netfx-4.7.2" /> | |
<package id="netfx-4.7.2-devpack" /> | |
<package id="netfx-4.8" /> | |
<package id="netfx-4.8-devpack" /> | |
<package id="notepadplusplus" /> | |
<package id="nuget.commandline" /> | |
<!-- NugetPackageExplorer is currently broken with Chocolatey 1.x. --> | |
<!-- <package id="NugetPackageExplorer" /> --> | |
<package id="pwsh" /> | |
<package id="sccmtoolkit" /> | |
<package id="sysinternals" /> | |
<package id="vagrant" /> | |
<package id="visualstudio2019professional" /> | |
<package id="visualstudio2019-workload-manageddesktopbuildtools" /> | |
<package id="visualstudio2019buildtools" /> | |
<package id="vscode-insiders" /> | |
<package id="winmerge" /> | |
</packages> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment