forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2-RemoveSQLServerAlias.ps1
37 lines (33 loc) · 978 Bytes
/
2-RemoveSQLServerAlias.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
<#
.EXAMPLE
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)]
[PSCredential]
$SysAdminAccount
)
Import-DscResource -ModuleName xSqlServer
node localhost {
xSQLServerAlias Remove_SqlAlias_TCP
{
Ensure = 'Absent'
Name = 'SQLDSC-TCP'
ServerName = "SQLServer\DSC"
Protocol = 'TCP'
TcpPort = 1777
PsDscRunAsCredential = $SysAdminAccount
}
xSQLServerAlias Remove_SqlAlias_NP
{
Ensure = 'Absent'
Name = 'SQLDSC-NP'
ServerName = "\\sqlnode\PIPE\sql\query"
Protocol = 'NP'
PsDscRunAsCredential = $SysAdminAccount
}
}
}