forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2-RemoveSqlAlias.ps1
41 lines (35 loc) · 1.05 KB
/
2-RemoveSqlAlias.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<#
.DESCRIPTION
This example shows how to ensure that the SQL Alias
SQLDSC* does not exist with Named Pipes or TCP.
#>
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
$SqlAdministratorCredential
)
Import-DscResource -ModuleName 'SqlServerDsc'
node localhost
{
SqlAlias 'Remove_SqlAlias_TCP'
{
Ensure = 'Absent'
Name = 'SQLDSC-TCP'
ServerName = 'sqltest.company.local\DSC'
Protocol = 'TCP'
TcpPort = 1777
PsDscRunAsCredential = $SqlAdministratorCredential
}
SqlAlias 'Remove_SqlAlias_NP'
{
Ensure = 'Absent'
Name = 'SQLDSC-NP'
ServerName = '\\sqlnode\PIPE\sql\query'
Protocol = 'NP'
PsDscRunAsCredential = $SqlAdministratorCredential
}
}
}