Windows error 0x80070547, -2147023545

Detailed Error Information

CANT_ACCESS_DOMAIN_INFO[1]

MessageConfiguration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code1351 (0x0547)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x00000547.

Questions

1vote
1answer

LDAP Change password: Exception from HRESULT: 0x80070547

I am trying to run my password change application from a non domain joined machine. The code works fine when run from domain joined machine. So now, I am connecting to the AD with direct LDAP connection via SSL. After changepassword method is invoked, I am getting an error: > [...] read more
c#
asp.net
active-directory
ldap
0votes
2answers

GPO error 0x80070547 with Server 2008 R2 and XP SP3, but not Win7

I have a Windows 2008 R2 server managing XP SP3 and Windows 7 SP1 clients. There are no issues with the Windows 7 clients. However, on the Windows XP clients, I get errors for power options, scheduled tasks, and shortcuts policies in the "Computer configuration" section of group policy. The [...] read more
windows-server-2008
windows-server-2008-r2
windows-xp
group-policy
0votes
3answers

Active Directory LDAP password change via C# ASP.NET: Cannot read configuration

We're attempting to change user passwords in Active Directory (we'll use "Jane" as an example user), via a C# ASP.NET 4.5 app, though we're receiving the error below. Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied. (Exception [...] read more
c#
active-directory
ldap
passwords
0votes
0answers

Change Password to RODC Active Directory

I am creating a webpart in which I am writing a code to change active directory password of the current context user but I am getting this error: > Password couldn't be changed due to restrictions: Configuration information > could not be read from the domain controller, either because the [...] read more
c#
.net
active-directory
0votes
2answers

DirectoryEntry can not ChangePassword due to Domain Controller. Help?

This is suppose to be a basic password change method using DirectoryServices in ASP.NET. The code: String path = ConfigurationManager.AppSettings["LDAPServer"] + myDN; DirectoryEntry de = new DirectoryEntry(path, @"Domain A\" + myUserId, myPassword, AuthenticationTypes.Secure); de.Invoke("ChangePassword", new object[] { myPassword, myNewPassword}); This runs fine if I run locally via virtual IIS (using [...] read more
asp.net
web-services
directoryservices
change-password

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0