This article is demo how to install and configure virtualenv on a Windows 10 machine. Install virtualenv. Open CMD or PowerShellPS C:py_projects> pip install virtualenv…
Author: NICK
This article will walk thru steps to demo how to link the local visual studio project to VSTS (Visual Studio Team Service). So that you…
Recently, I’ve been working on the Azure Stack Development Toolkit API to basically figure out how to retrieve the usage data from Azure Stack. The…
From the part 2, we have set up Nginx and confirmed it’s running from the Dock process. In this post, I’m going to configure the…
Once you have docker installed in Ubuntu, you can start to pull image from Docker Hub and run it on your local system. Also noticed…
Docker is available on multiple platform, which contains Desktop, Servers and Public Cloud Provider such as AWS and Azure. You can install it from any…
$HOSTS = @(‘192.168.185.234′,’192.168.162.13′,’192.168.36.23′,’192.168.128.7′,’192.168.128.19′,’192.168.128.18′,’192.168.36.135′,’192.168.163.7′,’192.168.163.13′,’192.168.36.39′,’192.168.162.13′,’192.168.128.19′,’192.168.128.18′,’192.168.163.14′,’192.168.163.13′,’192.168.161.18’)foreach ($HOSTName in $HOSTS){ try{ [System.Net.Dns]::GetHostbyAddress($HOSTName) } catch { $HOSTName + ‘ cannot be resolved by DNS’ } }
Here is a runbook for start specific vms in Azure. 1 2 3 4 5 6 7 8 910111213141516171819202122232425262728293031323334353637383940 workflow Bulk-Start{ Param ( [Parameter(Mandatory=$true)] [string[]]$VMs…
Nowadays, you can manage DSC from Azure. But you may getting the following error when you try to run Publish-AzureVMDscConfiguration Publish-AzureVMDscConfiguration : Can not find…
When you try to configure a DSC HTTP Pull server, you may have the following error: 1 Unable to load module ‘xPSDesiredStateConfiguration’: module not found…