Quickly set up your Windows machine with Chocolatey and your favorite packages!
Report Bug
Table of Contents
This script lets you quickly set up your Windows machine with Chocolatey and the packages you specify. It's perfect for quickly setting up fresh Windows installations with the software you need.
Follow these steps to use the script:
- PowerShell (Windows 7 SP1 and Windows Server 2008 R2 SP1 and higher comes with PowerShell pre-installed)
- Clone this repo or download
setup.ps1
andpackages.txt
files - Edit
packages.txt
and add the packages you want to install, one per line
- Run PowerShell with administrator privileges
- Navigate to the directory where you downloaded
setup.ps1
andpackages.txt
- Run the following command:
.\setup.ps1 -local
If you have uploaded your edited setup.ps1
and packages.txt
to a GitHub repository, you can run the setup directly from PowerShell with this command (change the url to your repo unless you want to download my choice of software):
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/lippielip/choco-quickstart/master/setup.ps1'))
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Project Link: https://github.com/lippielip/choco-quickstart