Enterprise Operating Systems

Troubleshooting and Guides for: Microsoft Server, Linux, and VMware

Read More

Dell Hardware/Software Guides

Dell Servers – PowerEdge, Blades, and Cloud
integrated Dell Remote Access Controller (iDrac)
OpenMange Server Administrator (OMSA)

Read More

Scripting Guides

PowerShell, Bash, JSON, and Python Scripting Guides

Read More

Setup Self Hosted Linux Agent in Azure DevOps

crtechtipsFeb 1, 20244 min read

Let us learn how to create and configure a Self-Hosted Agent in Azure DevOps (ADO). What is an Agent? An agent is computing infrastructure with installed agent software that runs one job at a time. To build your code or…

Automate Infrastructure in Azure using Terraform and Azure DevOps

crtechtipsFeb 1, 20243 min read

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 Azure resources programmatically, version control your infrastructure configurations, and automate…

How to deploy an Azure Virtual Desktop environment using PowerShell

crtechtipsNov 2, 20233 min read

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 Azure account: Connect-AzAccount Create a resource group: $resourceGroupName = “YourResourceGroupName”…

Here’s an example of Terraform code to deploy Azure Virtual Desktop resources

crtechtipsNov 2, 20232 min read

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 = [“10.0.0.0/16”]location = azurerm_resource_group.rg.locationresource_group_name = azurerm_resource_group.rg.name} Create a subnet resource…

Copy blobs between Storage Accounts with an Azure Function

crtechtipsOct 4, 20235 min read

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 selected an existing Storage Account under ‘Hosting’ when creating my…