-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #238 from rchristman89/dev
xADDomainController: Added new parameter to support IFM
- Loading branch information
Showing
5 changed files
with
263 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 8 additions & 7 deletions
15
DSCResources/MSFT_xADDomainController/MSFT_xADDomainController.schema.mof
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[ClassVersion("1.0.1.0"), FriendlyName("xADDomainController")] | ||
class MSFT_xADDomainController : OMI_BaseResource | ||
{ | ||
[Key] String DomainName; | ||
[Required, EmbeddedInstance("MSFT_Credential")] String DomainAdministratorCredential; | ||
[Required, EmbeddedInstance("MSFT_Credential")] String SafemodeAdministratorPassword; | ||
[write] String DatabasePath; | ||
[write] String LogPath; | ||
[write] String SysvolPath; | ||
[write] String SiteName; | ||
[Key, Description("The FQDN of the domain the Domain Controller will be joining.")] String DomainName; | ||
[Required, Description("The 'PSCredential' object containing Domain Adminstrator rights to add the Domain Controller to the domain."), EmbeddedInstance("MSFT_Credential")] String DomainAdministratorCredential; | ||
[Required, Description("The 'PSCredential' object containing the password to use for DSRM."), EmbeddedInstance("MSFT_Credential")] String SafemodeAdministratorPassword; | ||
[Write, Description("The path where the database will be stored.")] String DatabasePath; | ||
[Write, Description("The path where the logs will be stored.")] String LogPath; | ||
[Write, Description("The path where the Sysvol will be stored.")] String SysvolPath; | ||
[Write, Description("The name of the site this Domain Controller will be added to.")] String SiteName; | ||
[Write, Description("The path of the media you want to use install the Domain Controller.")] String InstallationMediaPath; | ||
}; |
Oops, something went wrong.