Server.Alter Method ()
Updates any Server object property changes on the instance of SQL Server.
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
PowerShell
$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)") Write-Host "OS Version =" $srv.Information.OSVersion Write-Host "State =" $srv.Settings.State.ToString() Write-Host "Quoted Identifier support =" $srv.UserOptions.QuotedIdentifier $srv.Settings.LoginMode = [Microsoft.SqlServer.Management.Smo.ServerLoginMode]::Integrated $srv.UserOptions.AbortOnArithmeticErrors = $TRUE $srv.Alter()
Show: