Last active
March 17, 2020 23:07
-
-
Save jamesrcounts/33a25457a83ffe2d38b6032eb36c9d04 to your computer and use it in GitHub Desktop.
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
Install-WindowsUpdate | |
Set-ExecutionPolicy -Force RemoteSigned -Scope LocalMachine | |
choco install Microsoft-Hyper-V-All -source windowsFeatures | |
choco install Microsoft-Windows-Subsystem-Linux -source windowsfeatures | |
choco feature enable -n allowGlobalConfirmation | |
choco install googlechrome | |
choco install vscode | |
choco install dotnetcore-sdk | |
choco install powershell-core | |
choco install poshgit | |
choco install beyondcompare | |
choco install baretail | |
choco install 7zip | |
choco install gpg4win | |
choco install firacode | |
choco install azure-cli | |
choco install sysinternals | |
mkdir C:\git | |
git config --global diff.tool bc | |
git config --global difftool.bc.path 'c:/Program Files/Beyond Compare 4/bcomp.exe' | |
git config --global merge.tool bc | |
git config --global mergetool.bc.path 'c:/Program Files/Beyond Compare 4/bcomp.exe' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment