Examples/Resources/xSQLServerDatabaseRole/2-RemoveDatabaseRole.ps1
<#
.EXAMPLE This example shows how to ensure that the user account CONTOSO\SQLAdmin is not member of the "DeleteRole" SQL database role. #> Configuration Example { param ( [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] [System.Management.Automation.Credential()] $SysAdminAccount ) Import-DscResource -ModuleName xSqlServer node localhost { xSQLServerDatabaseRole Remove_Database_Role { Ensure = 'Absent' SQLServer = 'SQLServer' SQLInstanceName = 'DSC' Name = 'CONTOSO\SQLAdmin' Role = 'DeleteRole' Database = 'AdventureWorks' PsDscRunAsCredential = $SysAdminAccount } } } |