forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
1-SetDatabaseDefaultLocation.ps1
53 lines (48 loc) · 1.89 KB
/
1-SetDatabaseDefaultLocation.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
48
49
50
51
52
53
<#
.EXAMPLE
This example shows how to manage database default locations for Data, Logs, and Backups for SQL Server.
In the event this is applied to a Failover Cluster Instance (FCI), the
ProcessOnlyOnActiveNode property will tell the Test-TargetResource function
to evaluate if any changes are needed if the node is actively hosting the
SQL Server Instance.
#>
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
$SqlAdministratorCredential
)
Import-DscResource -ModuleName SqlServerDsc
node localhost
{
SqlDatabaseDefaultLocation Set_SqlDatabaseDefaultDirectory_Data
{
ServerName = 'sqltest.company.local'
InstanceName = 'DSC'
ProcessOnlyOnActiveNode = $true
Type = 'Data'
Path = 'C:\Program Files\Microsoft SQL Server'
PsDscRunAsCredential = $SqlAdministratorCredential
}
SqlDatabaseDefaultLocation Set_SqlDatabaseDefaultDirectory_Log
{
ServerName = 'sqltest.company.local'
InstanceName = 'DSC'
ProcessOnlyOnActiveNode = $true
Type = 'Log'
Path = 'C:\Program Files\Microsoft SQL Server'
PsDscRunAsCredential = $SqlAdministratorCredential
}
SqlDatabaseDefaultLocation Set_SqlDatabaseDefaultDirectory_Backup
{
ServerName = 'sqltest.company.local'
InstanceName = 'DSC'
ProcessOnlyOnActiveNode = $true
Type = 'Backup'
Path = 'C:\Program Files\Microsoft SQL Server'
PsDscRunAsCredential = $SqlAdministratorCredential
}
}
}