SetAcct
The SetAcct method of the IIsCertMapper object sets a new value for the Windows NT account string in an existing certificate mapping. Four seek methods are available to search for the mapping. 
Syntax
IIsCertMapper.SetAcct IMethod, vKey, NTAcct 
 
Parameters
- 
IMethod
- 
Specifies the seek method to use for searching the mappings. Valid seek methods are 1, 2, 3, or 4. Seek method 1 specifies search by certificate, seek method 2 searches by name, method 3 searches by Windows NT account, and method 4 searches by a 1-based numeric string index (for example "1", "2", and so on).
- 
vKey
- 
Specifies the key to use in the search specified by IMethod. For seek method 1, vKey specifies a certificate. For seek method 2, vKey specifies a name. For seek method 3, vKey specifies a Windows NT account. For seek method 4, vKey specifies a numeric string index (for example "1", "2", and so on).
- 
NTAcct
- 
Specifies a new value for the Windows NT account string.
Code Example
<% 
Dim CertObj 
Set CertObj = GetObject("IIS://..path../IIsCertMapper") 
' Search by Windows NT account 
CertObj.SetAcct 3, "MYACCT", "NewAccount" 
%> 
 
See Also
CreateMapping, GetMapping, DeleteMapping, SetEnabled, SetName, SetPwd