I like to use the following Chocolatey packages =============================================== ``` docker-desktop microsoft-windows-terminal git.install github-desktop vscode paint.net 7zip.install nodejs.install firefox slack notepadplusplus.install sql-server-management-studio screentogif treesizefree postman filezilla audacity audacity-lame audacity-ffmpeg python2 python linqpad awscli azure-data-studio wireshark hxd bloomrpc nugetpackageexplorer sumatrapdf adobereader prime95 sqlite.shell furmark ruby vlc perfview win32diskimager putty k6 mp3tag winvice rufus # ISO image burn to USB stick bruno # Unfortunately doesn't work for all users. Manual install is better. krita winget search programname winget install --id=eloston.ungoogled-chromium -e winget install -e --id Microsoft.Teams winget install -e --id RedHat.Podman winget install -e --id RedHat.Podman-Desktop winget install --id CPUID.CPU-Z -e winget install Schniz.fnm winget install 1password-cli winget list | find /N /I "podman" winget upgrade RedHat.Podman-Desktop winget upgrade eloston.ungoogled-chromium winget install -e --id Microsoft.VisualStudio.2022.Professional winget install -e --id Microsoft.AzureCLI winget install -e --id KDE.KDiff3 winget install -e --id Microsoft.EdgeWebView2Runtime winget install -e --id Microsoft.Sysinternals.ProcessExplorer ``` note: Some command-line tools install to `C:\ProgramData\chocolatey\lib`. ### Example Commands ``` choco install package1 choco list --local-only choco outdated choco upgrade package1 package2 choco upgrade all --except="'package1,package2'" winget list ``` ### Get 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'))` ### Get Winget `Add-AppxPackage -RegisterByFamilyName -MainPackage Microsoft.DesktopAppInstaller_8wekyb3d8bbwe` See: https://learn.microsoft.com/en-us/windows/package-manager/winget/#install-winget ### PIP ``` # list outdated pip3 list -o # upgrade pip3 install podman-compose --upgrade ```