Tags: PowerShell

How to get a Bearer access token for Azure

Security Cyber Benjamin Perkins

Even though I am not a security expert, it has always interested me.  When I worked on the IIS team some years back, pre Azure and pre Cloud days the protocol mostly used for large corporations was Kerberos.  Initially, troubleshooting those issues would give me sleepless nights, but over some years you begin to see […]

Read More →

How to Backup/Restore an Azure App Service using Azure PowerShell

PowerShell Benjamin Perkins

Use these Azure PowerShell cmdlets: New-AzureRmWebAppBackup Restore-AzureRmWebAppBackup Get-AzureRmStorageAccountKey New-AzureStorageContainerSASToken Don’t forget that this is open source, so you can see what these cmdlets are doing on GitHub here. Note that creating and restoring backups are only available in STANDARD and PREMIUM mode. Check out how to do the same using BASH from the console here. […]

Read More →