How to create an Azure SPN for Terraform

Service Principal Name is effectively a service account within Azure. Required in this scenario for our Terraform Provider function to connect our TF code to our Azure Subscription. Login to …

How to hook Terraform into Azure

You can hook Terraform into Azure with the following requirements: client_id, Azure counterpart is Application ID within AAD directory application. client_secret, Password Keys within AAD directory application. tenant_id, AAD Directory …

FSRM Quota Reporting Incorrectly

FSRM can glitch out and report incorrect quota values for directories. In this scenario, we can use the DIRQUOTA command via elevated CMD prompt to resolve. dirquota quota scan /path:<Path> …

Universal VMware Tools Uninstaller

I’ve created the following Powershell script which will uninstall all versions of VMware Tools from a server. Particularly handy for SCCM deployment. uninstall_vmware_tools.ps1 $regpath = “HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall” $regkey = gci $regpath …