Finalize Windows 11 installation

Prelude

Read this page first. Install Windows 11 with a USB key

  • Indeed, below, I assume Chocolatey is up and running
  • Most of the software installations are done in Windows Terminal using CLI

Installations

Open an Admin Terminal

Set-ExecutionPolicy RemoteSigned
Update-Help

Chrome

choco install googlechrome -y

MesloGM Nerd Font

Oh my Posh

Set-ExecutionPolicy Bypass -Scope Process -Force; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://ohmyposh.dev/install.ps1'))

Later, for updates of Oh my Posh use the same command

VSCode

choco install vscode -y

Git

choco install git -y
Update-SessionEnvironment                   # update environment variables
git config --global user.name "Xxxx YYYYY"
git config --global user.email xxx.yyy@gmail.com
git config --global core.editor "code --wait"
git config --list

Linux Sub System

wsl --install
  • Reboot the host

Powershell (!=Windows Powershell)

choco install powershell-core -y
Update-Help
  • In order to see the Oh My Posh prompt, I had to copy the content of Microsoft.PowerShell_profile.ps1 into profile.ps1

  • In %USERPROFILE%/Documents check PowerShell and WindowsPowerShell directories

Powertoys

choco install powertoys -y
  • Reboot the host

Docker

choco install docker-desktop -y
Update-SessionEnvironment

Anaconda

conda update conda
conda update -n base --all

Microsoft365

  • Connect to your Microsoft account

  • Select “Install Software”

  • OfficeSetup.exe…

Rufus

choco install rufus.portable -y

Adobe Acrobat Reader DC => Sumatra

choco install sumatrapdf.portable -y
  • Edge or Chrome might be OK

  • Install Sumatra Portable Version

Choco survival guide

  • Update-SessionEnvironment comes with chocolatey
choco search vscode
choco install vscode -y
choco list
choco upgrade all
choco uninstall vscode

TO DO

choco install filezilla -y
choco install gpu-z -y
choco install cpu-z.portable -y
  • Anaconda or miniconda

What is next ?

  • When possible install software using choco
  • Select portable version of the software when it is available

Back to top

Published on: Nov 5 2023 at 11:44 AM | Last updated: Dec 3 2023 at 03:34 PM

Copyright © 1964-2025 - 40tude