Windows set-up automatization

Logo

Set-up your Windows environment from a fresh installation, with just a line of code!

View the Project on GitHub Xeeynamo/setup

Set-up from a fresh install, with just one line of code

About

This is a public repository of a script to set-up, from a fresh Windows 10 installation, a development or multimedia production environment with just a single command.

It will also tweak the UI, disable telemetry, uninstall pre-installed Windows apps and install all your favourite softwares.

Of course this personal repository is configured to be adapter on my specific needs, but you are free to fork it and customize it as you wish.

Set-up

From a powershell console, as an Administrator, just launch the following command:

Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/Xeeynamo/setup/master/bootstrap.ps1'))

Or if you want to avoid to launch the set-up (mostly for debugging purpose), launch the following command:

Set-ExecutionPolicy Bypass -Scope Process -Force; $debug=$true; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/Xeeynamo/setup/master/bootstrap.ps1'))

Customization

Please refer to customization to discover how to configure your personal set-up script.

Features

To do

Bonus: Install Arch Linux

Just launch curl https://raw.githubusercontent.com/Xeeynamo/setup/master/linux/pre.sh | sh