📋 Microsoft Entra Documentation Changes

Daily summary for changes since January 12th 2026, 7:53 PM PST

Report generated on January 13th 2026, 7:53 PM PST

📊 Summary

3
Total Commits
0
New Files
1
Modified Files
0
Deleted Files
3
Contributors

📝 Modified Documentation Files

+5 / -4 lines changed
Commit: Fix PowerShell syntax error in TLS certificate script
Changes:
Before
After
# -ExternalCertificateAuthorityCertificateId: The unique ID of the certificate request previously created.
# -BodyParameter: A hashtable containing the PEM-encoded certificate and chain as required by the API.
 
try {Update-MgBetaNetworkAccessTlExternalCertificateAuthorityCertificate -ExternalCertificateAuthorityCertificateId $externalCertificateAuthorityCertificateId -BodyParameter $paramsupload
-ErrorAction Stop} catch {
Write-Error "Failed to upload certificate and chain: $($_.Exception.Message)"
exit 1
}
 
Write-Host "Certificate is uploaded successfully via Microsoft Graph SDK."
 
# -ExternalCertificateAuthorityCertificateId: The unique ID of the certificate request previously created.
# -BodyParameter: A hashtable containing the PEM-encoded certificate and chain as required by the API.
 
try {
Update-MgBetaNetworkAccessTlExternalCertificateAuthorityCertificate -ExternalCertificateAuthorityCertificateId $externalCertificateAuthorityCertificateId -BodyParameter $paramsupload -ErrorAction Stop
} catch {
Write-Error "Failed to upload certificate and chain: $($_.Exception.Message)"
exit 1
}
 
Write-Host "Certificate is uploaded successfully via Microsoft Graph SDK."