Skip to content

Instantly share code, notes, and snippets.

@nivleshc
Last active September 25, 2016 04:18
Show Gist options
  • Save nivleshc/17da4ace5e54cb9a61a97b666eb70f62 to your computer and use it in GitHub Desktop.
Save nivleshc/17da4ace5e54cb9a61a97b666eb70f62 to your computer and use it in GitHub Desktop.
Parameters for InstallADFS.ps1 DSC script
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