Namespace: Microsoft.Clm.Provision
Assembly: Microsoft.Clm.Provision (in microsoft.clm.provision.dll)
Usage
Visual Basic |
---|
Dim smartcardUuid As Guid Dim newPin As String ExecuteOperations.SetProposedAdminPin(smartcardUuid, newPin) |
Syntax
Visual Basic |
---|
Public Shared Sub SetProposedAdminPin ( _ smartcardUuid As Guid, _ newPin As String _ ) |
C# |
---|
public static void SetProposedAdminPin ( Guid smartcardUuid, string newPin ) |
C++ |
---|
public: static void SetProposedAdminPin ( Guid smartcardUuid, String^ newPin ) |
J# |
---|
public static void SetProposedAdminPin ( Guid smartcardUuid, String newPin ) |
JScript |
---|
public static function SetProposedAdminPin ( smartcardUuid : Guid, newPin : String ) |
Parameters
- smartcardUuid
-
A Guid object that identifies the smart card for which to store the administrator PIN.
- newPin
-
A String object that contains the smart card’s proposed administrator PIN.
Remarks
This method stores a specific new proposed administrator PIN in the FIM CM database. This operation is only applicable to PKCS#11 administrator PIN based smart cards. This call is not valid for Base CSP based smart cards. This call requires that PIN rollover is enabled in the profile template for the smart card. Also, the new proposed administrator PIN must meet the administrator PIN requirements that are specified in the profile template.
For PKCS#11 administrator PIN based cards, FIM CM allows for a two step process of updating the smart card’s administrator PIN. First, a new administrator PIN would be set as proposed. Then, after confirmation of the action being performed on the smart card, the administrator PIN would be set as active in the FIM CM database. A given PKCS#11 smart card in FIM CM can have one active administrator PIN and one proposed administrator PIN. Callers of this method must be members of the security group that is configured in the web.config file in order to be authorized to perform this operation.
In order for a call to this method to succeed, the caller of the method must be authorized to call the methods in the Sensitive API group. The Sensitive API group includes those methods where the caller has access to sensitive data. This includes the administrator PIN, the user PIN, the Base CSP administrator authentication key, and/or the Base CSP challenge response information.
To allow for a user, or a group of users, to be authorized to call the methods in the Sensitive API group, FIM CM must be configured as follows:
-
Open the
web.config
file that is associated with the FIM CM Web Virtual Directory (the default location of this file is%programfiles%\Microsoft Certificate Lifecycle Manager\web\web.config
). -
Locate the configuration section for the Sensitive API group, which resembles the following:
-
<add key="Clm.ProvisionApi.SensitiveApiGroup" value="" />
-
By default, FIM CM does not authorize any users to call the methods in the Sensitive API group.
-
Set the value to the name of a security group that contains the users who are to be authorized to call the methods in the Sensitive API group. The security group must be specified in the "domainname\groupname" format. For example:
-
<add key="Clm.ProvisionApi.SensitiveApiGroup" value="domain\SensitiveApiUserGroup" />
-
Save the
web.config
file.