forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2-RunScriptUsingWindowsAuthentication.ps1
62 lines (52 loc) · 1.94 KB
/
2-RunScriptUsingWindowsAuthentication.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
54
55
56
57
58
59
60
61
62
<#
.DESCRIPTION
These two example shows how to run SQL script using Windows Authentication.
First example shows how the resource is run as account SYSTEM. And the second
example shows how the resource is run with a user account.
#>
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
$WindowsCredential
)
Import-DscResource -ModuleName 'SqlServerDsc'
Node localhost
{
SqlScriptQuery 'RunAsSYSTEM'
{
Id = 'RunAsSYSTEM'
ServerName = 'localhost'
InstanceName = 'SQL2016'
SetQuery = 'Set Query as System'
TestQuery = 'Test query as System'
GetQuery = 'Get query as System'
Variable = @('FilePath=C:\temp\log\AuditFiles')
}
SqlScriptQuery 'RunAsUser'
{
Id = 'RunAsUser'
ServerName = 'localhost'
InstanceName = 'SQL2016'
SetQuery = 'Set query as User'
TestQuery = 'Test query as User'
GetQuery = 'Get query as User'
Variable = @('FilePath=C:\temp\log\AuditFiles')
PsDscRunAsCredential = $WindowsCredential
}
SqlScriptQuery 'RunAsUser-With30SecondTimeout'
{
Id = 'RunAsUser-With30SecondTimeout'
ServerName = 'localhost'
InstanceName = 'SQL2016'
SetQuery = 'Set query with query timeout'
TestQuery = 'Test query with query timeout'
GetQuery = 'Get query with query timeout'
QueryTimeout = 30
Variable = @('FilePath=C:\temp\log\AuditFiles')
PsDscRunAsCredential = $WindowsCredential
}
}
}