Initiate Failover of Azure Storage Account

Azure Storage is a cloud service that provides scalable, secure, cost-effective storage solutions for various data types. However, data stored in Azure Storage may still be vulnerable to service disruptions, accidental deletions, or corruptions due to human errors, natural disasters, or malicious attacks. Therefore, it is essential to have a backup and disaster recovery plan for your Azure Storage account. […]

Read more

Migrating SFTP Workloads to Azure Blob Storage

Azure Blob Storage supports SFTP (SSH File Transfer Protocol), allowing users to leverage object storage economics and features for their SFTP workloads. Users can provision a fully managed, highly scalable SFTP endpoint for their storage account with just one click during the storage provisioning process. SFTP support and protocol support for NFS 3.0, Blob REST, and Azure Data Lake Storage […]

Read more

Using Managed (System) Identities to access Azure Key Vault

A common challenge that integrators run into is managing secrets and subsequently, managing access to secrets. Azure Key Vault is a service that developers can use to store their secrets, keys and other sensitive data. However, there is still a challenge with accessing these secrets. If you are storing the credentials to access Key Vault in a non-secure manner, you […]

Read more

How to Configure Exchange Server 2016 for SMTP Application Relay

In most organizations there are several devices or applications that need to use an SMTP service to send email messages. An Exchange 2016 server can provide that service for you, however the configuration required on the server depends on the SMTP relay requirements of your scenario. The steps for how to configure Exchange Server 2016 SMTP relay are: Determining Internal vs External […]

Read more

Cloning Azure VMs

Cloning an Azure virtual machine is something I thought it was directly integrated (as in, one click/command and that’s it, but no, it involves several steps. However, it is not complicated, and in this post I will explain how to do it! Step 1. Go to Azure portal, navigate to the virtual machine you want to clone. In the Disks section, click on its operating system disk. […]

Read more

Adding DNS Servers in All DHCP Scopes using PowerShell

To Get all Scopes – Open PowerShell – Run as Administrator Get-DhcpServerv4Scope To Check DNS Servers Option 006 Get-DhcpServerv4Scope| Get-DhcpServerv4OptionValue| Where-Object{$_.OptionID -like6} | FT Value To Check – Whatif Get-DhcpServerv4Scope| Set-DhcpServerv4OptionValue-DnsServer172.21.10.20,172.21.10.21,10.10.11.10,10.10.11.11 –Whatif To Apply Get-DhcpServerv4Scope| Set-DhcpServerv4OptionValue-DnsServer172.21.10.20,172.21.10.21,10.10.11.10,10.10.11.11 To Check if its Applied or Not Get-DhcpServerv4Scope| Get-DhcpServerv4OptionValue| Where-Object{$_.OptionID -like6} | FT Value You can see 006 DNS Servers Updated for all scopes

Read more

Connecting Azure Express Route with Multiple Virtual Networks

Unlike a traditional hub and spoke when you have site to site VPN with azure with multiple virtual networks. Azure Express route gives you an additional option to create up-to to 10 connections directly with the express route circuit. Where the virtual network can be from different subscriptions. It makes life much easier when you have multiple business units within […]

Read more
1 2 3 4 71