Windows 10 Image Series – Part 3 – Shared Image Gallery

In this series I am going to show you how build a Windows 10 Image via Azure Pipelines and DevOps without 3rd party tooling, welcome to part 3! Part 3 is about the Shared Image Gallery. This is a service within Microsoft Azure to publish images and we are publishing our managed image in the … Read more

Autopilot Devices Script Menu

I have written a couple of posts which describe add Autopilot devices to Intune. The feedback that I got was that it might be easier for some people to include a menu to add group tags. I have created a script which builds a menu where you can choose a group tag for your autopilot … Read more

Powershell Function for Creating WVD Hostpools

I have written a Powershell Function which I use for Creating WVD Hostpools. Instead of clicking through the portal you now can create multiple hostpools by running this function. Prerequisites An Azure subscription The Azure subscription needs to be prepared for WVD deployment Install Powershell Modules (This is listed in the blog) Powershell Function This … Read more

WVD Create HostPool

This is a blogpost about how to create a WVD HostPool. I demonstrate two methods. The GUI based method and the Powershell method. In addition, you can also create the Hostpool via an ARM template but that’s a topic for another time. The GUI based method Firstly, log on to Microsoft Azure. After that, go … Read more

WVD Springrelease ARMTemplate Token Refresh Script

This is a blogpost about a script which performs a Token Refresh for the WVD springrelease ARMTemplate deployment. This normally needs to be entered manually but with this script this token will be refreshed at the start of every deployment. I am talking about this parameter which sits in the ARM Template supplied by Microsoft … Read more

WVD Delete Hostpools Powershell

This is a blogpost about a script which initiates a delete request for all resources in a Resource Group, I use this script for deleting WVD hostpools with Powershell. The hostpool resource need to be deleted in an exact order.1. VM’s need to be deleted first.2. After that sessionhosts must delete from the hostpool.3. Then … Read more

WVD Logoff users Hostpool Powershell

This is a blogpost about a script which initiates a logoff for all users in a WVD Hostpool via Powershell. The script populates the hostpool(s) based on a Resource Group within Azure. If there are multiple hostpools within this Resource Group the users are logged off also. Script Syntaxis This is the syntax for the … Read more

WVD Set Drain Mode Powershell

This is a blogpost about a script to set drain mode for all session hosts via powershell in one WVD hostpool. This is a script for the spring release. The fall release CMDLets of WVD uses other CMDlets. WVD Script Firstly, we need to connect to Azure using Powershell. We can do this by using … Read more

UnAttended Azure AD Join

This is a blogpost about joining Windows 10 machines unattended to Azure AD with a provisioning package created with the Windows Configuration Designer. The enrollment is done with a token which is created by a service account which services the Azure AD Join. Prerequisites Create a service account in Azure AD to create the bulk … Read more