Skip to content

Commit cb70d3d

Browse files
authored
Update INSTRUCTIONS.md
Typo in Hook code for MSSQL instructions.md
1 parent b767bd4 commit cb70d3d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mssql-admin/INSTRUCTIONS.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -684,8 +684,7 @@ Hook operations allow users to execute custom operations at select points during
684684
$Server = New-Object ('Microsoft.SqlServer.Management.Smo.Server') $sqlserver
685685
if (-Not $Server.Logins.Contains($name))
686686
{
687-
$Login = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Login -ArgumentList $Server,
688-
$name
687+
$Login = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Login -ArgumentList $Server, $name
689688
$Login.LoginType = 'SqlLogin'
690689
$Login.Create('delphix')
691690
}

0 commit comments

Comments
 (0)