Export Variable Groups from VSTS

Recently I stuck in a situation where I wanted to export variable groups from my VSTS account but there was no such option to export variable group. You can use this PowerShell to download a clone copy of Variable Groups.…

Few useful PowerShell commands

Here I am sharing few important commands in PowerShell which I found useful in my day to day coding. I hope these will help you as well.To print something in consoleWrite-Output "Database publihsed…

Difference between SET and SETX in PowerShell

Both commands are used to set environment variable values in windows through command-line.SETSET is used to create new environment variable or change the value of existing environment variable. Its…