From 71bb9dc905e8e2e10a46db51de8817ba08175bdc Mon Sep 17 00:00:00 2001 From: Axel Tripier Date: Sun, 28 Jun 2020 17:28:59 +0200 Subject: [PATCH] README for initial setup --- README.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 19f0152..db51b5a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,27 @@ # boxstarter-win10 -Automated setup of Windows 10 through Boxstarter/Choolatey. \ No newline at end of file +Automated setup of Windows 10 through Boxstarter/Chocolatey. + +## Initial setup + +* Install Windows normally. Use a local account, and reject all the data + collection features such as location, Cortana, etc. + +* Activate Windows so that personalization commands can be run successfully + +* Open an Administrator PowerShell: type Win+X, click on + `Windows PowerShell (Admin)` + +* Lift the execution policy restrictions to be able to execute Boxstarter + PowerShell scripts:\ + `Set-ExecutionPolicy Unrestricted -Force` + +* Install Boxstarter:\ + `. { iwr -useb https://boxstarter.org/bootstrapper.ps1 } | iex; Get-Boxstarter -Force` + +* Get the raw URL of the Boxstarter installation script you want. It should be a + file ending in `.ps1` in the same folder as this README file. Be sure to get + the raw URL that just gives you the raw file content itself. + +* Run the Boxstarter installation script:\ + `Install-BoxstarterPackage -PackageName URL_TO_RAW_INSTALLATION_SCRIPT_HERE`