azure-docs-powershell-samples/application-management
softwarepronto 691d626892
Removed overkill calls to Select-Object -ExpandProperty (#412)
The script uses the . operator to access properties ($Secret.StartDateTime) except here:

$RemainingDaysCount = $EndDate - $Now |
            Select-Object -ExpandProperty Days

It is simpler to write
$RemainingDaysCount = ($EndDate - $Now).Days
2023-09-06 14:40:47 -05:00
..
export-all-app-registrations-secrets-and-certs.ps1 update scripts to use Microsoft Graph PowerShell (#397) 2023-07-11 13:07:53 -05:00
export-all-enterprise-apps-secrets-and-certs.ps1 update scripts to use Microsoft Graph PowerShell (#397) 2023-07-11 13:07:53 -05:00
export-apps-with-expiring-secrets.ps1 Removed overkill calls to Select-Object -ExpandProperty (#412) 2023-09-06 14:40:47 -05:00
export-apps-with-secrets-beyond-required.ps1 update scripts to use Microsoft Graph PowerShell (#397) 2023-07-11 13:07:53 -05:00
export-enterprise-apps-with-expiring-secrets.ps1 update scripts to use Microsoft Graph PowerShell (#397) 2023-07-11 13:07:53 -05:00