Windows OS - Tools Setup
List of tools to install while setting up a new host/laptop.
Windows OS - Tools Setup
Windows OS - Tools Setup
Install Chocolatey(Run as Admin)
1
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'))
Install VSCode
1
choco install vscode -y
- Sign-In into the GitHub to sync all the extensions, preferences and other settings.
Install DevOps Tools
1
choco install kubernetes-cli -y
1
choco install terragrunt -y
1
choco install terraform -y
1
choco install postman -y
Install Azure Tools
1
choco install azure-cli -y
1
choco install azure-functions-core-tools -y
Install Git
1
choco install git.install -y
Install GitHub CLI
1
choco install gh -y
Diagram Tools
1
choco install graphviz -y
Productivity Tools
1
choco install meld -y
1 2
choco install oh-my-posh -y Install-Module oh-my-posh -Scope CurrentUser
1
choco install powertoys -y
1
choco install go-task -y
1
choco install grep -y
OpenSSL
1
choco install openssl -y
Programming
1
choco install python --version=3.12.6 -y
Install distro in WSL
1
wsl.exe --install Ubuntu
Jekyll Installation
1 2 3 4 5 6
# Download Jekyll and follow the instructions provided in below article # https://jekyllrb.com/docs/installation/windows/ # Navigate to the website folder gem install jekyll bundler # To install the requirements for the Jekyll theme bundle install
This post is licensed under CC BY 4.0 by the author.