Méthode ServerConnection.ChangePassword (SecureString)
Changes the login password that is used with standard authentication.
Espace de noms : Microsoft.SqlServer.Management.Common
Assembly : Microsoft.SqlServer.ConnectionInfo (en Microsoft.SqlServer.ConnectionInfo.dll)
Syntaxe
'Déclaration
Public Sub ChangePassword ( _
newPassword As SecureString _
)
'Utilisation
Dim instance As ServerConnection
Dim newPassword As SecureString
instance.ChangePassword(newPassword)
public void ChangePassword(
SecureString newPassword
)
public:
void ChangePassword(
SecureString^ newPassword
)
member ChangePassword :
newPassword:SecureString -> unit
public function ChangePassword(
newPassword : SecureString
)
Paramètres
- newPassword
Type : System.Security.SecureString
A SecureString value that specifies the new password.
Exemples
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
Voir aussi
Référence
Espace de noms Microsoft.SqlServer.Management.Common
Autres ressources
Configuring SQL Server Access for SQL Server Authentication