Last active
March 2, 2021 11:08
-
-
Save westurner/10950476 to your computer and use it in GitHub Desktop.
PowerShell script to install a minimal Workstation with Chocolatey
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
| ### PowerShell script to install a minimal Workstation with Chocolatey | |
| # https://chocolatey.org | |
| ## To Run This Script: | |
| # 1. Download this PowerShell script | |
| # * Right-click <> ("View Raw") and "Save As" to %HOME (/Users/<username>) | |
| # * If Cocolatey is not already installed, see "Uncomment to install Chocolatey" | |
| # * If you would like to also install Anaconda (Python, IPython, lots of great libraries) | |
| # * Scroll down to "Uncomment to install Anaconda (Python)" | |
| # * Check for the latest download .exe or .zip link at ./downloads | |
| # * Uncomment the two lines for your platform (x86 or x86_64) | |
| # 2. Open a Command Prompt | |
| # * Press 'Windows-R' (Run Command); Type `cmd`; Press <Enter> | |
| # 3. Run this PowerShell Script | |
| # * Type the following command: | |
| # @powershell -NoExit -NoProfile -ExecutionPolicy Bypass -File .\cinst_workstation_minimal.ps1 | |
| ## Uncomment to install Chocolatey | |
| # @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin | |
| cinst sysinternals | |
| #cinst Wget | |
| cinst curl | |
| cinst ConsoleZ | |
| cinst notepadplusplus | |
| #cinst vim | |
| cinst KickAssVim | |
| cinst hg | |
| cinst git | |
| cinst putty | |
| cinst winscp | |
| cinst spybot | |
| cinst ccleaner | |
| cinst vlc | |
| #cinst camstudio | |
| cinst Firefox | |
| cinst GoogleChrome | |
| ### Uncomment to install Anaconda (Python) | |
| # 1. http://continuum.io/downloads | |
| # 2. http://docs.continuum.io/anaconda/install.html#windows-install | |
| ## x86_64 | |
| #curl -O http://09c8d0b2229f813c1b93-c95ac804525aac4b6dba79b00b39d1d3.r79.cf1.rackcdn.com/Anaconda-1.9.2-Windows-x86_64.exe | |
| #.\Anaconda-1.9.2-Windows-x86_64.exe /S /D=C:\Anaconda | |
| ## x86 | |
| #curl -O http://09c8d0b2229f813c1b93-c95ac804525aac4b6dba79b00b39d1d3.r79.cf1.rackcdn.com/Anaconda-1.9.2-Windows-x86.exe | |
| #.\Anaconda-1.9.2-Windows-x86.exe /S /D=C:\Anaconda |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment