Automated setup of Windows 10 through Boxstarter/Chocolatey/etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
GoFish 0ff57939c0 Switch to using Ubuntu PGP keyservers 4 years ago
README.md Enable auto-login during Boxstarter setup 6 years ago
windows_to_go.ps1 Switch to using Ubuntu PGP keyservers 4 years ago
windows_to_go_ssh_pass_ed25519.asc Add windows_to_go_ssh_pass_ed25519 5 years ago

README.md

boxstarter-win10

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:
    $c = Get-Credential; Install-BoxstarterPackage -Credential $c -PackageName URL_TO_RAW_INSTALLATION_SCRIPT_HERE