Examples/Resources/xSQLServerDatabase/2-DeleteDatabase.ps1

<#
.EXAMPLE
    This example shows how to remove a database with
    the database name equal to 'AdventureWorks'.
#>

Configuration Example
{
    param
    (
        [Parameter(Mandatory = $true)]
        [System.Management.Automation.PSCredential]
        [System.Management.Automation.Credential()]
        $SysAdminAccount
    )

    Import-DscResource -ModuleName xSqlServer

    node localhost
    {
        xSQLServerDatabase Delete_Database
        {
            Ensure = 'Absent'
            SQLServer = 'SQLServer'
            SQLInstanceName = 'DSC'
            Name = 'AdventureWorks'
        }
    }
}