Enterprise Operating Systems
Troubleshooting and Guides for: Microsoft Server, Linux, and VMware
Dell Hardware/Software Guides
Dell Servers – PowerEdge, Blades, and Cloud
integrated Dell Remote Access Controller (iDrac)
OpenMange Server Administrator (OMSA)
Automate Infrastructure in Azure using Terraform and Azure DevOps
Automating infrastructure setup in Azure Cloud using Terraform and Azure DevOps is a powerful approach to managing your infrastructure as code (IaC). This allows you to define and manage your …
How to deploy an Azure Virtual Desktop environment using PowerShell
To deploy an Azure Virtual Desktop environment using PowerShell, you need to perform the following steps: Install the required PowerShell modules: Install-Module -Name Az Install-Module -Name Az.DesktopVirtualization Connect to your …
Here’s an example of Terraform code to deploy Azure Virtual Desktop resources
Configure the Azure provider provider “azurerm” {features {}} Create a resource group resource “azurerm_resource_group” “rg” {name = “my-resource-group”location = “westus”} Create a virtual network resource “azurerm_virtual_network” “vnet” {name = “my-virtual-network”address_space …
Copy blobs between Storage Accounts with an Azure Function
Azure Function setup & trigger Firstly, we’re going to create an Azure Function using runtime of PowerShell in a Code publish method. I’m using a consumption plan type to reduce costs. I’ve …
Setting up FSLogix with Azure Virtual Desktop
Implementing FSLogix within your Azure Virtual Desktop environment provides an optimized experience for your end users. For example, a non-persistent Pooled Windows AVD host pool will allow the user to …