How to quickly create a dummy / self-signed certificate for sandbox testing

This is quick, simple recipe on how to creat a self-signed .pfx certificate for your sandbox in 1 minute using powershell. Step 1 – Create a new a self-signed certificate The New-SelfSignedCertificate cmdlet enables you to create a self-signed certificate. $cert = New-SelfSignedCertificate -DnsName www.domainname.co.za `-Type CodeSigning -CertStoreLocation Cert:\CurrentUser\My Step 2 – Verify that the… Continue reading How to quickly create a dummy / self-signed certificate for sandbox testing

Azure Internal load balancer

Load balancing refers to the practice of evenly distributing traffic load (incoming network traffic) across a group of backend resources or servers. Azure Load Balancer operates at layer 4 of the Open Systems Interconnection (OSI) model. The Azure load balancer the single point of contact for clients. Load balancers distribute inbound flows that arrive at the… Continue reading Azure Internal load balancer

Create an Azure metric alert

This recipe explains how to create an Azure Monitor Metric Alert in 5 minutes using the Powershell script below. The alert is scoped across an entire subscription and will trigger for any vm cpu average exceeding a predefined threshold. This powershell is broken into 2 parts, along with what components you need to consider during… Continue reading Create an Azure metric alert

Published
Categorized as Powershell