Last active
September 25, 2016 04:18
-
-
Save nivleshc/17da4ace5e54cb9a61a97b666eb70f62 to your computer and use it in GitHub Desktop.
Parameters for InstallADFS.ps1 DSC 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 InstallADFS | |
{ | |
param | |
( | |
[Parameter(Mandatory)] | |
[string]$MachineName, | |
[Parameter(Mandatory)] | |
[string]$DomainName, | |
[Parameter(Mandatory)] | |
[System.Management.Automation.PSCredential]$Admincreds, | |
[Int]$RetryCount=20, | |
[Int]$RetryIntervalSec=30 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment