This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
A script to retrieve Entra App Registration Password Credential Status in a list of app registrations | |
.DESCRIPTION | |
Step 1. Execute the script without the ConfigFilePath parameter. This will produce a list of app registrations in the tenant | |
Step 2. Save the output to a file and then edit the file to include only the app registrations you want a report on. | |
Step 3. Execute the script using the file you just edited. | |
.PARAMETER TenantId |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ==== Using the Az CLI ==== | |
az login | |
accessToken=$(az account get-access-token --query accessToken | tr -d \") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# == Turn This == | |
# <?xml version="1.0" encoding="utf-8"?> | |
# <configuration> | |
# <system.webServer> | |
# <handlers> | |
# <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" /> | |
# </handlers> | |
# <aspNetCore processPath=".\MyCoreGizmo.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" /> | |
# </system.webServer> |