ServerConnection.ChangePassword Método (String)
Changes the logon password that is used with standard authentication.
Espacio de nombres: Microsoft.SqlServer.Management.Common
Ensamblado: Microsoft.SqlServer.ConnectionInfo (en Microsoft.SqlServer.ConnectionInfo.dll)
Sintaxis
'Declaración
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.
Comentarios
The login property must be set before this method may be called.
Ejemplos
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
Vea también
Referencia
Espacio de nombres Microsoft.SqlServer.Management.Common
Otros recursos
Configuring SQL Server Access for SQL Server Authentication