Temps de lecture : 2 minutes
Read this page first
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
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
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
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
- When needed, type `rufusp` in a terminal or WIN + R then `rufusp`
- If needed, visit : C:\ProgramData\chocolatey\bin
- https://github.com/pbatard/rufus
Adobe Acrobat Reader DC
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
What is next ?
- When possible install software using choco
- Select portable version of the software when it is available
Leave a Reply