Método ServerConnection.ChangePassword (String)
Changes the logon password that is used with standard authentication.
Namespace: Microsoft.SqlServer.Management.Common
Assembly: Microsoft.SqlServer.ConnectionInfo (em Microsoft.SqlServer.ConnectionInfo.dll)
Sintaxe
'Declaração
Public Sub ChangePassword ( _
newPassword As String _
)
'Uso
Dim instance As ServerConnection
Dim newPassword As String
instance.ChangePassword(newPassword)
public void ChangePassword(
string newPassword
)
public:
void ChangePassword(
String^ newPassword
)
member ChangePassword :
newPassword:string -> unit
public function ChangePassword(
newPassword : String
)
Parâmetros
- newPassword
Tipo: System.String
A String value that specifies the new password.
Comentários
The login property must be set before this method may be called.
Exemplos
C#
ServerConnection conn = new ServerConnection();
conn.LoginSecure = false;
conn.Login = vlogin;
conn.password = vpassword;
conn.ChangePassword(newpassword);
PowerShell
$conn = new-object Microsoft.SqlServer.Management.Common.ServerConnection
$conn.LoginSecure = $FALSE
$conn.Login = vlogin
$conn.Password = vpassword
$conn.ChangePassword newpassword
Consulte também
Referência
Namespace Microsoft.SqlServer.Management.Common
Outros recursos
Configuring SQL Server Access for SQL Server Authentication