Skip to content

Instantly share code, notes, and snippets.

@andikrueger
Last active January 8, 2019 15:22
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 andikrueger/714b5ad5dbfc5ea091998568a74136c4 to your computer and use it in GitHub Desktop.
Save andikrueger/714b5ad5dbfc5ea091998568a74136c4 to your computer and use it in GitHub Desktop.
SharePoint Configuration Data - old
@{
AllNodes = @(
@{
NodeName = "*"
PSDscAllowPlainTextPassword = $true
PSDscAllowDomainUser = $true
ServerRole = "invalid"
},
@{
NodeName = "SharePointServer"
ServerRole = "SingleServerFarm"
CentralAdmin = $true
IsMasterNode = $true
ServiceInstances = @(
)
}
)
NonNodeData = @{
SqlServerAlias = @(
@{
ServerName = "SqlServer\Content"
Name = "SharePoint-Content"
Protocol = "TCP"
UseDynamicTcpPort = $true
TcpPort = $false
},
@{
ServerName = "SqlServer1\Config"
Name = "SharePoint-Config"
Protocol = "TCP"
UseDynamicTcpPort = $true
TcpPort = $false
}
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment