Created
January 21, 2019 20:26
-
-
Save spy86/b203c1e38a351185981d0815da46220e to your computer and use it in GitHub Desktop.
DSC config script:
This file contains hidden or 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
| #$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