Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shurick81/ecc01558102fc9587edda9ce358f16cd to your computer and use it in GitHub Desktop.
Save shurick81/ecc01558102fc9587edda9ce358f16cd to your computer and use it in GitHub Desktop.
SQLServerSetup in Azure
Configuration SharePointDevelopmentEnvironmentTest2
{
Import-DSCResource -ModuleName xSQLServer
Node "lab3sp1"
{
xSQLServerSetup SQLSetup
{
InstanceName = "MSSQLServer"
SourcePath = "C:\Install\SQL 2016"
Features = "SQLENGINE"
InstallSharedDir = "C:\Program Files\Microsoft SQL Server"
SQLSysAdminAccounts = "username"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment