Forest.UpdateLocalSideOfTrustRelationship Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Updates the password for the local side of a trust relationship.
Overloads
UpdateLocalSideOfTrustRelationship(String, String) |
Updates the password for the local side of a trust relationship. |
UpdateLocalSideOfTrustRelationship(String, TrustDirection, String) |
Updates the password and trust direction for the local side of a trust relationship. |
UpdateLocalSideOfTrustRelationship(String, String)
- Source:
- Forest.cs
- Source:
- Forest.cs
- Source:
- Forest.cs
- Source:
- Forest.cs
Updates the password for the local side of a trust relationship.
public:
void UpdateLocalSideOfTrustRelationship(System::String ^ targetForestName, System::String ^ newTrustPassword);
public void UpdateLocalSideOfTrustRelationship (string targetForestName, string newTrustPassword);
member this.UpdateLocalSideOfTrustRelationship : string * string -> unit
Public Sub UpdateLocalSideOfTrustRelationship (targetForestName As String, newTrustPassword As String)
Parameters
- targetForestName
- String
The name of the Forest object for which the local trust password is to be changed.
- newTrustPassword
- String
The new password for the trust relationship.
Exceptions
There is no trust relationship with the forest that is specified by targetForestName
.
A call to the underlying directory service resulted in an error.
The target server is either busy or unavailable.
targetForestName
or newTrustPassword
is an empty string.
targetForestName
or newTrustPassword
is null
.
The object has been disposed.
The specified account does not have permission to perform this operation.
See also
Applies to
UpdateLocalSideOfTrustRelationship(String, TrustDirection, String)
- Source:
- Forest.cs
- Source:
- Forest.cs
- Source:
- Forest.cs
- Source:
- Forest.cs
Updates the password and trust direction for the local side of a trust relationship.
public:
void UpdateLocalSideOfTrustRelationship(System::String ^ targetForestName, System::DirectoryServices::ActiveDirectory::TrustDirection newTrustDirection, System::String ^ newTrustPassword);
public void UpdateLocalSideOfTrustRelationship (string targetForestName, System.DirectoryServices.ActiveDirectory.TrustDirection newTrustDirection, string newTrustPassword);
member this.UpdateLocalSideOfTrustRelationship : string * System.DirectoryServices.ActiveDirectory.TrustDirection * string -> unit
Public Sub UpdateLocalSideOfTrustRelationship (targetForestName As String, newTrustDirection As TrustDirection, newTrustPassword As String)
Parameters
- targetForestName
- String
The name of the Forest object for which the local trust direction and password must be changed.
- newTrustDirection
- TrustDirection
A TrustDirection value for the new trust direction for the trust relationship.
- newTrustPassword
- String
The new password for the trust relationship.
Exceptions
There is no trust relationship with the Forest object that is specified by targetForestName
.
A call to the underlying directory service resulted in an error.
The target server is either busy or unavailable.
targetForestName
or newTrustPassword
is an empty string.
targetForestName
or newTrustPassword
is null
.
The newTrustDirection
parameter is not a valid TrustDirection value.
The object has been disposed.
The specified account does not have permission to perform this operation.