Examples/FullExamples/NewFarm.ps1

<#
.EXAMPLE
    This example shows how to install Workflow Manager on a server.
#>


    Configuration Example 
    {
        param()

        Import-DscResource -ModuleName WorkflowManagerDSC

        $SetupAccount = Get-Credential
        WorkflowManagerInstall WFInstall
        {  
            Ensure = "Present"
            WebPIPath = "C:/WorkflowManagerFiles/bin/WebpiCmd.exe"
            XMLFeedPath = "C:/WorkflowManagerFiles/feeds/latest/webproductlist.xml"
            PsDscRunAsCredential = $SetupAccount
        }

        WorkflowManagerFarm FarmConfig
        {
            Ensure = "Present"
            DatabaseServer = "localhost"
            CertAutoGenerationKey = $SetupAccount
            RunAsPassword = $SetupAccount
            FarmAccount = $SetupAccount
            SBNamespace = "ServiceBus"
            PsDscRunAsCredential = $SetupAccount
        }
    }