PoshCode Archive  Artifact [946d88c91b]

Artifact 946d88c91bc31b43b14d1005a21660edaa60741a2fae3702c13633c1defb9961:

  • File Add-WindowsAccountToSQLR.ps1 — part of check-in [11d1cb1fda] at 2018-06-10 13:41:31 on branch trunk — ############################################################################################# (user: SQLDBAwithabeard size: 2569)

# encoding: ascii
# api: powershell
# title: Add-WindowsAccountToSQLR
# description: #############################################################################################
# version: 0.1
# type: function
# author: SQLDBAwithabeard
# license: CC0
# function: Add-WindowsAccountToSQLRole
# x-poshcode-id: 4474
# x-archived: 2016-10-18T11:27:56
# x-published: 2013-09-17T18:41:00
#
# #
# NAME: Add-WindowsAccountToSQLRole.ps1
# AUTHOR: Rob Sewell http://sqldbawithabeard.com
# DATE:11/09/2013
# #
# COMMENTS: Load function to create a windows user and add them to a server role
# #
# USAGE: Add-WindowsAccountToSQLRole FADE2BLACK ‘FADE2BLACK\Test’ dbcreator
# Add-WindowsAccountToSQLRole FADE2BLACK ‘FADE2BLACK\Test’ public
#
#############################################################################################
#
# NAME: Add-WindowsAccountToSQLRole.ps1
# AUTHOR: Rob Sewell http://sqldbawithabeard.com
# DATE:11/09/2013
#
# COMMENTS: Load function to create a windows user and add them to a server role
#
# USAGE: Add-WindowsAccountToSQLRole FADE2BLACK 'FADE2BLACK\Test' dbcreator
#        Add-WindowsAccountToSQLRole FADE2BLACK 'FADE2BLACK\Test' public

Function Add-WindowsAccountToSQLRole ([String]$Server, [String] $User, [String]$Role)
{

$Svr = New-Object ('Microsoft.SqlServer.Management.Smo.Server') $server

# Check if Role entered Correctly
$SVRRole = $svr.Roles[$Role]
    if($SVRRole -eq $null)
        {
        Write-Host " $Role is not a valid Role on $Server"
        }

    else
        {
#Check if User already exists
    		if($svr.Logins.Contains($User))
			    {
                $SqlUser = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Login $Server, $User
                $LoginName = $SQLUser.Name
                if($Role -notcontains "public")
                    {
                    $svrole = $svr.Roles | where {$_.Name -eq $Role}
                    $svrole.AddMember("$LoginName")
                    }
                }

            else
                {
                $SqlUser = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Login $Server, $User
                $SqlUser.LoginType = 'WindowsUser'
                $SqlUser.Create()
                $LoginName = $SQLUser.Name
                if($Role -notcontains "public")
                    {
                    $svrole = $svr.Roles | where {$_.Name -eq $Role}
                    $svrole.AddMember("$LoginName")
                    }
                }
        }

}