The Azure RBAC is powerful that allows assignment of users or SPNs to a role on a different resource levels, like user John can be assigned as Contributor on a Subscription, Resource Group, or a Resource (e.g. Storage Account) level.…
Category: Azure
Capture Real Public IP Address when using Azure Application Gateway
The Internet Information Services (IIS) running behind Azure Application Gateway have no direct way of finding out the real public IP address of the client sending the request. Well that may not be true because in the App itself, you…
Record the output of your PowerShell console using Start-Transcript
PowerShell comes with cmdlet of Start-Transcript that can be used to record all the output by commands to a text file. The text file can then be utilized for various reason. My top reason to use Star-Transcript cmdlet is to…