-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathResetSqlSaPassword.psm1
338 lines (284 loc) · 14.3 KB
/
ResetSqlSaPassword.psm1
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
#Requires -Version 2
Function Reset-SqlSaPassword {
<#
.SYNOPSIS
This function will allow administrators to regain access to SQL Servers in the event that passwords or access was lost.
Supports SQL Server 2005 and above. Windows Server administrator access is required.
.DESCRIPTION
This function allows administrators to regain access to local or remote SQL Servers by either resetting the sa password, adding sysadmin role to existing login,
or adding a new login (SQL or Windows) and granting it sysadmin privileges.
This is accomplished by stopping the SQL services or SQL Clustered Resource Group, then restarting SQL via the command-line
using the /mReset-SqlSaPassword paramter which starts the server in Single-User mode, and only allows this script to connect.
Once the service is restarted, the following tasks are performed:
- Login is added if it doesn't exist
- If login is a Windows User, an attempt is made to ensure it exists
- If login is a SQL Login, password policy will be set to OFF when creating the login, and SQL Server authentication will be set to Mixed Mode.
- Login will be enabled and unlocked
- Login will be added to sysadmin role
If failures occur at any point, a best attempt is made to restart the SQL Server.
In order to make this script as portable as possible, System.Data.SqlClient and Get-WmiObject are used (as opposed to requiring the Failover Cluster Admin tools or SMO).
If using this function against a remote SQL Server, ensure WinRM is configured and accessible. If this is not possible, run the script locally.
Tested on Windows XP, 7, 8.1, Server 2012 and Windows Server Technical Preview 2.
Tested on SQL Server 2005 SP4 through 2016 CTP2.
THIS CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
.PARAMETER SqlServer
The SQL Server instance. SQL Server must be 2005 and above, and can be a clustered or stand-alone instance.
.PARAMETER Login
By default, the Login parameter is "sa" but any other SQL or Windows account can be specified. If a login does not
currently exist, it will be added.
When adding a Windows login to remote servers, ensure the SQL Server can add the login (ie, don't add WORKSTATION\Admin to remoteserver\instance. Domain users and
Groups are valid input.
.NOTES
Author: Chrissy LeMaire
Requires: Admin access to server (not SQL Services),
Remoting must be enabled and accessible if $sqlserver is not local
DateUpdated: 2015-June-06
Version: 0.8
.LINK
https://gallery.technet.microsoft.com/scriptcenter/Reset-SQL-SA-Password-15fb488d
.EXAMPLE
Reset-SqlSaPassword -SqlServer sqlcluster
Prompts for password, then resets the "sa" account password on sqlcluster.
.EXAMPLE
Reset-SqlSaPassword -SqlServer sqlserver\sqlexpress -Login ad\administrator
Adds the domain account "ad\administrator" as a sysadmin to the SQL instance.
If the account already exists, it will be added to the sysadmin role.
.EXAMPLE
Reset-SqlSaPassword -SqlServer sqlserver\sqlexpress -Login sqladmin
Prompts for passsword, then adds a SQL Login "sqladmin" with sysadmin privleges.
If the account already exists, it will be added to the sysadmin role and the password will be reset.
#>
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
[string]$SqlServer,
[string]$Login = "sa"
)
BEGIN {
Function ConvertTo-PlainText {
<#
.SYNOPSIS
Converts a SecureString to plain text
.EXAMPLE
ConvertTo-PlainText $password
.OUTPUT
String
#>
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
[Security.SecureString]$Password
)
$marshal = [Runtime.InteropServices.Marshal]
$plaintext = $marshal::PtrToStringAuto( $marshal::SecureStringToBSTR($Password) )
return $plaintext
}
Function Invoke-ResetSqlCmd {
<#
.SYNOPSIS
Executes a SQL statement against specified computer, and uses "Reset-SqlSaPassword" as the
Application Name.
.EXAMPLE
Invoke-ResetSqlCmd -sqlserver $sqlserver -sql $sql
.OUTPUT
$true or $false
#>
[CmdletBinding()]
param(
[Parameter(Mandatory = $true)]
[string]$sqlserver,
[string]$sql
)
try {
$connstring = "Data Source=$sqlserver;Integrated Security=True;Connect Timeout=2;Application Name=Reset-SqlSaPassword"
$conn = New-Object System.Data.SqlClient.SqlConnection $connstring
$conn.Open()
$cmd = New-Object system.data.sqlclient.sqlcommand($null, $conn)
$cmd.CommandText = $sql
$cmd.ExecuteNonQuery() | Out-Null
$cmd.Dispose()
$conn.Close()
$conn.Dispose()
return $true
} catch { return $false }
}
}
PROCESS {
# Get hostname
$baseaddress = $sqlserver.Split("\")[0]
if ($baseaddress -eq "." -or $baseaddress -eq $env:COMPUTERNAME) {
$ipaddr = "."
$hostname = $env:COMPUTERNAME
$baseaddress = $env:COMPUTERNAME
}
# If server is not local, get IP address and NetBios name in case CNAME records were referenced in the SQL hostname
if ($baseaddress -ne $env:COMPUTERNAME) {
# Test Connection first using Test-Connection which requires ICMP access then failback to tcp if pings are blocked
Write-Output "Testing connection to $baseaddress"
$testconnect = Test-Connection -ComputerName $baseaddress -Count 1 -Quiet
if ($testconnect -eq $false) {
Write-Output "First attempt using ICMP failed. Trying to connect using sockets. This may take up to 20 seconds."
$tcp = New-Object System.Net.Sockets.TcpClient
try {
$tcp.Connect($hostname, 135)
$tcp.Close()
$tcp.Dispose()
} catch { throw "Can't connect to $baseaddress either via ping or tcp (WMI port 135)" }
}
Write-Output "Resolving IP address"
try{
$hostentry = [System.Net.Dns]::GetHostEntry($baseaddress)
$ipaddr = ($hostentry.AddressList | Where-Object { $_ -notlike '169.*' } | Select -First 1).IPAddressToString
} catch { throw "Could not resolve SqlServer IP or NetBIOS name" }
Write-Output "Resolving NetBIOS name"
try {
$hostname = (Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter IPEnabled=TRUE -ComputerName $ipaddr).PSComputerName
if ($hostname -eq $null) { $hostname = (nbtstat -A $ipaddr | Where-Object {$_ -match '\<00\> UNIQUE'} | ForEach-Object {$_.SubString(4,14)}).Trim() }
}
catch { throw "Could not access remote WMI object. Check permissions and firewall." }
}
# Setup remote session if server is not local
if ($hostname -ne $env:COMPUTERNAME) {
try { $session = New-PSSession -ComputerName $hostname }
catch {
throw "Can't access $hostname using PSSession. Check your firewall settings and ensure Remoting is enabled or run the script locally."
}
}
Write-Output "Detecting login type"
# Is login a Windows login? If so, does it exist?
if ($login -match "\\") {
Write-Output "Windows login detected. Checking to ensure account is valid."
$windowslogin = $true
try {
if ($hostname -eq $env:COMPUTERNAME) {
$account = New-Object System.Security.Principal.NTAccount($args)
$sid = $account.Translate([System.Security.Principal.SecurityIdentifier])
} else {
Invoke-Command -ErrorAction Stop -Session $session -Args $login -ScriptBlock {
$account = New-Object System.Security.Principal.NTAccount($args)
$sid = $account.Translate([System.Security.Principal.SecurityIdentifier])
}
}
} catch { throw "SQL Server cannot resolve Windows User or Group $login." }
}
# If it's not a Windows login, it's a SQL login, so it needs a password.
if ($windowslogin -ne $true) {
Write-Output "SQL login detected"
do {$Password = Read-Host -AsSecureString "Please enter a new password for $login" } while ( $Password.Length -eq 0 )
}
# Get instance and service display name, then get services
$instance = ($sqlserver.split("\"))[1]
if ($instance -eq $null) { $instance = "MSSQLSERVER" }
$displayName = "SQL Server ($instance)"
try {
$instanceservices = Get-Service -ComputerName $ipaddr | Where-Object { $_.DisplayName -like "*($instance)*" -and $_.Status -eq "Running" }
$sqlservice = Get-Service -ComputerName $ipaddr | Where-Object { $_.DisplayName -eq "SQL Server ($instance)" }
} catch { throw "Cannot connect to WMI on $hostname or SQL Service does not exist. Check permissions, firewall and SQL Server running status." }
if ($instanceservices -eq $null) { throw "Couldn't find SQL Server instance. Check the spelling, ensure the service is running and try again." }
Write-Output "Attempting to stop SQL Services"
# Check to see if service is clustered. Clusters don't support -m (since the cluster service
# itself connects immediately) or -f, so they are handled differently.
try { $checkcluster = Get-Service -ComputerName $ipaddr | Where-Object { $_.Name -eq "ClusSvc" -and $_.Status -eq "Running" } }
catch { throw "Can't check services. Check permissions and firewall." }
if ($checkcluster -ne $null) {
$clusterResource = Get-WmiObject -Authentication PacketPrivacy -Impersonation Impersonate -class "MSCluster_Resource" -namespace "root\mscluster" -computername $hostname |
Where-Object { $_.Name.StartsWith("SQL Server") -and $_.OwnerGroup -eq "SQL Server ($instance)" }
}
# Take SQL Server offline so that it can be started in single-user mode
if ($clusterResource.count -gt 0) {
$isclustered = $true
try { $clusterResource | Where-Object { $_.Name -eq "SQL Server" } | ForEach-Object { $_.TakeOffline(60) } }
catch {
$clusterResource | Where-Object { $_.Name -eq "SQL Server" } | ForEach-Object { $_.BringOnline(60) }
$clusterResource | Where-Object { $_.Name -ne "SQL Server" } | ForEach-Object { $_.BringOnline(60) }
throw "Could not stop the SQL Service. Restarted SQL Service and quit."
}
} else {
try {
Stop-Service -InputObject $sqlservice -Force
Write-Output "Successfully stopped SQL service"
} catch {
Start-Service -InputObject $instanceservices
throw "Could not stop the SQL Service. Restarted SQL service and quit."
}
}
# /mReset-SqlSaPassword Starts an instance of SQL Server in single-user mode and only allows this script to connect.
Write-Output "Starting SQL Service from command line"
try {
if ($hostname -eq $env:COMPUTERNAME) {
$netstart = net start ""$displayname"" /mReset-SqlSaPassword 2>&1
if ("$netstart" -notmatch "success") { throw }
}
else {
$netstart = Invoke-Command -ErrorAction Stop -Session $session -Args $displayname -ScriptBlock { net start ""$args"" /mReset-SqlSaPassword } 2>&1
foreach ($line in $netstart) {
if ($line.length -gt 0) { Write-Output $line }
}
}
} catch {
Stop-Service -InputObject $sqlservice -Force -ErrorAction SilentlyContinue
if ($isclustered) {
$clusterResource | Where-Object Name -eq "SQL Server" | ForEach-Object { $_.BringOnline(60) }
$clusterResource | Where-Object Name -ne "SQL Server" | ForEach-Object { $_.BringOnline(60) }
} else {
Start-Service -InputObject $instanceservices -ErrorAction SilentlyContinue
}
throw "Couldn't execute net start command. Restarted services and quit."
}
Write-Output "Reconnecting to SQL instance"
try { Invoke-ResetSqlCmd -SqlServer $sqlserver -Sql "SELECT 1" | Out-Null }
catch {
try {
Start-Sleep 3
Invoke-ResetSqlCmd -SqlServer $sqlserver -Sql "SELECT 1" | Out-Null
} catch {
Stop-Service Input-Object $sqlservice -Force -ErrorAction SilentlyContinue
if ($isclustered) {
$clusterResource | Where-Object { $_.Name -eq "SQL Server" } | ForEach-Object { $_.BringOnline(60) }
$clusterResource | Where-Object { $_.Name -ne "SQL Server" } | ForEach-Object { $_.BringOnline(60) }
} else { Start-Service -InputObject $instanceservices -ErrorAction SilentlyContinue }
throw "Could not stop the SQL Service. Restarted SQL Service and quit."
}
}
# Get login. If it doesn't exist, create it.
Write-Output "Adding login $login if it doesn't exist"
if ($windowslogin -eq $true) {
$sql = "IF NOT EXISTS (SELECT name FROM master.sys.server_principals WHERE name = '$login')
BEGIN CREATE LOGIN [$login] FROM WINDOWS END"
if ($(Invoke-ResetSqlCmd -SqlServer $sqlserver -Sql $sql) -eq $false) { Write-Warning "Couldn't create login." }
} elseif ($login -ne "sa") {
# Create new sql user
$sql = "IF NOT EXISTS (SELECT name FROM master.sys.server_principals WHERE name = '$login')
BEGIN CREATE LOGIN [$login] WITH PASSWORD = '$(ConvertTo-PlainText $Password)', CHECK_POLICY = OFF, CHECK_EXPIRATION = OFF END"
if ($(Invoke-ResetSqlCmd -SqlServer $sqlserver -Sql $sql) -eq $false) { Write-Warning "Couldn't create login." }
}
# If $login is a SQL Login, Mixed mode authentication is required.
if ($windowslogin -ne $true) {
Write-Output "Enabling mixed mode authentication"
Write-Output "Ensuring account is unlocked"
$sql = "EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer', N'LoginMode', REG_DWORD, 2"
if ($(Invoke-ResetSqlCmd -SqlServer $sqlserver -Sql $sql) -eq $false) { Write-Warning "Couldn't set to Mixed Mode." }
$sql = "ALTER LOGIN [$login] WITH CHECK_POLICY = OFF
ALTER LOGIN [$login] WITH PASSWORD = '$(ConvertTo-PlainText $Password)' UNLOCK"
if ($(Invoke-ResetSqlCmd -SqlServer $sqlserver -Sql $sql) -eq $false) { Write-Warning "Couldn't unlock account." }
}
Write-Output "Ensuring login is enabled"
$sql = "ALTER LOGIN [$login] ENABLE"
if ($(Invoke-ResetSqlCmd -SqlServer $sqlserver -Sql $sql) -eq $false) { Write-Warning "Couldn't enable login." }
if ($login -ne "sa") {
Write-Output "Ensuring login exists within sysadmin role"
$sql = "EXEC sp_addsrvrolemember '$login', 'sysadmin'"
if ($(Invoke-ResetSqlCmd -SqlServer $sqlserver -Sql $sql) -eq $false) { Write-Warning "Couldn't add to syadmin role." }
}
Write-Output "Finished with login tasks"
Write-Output "Restarting SQL Server"
Stop-Service -InputObject $sqlservice -Force -ErrorAction SilentlyContinue
if ($isclustered -eq $true) {
$clusterResource | Where-Object { $_.Name -eq "SQL Server" } | ForEach-Object { $_.BringOnline(60) }
$clusterResource | Where-Object { $_.Name -ne "SQL Server" } | ForEach-Object { $_.BringOnline(60) }
} else { Start-Service -InputObject $instanceservices -ErrorAction SilentlyContinue }
}
END {
Write-Output "Script complete!"
}
}