Get-RmsRequestInfo 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 user request for the Active Directory Rights Management Services (AD RMS) cluster.
Description
This cmdlet generates a report that contains detailed information about a particular user request on the Active Directory Rights Management Services (AD RMS) cluster.
To obtain the report, specify the RequestID of the user request 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-RmsUserRequestReport cmdlet to obtain the RequestID of the user request for which you want a detailed report.
Parameters
-Path
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
-RequestId <Int64>
Specifies the unique internal ID of a user request.
Required? true
Position? named
Default value
Accept pipeline input? true (ByValue, ByPropertyName)
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-RmsRequestInfo -RequestId <Int64> [-Path] <String[]> [-WhatIf] [-Confirm] [<CommonParameters>]
————– EXAMPLE 1 ————–
C:\PS>Get-RmsRequestInfo -Path . -RequestID 1000
This command displays information about a particular user request.
————– EXAMPLE 2 ————–
C:\PS>Get-RmsUserRequestReport -Path . -RequestType AcquireLicense -UserID 1 | Get-RmsRequestInfo -Path .
This command displays detailed information about a user’s request to acquire a license. The Get-RmsUserRequestReport cmdlet retrieves the user’s license request and then pipes the results to the Get-RmsRequestInfo cmdlet to display the details of the request.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Get-RmsRequestInfo
You can also read about
- Get-RmsUserRequestReport