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.…

Get list of all active TCP/UDP ports

Just type netstat -a in command prompt & press enter. This will print a list of all active TCP & UDP ports running on your machine.More detail about this command netstat can be found on below…

How to refresh git branches in visual studio?

ProblemDeleted remote branches are still visible in Visual Studio Team Explorer (Branches Section).SolutionYou just need to run git fetch --prune command in your solution directory using GIT Bash or…