Skip to content

Instantly share code, notes, and snippets.

@spy86
Created January 21, 2019 20:26
Show Gist options
  • Select an option

  • Save spy86/b203c1e38a351185981d0815da46220e to your computer and use it in GitHub Desktop.

Select an option

Save spy86/b203c1e38a351185981d0815da46220e to your computer and use it in GitHub Desktop.
DSC config script:
#$configData = @{
@{
AllNodes = @(
@{
NodeName = "*"
PSDscAllowPlainTextPassword = $true
},
@{
NodeName = "fabfiberserver"
Role = "WebServer,SqlServer"
}
);
}
# Note: different 1st line for RM or command line invocation
# use $configData = @{ for RM
# use @{ for running from command line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment