Local Windows 11 with Choco.

I got to set up a couple of new laptops with Windows 11. As they were intended for educational purposes Microsoft cloud account was out of the question and I needed to bypass it.

On top of that I had to admit I didn’t fancy installing the same selection of apps manually on each of them - thus decided to use package manager, in this case Chocolatey.

Here are the steps I went through:

Windows 11 installation

taskkill /F /IM oobenetworkconnectionflow.exe

Chocolatey

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))

Installing apps with Chocolatey

choco install obs-studio godot vlc python meshmixer git sumatrapdf reaper zoom vscode arduino 7zip googlechrome ublockorigin-chrome inkscape krita autodesk-fusion360 -y

Closing thoughts

As Windows has recieved “official” package manager, winget, it’s worth considering using it instead - I have a hunch in a long run winget will be more popular choice.

Also creating own repo, or even handling much of the installs / updates using Ansible might be a good idea, especially in slightly larger deployments.

Image(s):

Tadas Sar, @Unsplash