Examples/Resources/IntuneTrustedRootCertificateAndroidDeviceOwner/2-Update.ps1
<#
This example creates a new Intune Trusted Root Certificate Configuration Policy for Android Device Owner/Administrator devices #> Configuration Example { param( [Parameter()] [System.String] $ApplicationId, [Parameter()] [System.String] $TenantId, [Parameter()] [System.String] $CertificateThumbprint ) Import-DscResource -ModuleName 'Microsoft365DSC' Node localhost { IntuneTrustedRootCertificateAndroidDeviceOwner "ConfigureIntuneTrustedRootCertificateAndroidDeviceOwner" { Description = "IntuneTrustedRootCertificateAndroidDeviceOwner Description"; DisplayName = "IntuneTrustedRootCertificateAndroidDeviceOwner DisplayName"; Ensure = "Present"; certFileName = "newfakename.cer"; #changed value trustedRootCertificate = "insertValidBase64StringHereForAnotherCert" #changed value ApplicationId = $ApplicationId; TenantId = $TenantId; CertificateThumbprint = $CertificateThumbprint; } } } |