Skip to content

Instantly share code, notes, and snippets.

@nivleshc
Created September 19, 2016 09:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nivleshc/0d62cb569586363a2d862ffc704d778e to your computer and use it in GitHub Desktop.
Save nivleshc/0d62cb569586363a2d862ffc704d778e to your computer and use it in GitHub Desktop.
Parameters for CreateADReplicaDC DSC Configuration Script
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