Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Readme formatting and typos #125

Merged
merged 1 commit into from
Nov 22, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ These DSC Resources allow you to configure new domains, child domains, and high
* **ParentDomainName**: Fully qualified name of the parent domain (optional).
* **DomainAdministratorCredential**: Credentials used to query for domain existence.
* __Note: These are NOT used during domain creation.__
(AD sets the localadmin credentials as new domain administrator credentials during setup.)
(AD sets the local admin credentials as new domain administrator credentials during setup.)
* **SafemodeAdministratorPassword**: Password for the administrator account when the computer is started in Safe Mode.
* **DnsDelegationCredential**: Credential used for creating DNS delegation (optional).
* **DomainNetBIOSName**: Specifies the NetBIOS name for the new domain (optional).
Expand Down Expand Up @@ -64,7 +64,7 @@ These DSC Resources allow you to configure new domains, child domains, and high
* To be compatible with older operating systems, create a SAM account name that is 20 characters or less.
* Once created, the user's SamAccountName and CN cannot be changed.
* **Password**: Password value for the user account.
* _If the account is enabled (default behaviour) you must specifiy a password._
* _If the account is enabled (default behaviour) you must specify a password._
* _You must ensure that the password meets the domain's complexity requirements._
* **Ensure**: Specifies whether the given user is present or absent (optional).
* If not specified, this value defaults to Present.
Expand All @@ -74,7 +74,7 @@ These DSC Resources allow you to configure new domains, child domains, and high
* This is only required if not executing the task on a domain controller or using the -DomainController parameter.
* **CommonName**: Specifies the user's CN of the user account (optional).
* If not specified, this defaults to the ___UserName___ value.
* **UserPrincipalName**: Each user account has a user principal name (UPN) in the format [user]@[DNS-domain-name] (optional).
* **UserPrincipalName**: Each user account has a user principal name (UPN) in the format [user]@[DNS-domain-name] (optional).
* **DisplayName**: Specifies the display name of the user object (optional).
* **Path**: (optional).
* **GivenName**: Specifies the user's first or given name (optional).
Expand Down Expand Up @@ -126,8 +126,8 @@ These DSC Resources allow you to configure new domains, child domains, and high
### **xWaitForADDomain**

* **DomainName**: Name of the remote domain.
* **RetryIntervalSec**: Interval to check for the domain's existance.
* **RetryCount**: Maximum number of retries to check for the domain's existance.
* **RetryIntervalSec**: Interval to check for the domain's existence.
* **RetryCount**: Maximum number of retries to check for the domain's existence.

### **xADDomainTrust**

Expand Down Expand Up @@ -163,16 +163,16 @@ The xADGroup DSC resource will manage groups within Active Directory.
* **Description**: Specifies a description of the group object (optional).
* **DisplayName**: Specifies the display name of the group object (optional).
* **Members**: Specifies the explicit AD objects that should comprise the group membership (optional).
* If not specified, no group membershup changes are made.
* If not specified, no group membership changes are made.
* If specified, all undefined group members will be removed the AD group.
* This property cannot be specified with either 'MembersToInclude' or 'MembersToExclude'.
* **MembersToInclude**: Specifies AD objects that must be in the group (optional).
* If not specified, no group membershup changes are made.
* If not specified, no group membership changes are made.
* If specified, only the specified members are added to the group.
* If specified, no users are removed from the group using this parameter.
* This property cannot be specified with the 'Members' parameter.
* **MembersToExclude**: Specifies AD objects that _must not_ be in the group (optional).
* If not specified, no group membershup changes are made.
* If not specified, no group membership changes are made.
* If specified, only those specified are removed from the group.
* If specified, no users are added to the group using this parameter.
* This property cannot be specified with the 'Members' parameter.
Expand Down