Skip to content

Commit

Permalink
Renames missed PasswordAuthenticationContext parameter to PasswordAut…
Browse files Browse the repository at this point in the history
…hentication in MSFT_xADUser.schema.mof

Updates manager description
  • Loading branch information
iainbrighton committed Jul 5, 2016
1 parent 9bb89c7 commit 2f5a3fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions DSCResources/MSFT_xADUser/MSFT_xADUser.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ function Get-TargetResource
[ValidateNotNull()]
[System.String] $IPPhone,

## User's manager specified as a Distinguished Name (ldapDisplayName 'manager')
## Specifies the user's manager specified as a Distinguished Name (ldapDisplayName 'manager')
[ValidateNotNull()]
[System.String] $Manager,

Expand Down Expand Up @@ -492,7 +492,7 @@ function Test-TargetResource
[ValidateNotNull()]
[System.String] $IPPhone,

## User's manager specified as a Distinguished Name (ldapDisplayName 'manager')
## Specifies the user's manager specified as a Distinguished Name (ldapDisplayName 'manager')
[ValidateNotNull()]
[System.String] $Manager,

Expand Down Expand Up @@ -741,7 +741,7 @@ function Set-TargetResource
[ValidateNotNull()]
[System.String] $IPPhone,

## User's manager specified as a Distinguished Name (ldapDisplayName 'manager')
## Specifies the user's manager specified as a Distinguished Name (ldapDisplayName 'manager')
[ValidateNotNull()]
[System.String] $Manager,

Expand Down
4 changes: 2 additions & 2 deletions DSCResources/MSFT_xADUser/MSFT_xADUser.schema.mof
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ class MSFT_xADUser : OMI_BaseResource
[Write, Description("Specifies the user's home telephone number (ldapDisplayName 'homePhone')")] String HomePhone;
[Write, Description("Specifies the user's pager number (ldapDisplayName 'pager')")] String Pager;
[Write, Description("Specifies the user's IP telephony phone number (ldapDisplayName 'ipPhone')")] String IPPhone;
[Write, Description("User's manager specified as a Distinguished Name (ldapDisplayName 'manager')")] String Manager;
[Write, Description("Specifies the user's manager specified as a Distinguished Name (ldapDisplayName 'manager')")] String Manager;
[Write, Description("Specifies if the account is enabled (default True)")] Boolean Enabled;
[Write, Description("Specifies whether the account password can be changed")] Boolean CannotChangePassword;
[Write, Description("Specifies whether the password of an account can expire")] Boolean PasswordNeverExpires;
[Write, Description("Specifies the Active Directory Domain Services instance to use to perform the task.")] String DomainController;
[Write, Description("Specifies the user account credentials to use to perform this task"), EmbeddedInstance("MSFT_Credential")] String DomainAdministratorCredential;
[Write, Description("Specifies the authentication context type used when testing passwords"), ValueMap{"Default","Negotiate"},Values{"Default","Negotiate"}] String PasswordAuthenticationContext;
[Write, Description("Specifies the authentication context type used when testing passwords"), ValueMap{"Default","Negotiate"},Values{"Default","Negotiate"}] String PasswordAuthentication;
[Read, Description("Returns the X.500 path of the object")] String DistinguishedName;
};

0 comments on commit 2f5a3fc

Please sign in to comment.