forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1-AddSQLServerAlias.ps1
47 lines (42 loc) · 1.12 KB
/
1-AddSQLServerAlias.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
42
43
44
45
46
47
<#
.EXAMPLE
This example shows how to ensure that the SQL Alias
SQLDSC* exists with Named Pipes or TCP.
#>
Configuration Example
{
param(
[Parameter(Mandatory = $true)]
[PSCredential]
$SysAdminAccount
)
Import-DscResource -ModuleName xSqlServer
node localhost {
xSQLServerAlias Add_SqlAlias_TCP
{
Ensure = 'Present'
Name = 'SQLDSC-TCP'
ServerName = "SQLServer\DSC"
Protocol = 'TCP'
TcpPort = 1777
PsDscRunAsCredential = $SysAdminAccount
}
xSQLServerAlias Add_SqlAlias_TCPUseDynamicTcpPort
{
Ensure = 'Present'
Name = 'SQLDSC-DYN'
ServerName = "SQLServer\DSC"
Protocol = 'TCP'
UseDynamicTcpPort = $true
PsDscRunAsCredential = $SysAdminAccount
}
xSQLServerAlias Add_SqlAlias_NP
{
Ensure = 'Present'
Name = 'SQLDSC-NP'
ServerName = "\\sqlnode\PIPE\sql\query"
Protocol = 'NP'
PsDscRunAsCredential = $SysAdminAccount
}
}
}