Great command ref - https://ss64.com/ps/
Dump object
Write-Host ($obj | Format-Table | Out-String)
Snapshot blob
$b = Get-AzStorageBlob -Container $containerName -Blob $blobName -Context $ctx
$snapshot = $b.ICloudBlob.CreateSnapshot()
- Automating outlook with powershell - https://devblogs.microsoft.com/premier-developer/outlook-email-automation-with-powershell/
- Trimming nulls - https://communary.net/2016/01/29/quick-tip-trim-null-terminated-strings/