Last active
January 23, 2024 19:14
-
-
Save camb416/8109a6547b346658bfc2b39be588099a to your computer and use it in GitHub Desktop.
Provision a Creative Technology Windows Workstation
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
:: Provision a Creative Technology Windows Workstation | |
:: 2024 Cameron Browning | |
:: Head of Creative Tech, BUCK | |
:: https://gist.github.com/camb416/8109a6547b346658bfc2b39be588099a | |
:: | |
:: Before you run: | |
:: Install chocolatey. Instructions here: https://chocolatey.org/install | |
:: Don't forget to run in Administrator mode | |
:: Every time you need to install something essential, add to this file. | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Developer Tools | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Git and WSL | |
choco install git -Y | |
wsl --install | |
:: Python, Node and Processing | |
choco install python anaconda3 nodejs processing -Y | |
:: IDEs and Text Editors | |
:: Visual Studio 2019 and Jetbrains Toolbox (choose jetbrains products from there) | |
choco install jetbrainstoolbox visualstudio2019community -Y | |
:: Visual Studio Code | |
choco install vscode -Y | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Games and Unreal ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Epic Launcher and Steam | |
choco install epicgameslauncher steam -Y | |
:: Unity Hub requires ignoring checksums for some reason. Do you feel safe? | |
choco install unityhub --ignore-checksums | |
:: Blender for 3D modeling and animation | |
choco install blender -Y | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Apps | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Browsers | |
choco install googlechrome firefox -Y | |
:: Communication and Community | |
choco install slack discord -Y | |
:: File Sharing | |
:: GDrive and Dropbox | |
choco install dropbox googledrive -Y | |
:: Streaming and Recording | |
:: - OBS Studio for Screen recording/streaming/virtual camming | |
choco install obs-studio parsec -Y | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: Utilities | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
:: see https://gist.github.com/camb416/c5599866b9bef103c0656208cdcfceb8 for ahk script | |
choco install autohotkey powertoys -Y | |
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment