Last active
February 8, 2025 04:42
-
-
Save romanrozinov/ad831c65bf6ef5fe05dd934a72375ab9 to your computer and use it in GitHub Desktop.
Installation script for developer environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
winget --upgrade | |
# Installs various application for developer environment | |
winget install --id cpuid.cpu-z -e -h | |
winget install --id ditto.ditto -e -h | |
winget install --id Microsoft.VisualStudioCode -e -h | |
winget install --id CoreyButler.NVMforWindows -e -h | |
winget install --id Microsoft.VisualStudio.2022.Enterprise -e -h | |
winget install --id Git.Git -e -h | |
winget install --id Microsoft.Sysinternals -e -h | |
winget install --id Microsoft.SQLServerManagementStudio -e -h | |
winget install --id Microsoft.PowerToys -e -h | |
winget install --id Postman.Postman -e -h | |
# Containerization | |
Enable-WindowsOptionalFeature -Online -NoRestart -FeatureName containers -All #Enable containers in Windows | |
winget install --id Docker.DockerDesktop -e -h | |
wsl --install -d Ubuntu | |
# Azure tooling | |
winget install --id Microsoft.AzureCLI -e -h | |
winget install --id Microsoft.Azd -e -h | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment