-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path01_Server_Settings.ps1
More file actions
280 lines (225 loc) · 7.65 KB
/
01_Server_Settings.ps1
File metadata and controls
280 lines (225 loc) · 7.65 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<#
.SYNOPSIS
Gets the SQL Server Configuration Settings on the target server
.DESCRIPTION
Writes the SQL Server Configuration Settings out to the "01 - Server Settings" folder
One file for all settings
Contains MinMax Memory, MAX DOP, Affinity, Cost Threshold, Network Packet size and other instance-level engine settings
Helps to document a server that had non-default settings
.EXAMPLE
01_Server_Settings.ps1 localhost
.EXAMPLE
01_Server_Settings.ps1 server01 sa password
.Inputs
ServerName, [SQLUser], [SQLPassword]
.Outputs
HTML Files
.NOTES
.LINK
#>
Param(
[string]$SQLInstance='localhost',
[string]$myuser,
[string]$mypass
)
Set-StrictMode -Version latest;
[string]$BaseFolder = (Get-Item -Path ".\" -Verbose).FullName
# Script Name
Write-Host -f Yellow -b Black "01 - Server Settings"
# Load SMO Assemblies
Import-Module ".\LoadSQLSmo.psm1"
LoadSQLSMO
# Usage Check
if ($SQLInstance.Length -eq 0)
{
Write-host -f yellow "Usage: ./01_Server_Settings.ps1 `"SQLServerName`" ([`"Username`"] [`"Password`"] if DMZ machine)"
Set-Location $BaseFolder
exit
}
# Working
Write-Output "Server $SQLInstance"
# Server connection check
try
{
$old_ErrorActionPreference = $ErrorActionPreference
$ErrorActionPreference = 'SilentlyContinue'
if ($mypass.Length -ge 1 -and $myuser.Length -ge 1)
{
Write-Output "Testing SQL Auth"
# .NET Method
# Open connection and Execute sql against server
$DataSet = New-Object System.Data.DataSet
$SQLConnectionString = "Data Source=$SQLInstance;User ID=$myuser;Password=$mypass;"
$Connection = New-Object System.Data.SqlClient.SqlConnection
$Connection.ConnectionString = $SQLConnectionString
$SqlCmd = New-Object System.Data.SqlClient.SqlCommand
$SqlCmd.CommandText = "select serverproperty('productversion')"
$SqlCmd.Connection = $Connection
$SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter
$SqlAdapter.SelectCommand = $SqlCmd
# Insert results into Dataset table
$SqlAdapter.Fill($DataSet) | out-null
# Close connection to sql server
$Connection.Close()
$results = $DataSet.Tables[0].Rows[0]
# SQLCMD.EXE Method
#$results = Invoke-SqlCmd -ServerInstance $SQLInstance -Query "select serverproperty('productversion')" -Username $myuser -Password $mypass -QueryTimeout 10 -erroraction SilentlyContinue
$serverauth="sql"
}
else
{
Write-Output "Testing Windows Auth"
# .NET Method
# Open connection and Execute sql against server using Windows Auth
$DataSet = New-Object System.Data.DataSet
$SQLConnectionString = "Data Source=$SQLInstance;Integrated Security=SSPI;"
$Connection = New-Object System.Data.SqlClient.SqlConnection
$Connection.ConnectionString = $SQLConnectionString
$SqlCmd = New-Object System.Data.SqlClient.SqlCommand
$SqlCmd.CommandText = "select serverproperty('productversion')"
$SqlCmd.Connection = $Connection
$SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter
$SqlAdapter.SelectCommand = $SqlCmd
# Insert results into Dataset table
$SqlAdapter.Fill($DataSet) | out-null
# Close connection to sql server
$Connection.Close()
$results = $DataSet.Tables[0].Rows[0]
# SQLCMD.EXE Method
#$results = Invoke-SqlCmd -ServerInstance $SQLInstance -Query "select serverproperty('productversion')" -QueryTimeout 10 -erroraction SilentlyContinue
$serverauth = "win"
}
if($results -ne $null)
{
Write-Output ("SQL Version: {0}" -f $results.Column1)
}
# Reset default PS error handler
$ErrorActionPreference = $old_ErrorActionPreference
}
catch
{
Write-Host -f red "$SQLInstance appears offline - Try Windows Authorization."
Set-Location $BaseFolder
exit
}
# Set Local Vars
$server = $SQLInstance
if ($serverauth -eq "win")
{
$srv = New-Object "Microsoft.SqlServer.Management.SMO.Server" $server
}
else
{
$srv = New-Object "Microsoft.SqlServer.Management.SMO.Server" $server
$srv.ConnectionContext.LoginSecure=$false
$srv.ConnectionContext.set_Login($myuser)
$srv.ConnectionContext.set_Password($mypass)
}
# Create output folder
set-location $BaseFolder
$output_path = "$BaseFolder\$SQLInstance\01 - Server Settings\"
if(!(test-path -path $output_path))
{
mkdir $output_path | Out-Null
}
# Create some CSS for help in column formatting
$myCSS =
"
table
{
Margin: 0px 0px 0px 4px;
Border: 1px solid rgb(190, 190, 190);
Font-Family: Tahoma;
Font-Size: 9pt;
Background-Color: rgb(252, 252, 252);
}
tr:hover td
{
Background-Color: rgb(150, 150, 220);
Color: rgb(255, 255, 255);
}
tr:nth-child(even)
{
Background-Color: rgb(242, 242, 242);
}
th
{
Text-Align: Left;
Color: rgb(150, 150, 220);
Padding: 1px 4px 1px 4px;
}
td
{
Vertical-Align: Top;
Padding: 1px 4px 1px 4px;
}
"
$myCSS | out-file "$output_path\HTMLReport.css" -Encoding ascii
# Export it
$RunTime = Get-date
$mySettings = $srv.Configuration.Properties
$mySettings | sort-object DisplayName | select Displayname, ConfigValue, runValue | ConvertTo-Html -PostContent "<h3>Ran on : $RunTime</h3>" -PreContent "<h1>$SqlInstance</H1><H2>Server Settings</h2>" -CSSUri "HtmlReport.css"| Set-Content "$output_path\HtmlReport.html"
# ----------------------------
# Get Buffer Pool Extensions
# ----------------------------
$mySQLquery = "
USE Master; select State, path, current_size_in_kb as sizeKB from sys.dm_os_buffer_pool_extension_configuration
"
# connect correctly
if ($serverauth -eq "win")
{
# .NET Method
# Open connection and Execute sql against server using Windows Auth
$DataSet = New-Object System.Data.DataSet
$SQLConnectionString = "Data Source=$SQLInstance;Integrated Security=SSPI;"
$Connection = New-Object System.Data.SqlClient.SqlConnection
$Connection.ConnectionString = $SQLConnectionString
$SqlCmd = New-Object System.Data.SqlClient.SqlCommand
$SqlCmd.CommandText = $mySQLquery
$SqlCmd.Connection = $Connection
$SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter
$SqlAdapter.SelectCommand = $SqlCmd
# Insert results into Dataset table
$SqlAdapter.Fill($DataSet) | out-null
# Close connection to sql server
$Connection.Close()
$sqlresults = $DataSet.Tables[0].Rows
#$sqlresults = Invoke-SqlCmd -ServerInstance $SQLInstance -Query $mySQLquery -QueryTimeout 10 -erroraction SilentlyContinue
}
else
{
# .NET Method
# Open connection and Execute sql against server
$DataSet = New-Object System.Data.DataSet
$SQLConnectionString = "Data Source=$SQLInstance;User ID=$myuser;Password=$mypass;"
$Connection = New-Object System.Data.SqlClient.SqlConnection
$Connection.ConnectionString = $SQLConnectionString
$SqlCmd = New-Object System.Data.SqlClient.SqlCommand
$SqlCmd.CommandText = $mySQLquery
$SqlCmd.Connection = $Connection
$SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter
$SqlAdapter.SelectCommand = $SqlCmd
# Insert results into Dataset table
$SqlAdapter.Fill($DataSet) | out-null
# Close connection to sql server
$Connection.Close()
$sqlresults = $DataSet.Tables[0].Rows
#$sqlresults = Invoke-SqlCmd -ServerInstance $SQLInstance -Query $mySQLquery -Username $myuser -Password $mypass -QueryTimeout 10 -erroraction SilentlyContinue
}
# Export BPE
if ($?)
{
if ($sqlresults.state -eq 5)
{
Write-Output "Buffer-Pool Extensions:"
$strExport = "
ALTER SERVER CONFIGURATION SET BUFFER POOL EXTENSION
ON
(
FILENAME = N'" + $sqlresults.path + "'," +
" SIZE = " + $sqlresults.sizeKB +"KB"+"`r`n"+
" );"
$strExport | out-file "$output_path\Buffer_Pool_Extension.sql" -Encoding ascii
}
}
set-location $BaseFolder