Get-RmsCertInfo

Get-RmsCertInfo is accessible with the help of ADRMSAdmin module. To install ADRMSAdmin on your system please refer to this ADRMSAdmin.

Synopsis

Generates a report containing information about a particular certificate used in a user request for the Active Directory Rights Management Services (AD RMS) cluster.

Description

This cmdlet generates a report that contains information about a particular certificate used in a user request on the Active Directory Rights Management Services (AD RMS) cluster.

To obtain the report, specify the CertificateID of the certificate for which you want a report and then set the Path parameter to the AD RMS provider drive subpath “:\Report” where is the provider drive ID. You can also specify a relative path. For example, “.” specifies the current location.

Use the Get-RmsCertChain cmdlet to obtain the CertificateID of the certificate for which you want a report. The CertificateID value returned is valid only for the cluster identified by the Path parameter of Get-RmsCertChain. You cannot use a CertificateID to identify the same certificate in different clusters

Parameters

-CertificateId
Specifies a unique internal certificate ID.

    Required?                    true
    Position?                    named
    Default value                
    Accept pipeline input?       true (ByValue, ByPropertyName)
    Accept wildcard characters?  false

-Path <String[]>
    Specifies a provider drive and path or relative path on the current drive. This parameter is required. Use a dot (.) to specify the current location. This parameter does not accept wildcards and has no default value.

    Required?                    true
    Position?                    1
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false

-Confirm <SwitchParameter>
    Prompts you for confirmation before running the cmdlet.

    Required?                    false
    Position?                    named
    Default value                false
    Accept pipeline input?       false
    Accept wildcard characters?  false

-WhatIf <SwitchParameter>
    Shows what would happen if the cmdlet runs. The cmdlet is not run.

    Required?                    false
    Position?                    named
    Default value                false
    Accept pipeline input?       false
    Accept wildcard characters?  false

Syntax

Get-RmsCertInfo -CertificateId <String> [-Path] <String[]> [-WhatIf] [-Confirm] [<CommonParameters>]

————– EXAMPLE 1 ————–
C:\PS>Get-RmsCertInfo -Path . -CertificateId <Certificate ID>
This command displays detailed information for a particular certificate.

————– EXAMPLE 2 ————–
C:\PS>$certs= Get-RmsCertChain -Path . -RequestId 2 | Where {$_.CertificateType -eq ‘DRM-CA-Certificate’}
$certs[0] | Get-RmsCertInfo -Path .
This command stores filtered results of the Get-RmsCertChain cmdlet in a variable and then pipes the first certificate in the array to the Get-RmsCertInfo cmdlet to display details about that certificate.

You can check the Version, CommandType and Source of this cmdlet by giving below command.

Get-Command Get-RmsCertInfo

Get-Command Get-RmsCertInfo powershell script command cmdlet adrmsadmin

You can also read about

  • Get-RmsCertChain
  • Get-RmsChildCert
  • Get-RmsUserRequestReport

To know more PowerShell cmdlets(Commands) on ADRMSAdmin (Active Directory Rights Management Services Admin) click here

Click on this Link for an Single place where you get all the PowerShell cmdlet sorted based on the modules.

You can also refer other blogs on PowerShell at link

You can also refer other blogs on Microsoft at link

And also if you required any technology you want to learn, let us know below we will publish them in our site http://tossolution.com/

Like our page in Facebook and follow us for New technical information.

References are taken from Microsoft

Leave a Reply

Your email address will not be published. Required fields are marked *