Created
September 19, 2016 09:52
-
-
Save nivleshc/0d62cb569586363a2d862ffc704d778e to your computer and use it in GitHub Desktop.
Parameters for CreateADReplicaDC DSC Configuration Script
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
Configuration CreateADReplicaDC | |
{ | |
param | |
( | |
[Parameter(Mandatory)] | |
[String]$DomainName, | |
[Parameter(Mandatory)] | |
[System.Management.Automation.PSCredential]$Admincreds, | |
[Parameter(Mandatory)] | |
[System.Management.Automation.PSCredential]$SafemodeAdmincreds, | |
[Int]$RetryCount=20, | |
[Int]$RetryIntervalSec=30 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment