Windows error 0x80005008, -2147463160

Detailed Error Information

HRESULT analysis[1]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[1][2]
DescriptionThe default facility code.[1][2]
Error Code20488 (0x5008)

Questions

4votes
1answer

Postmortem debugging with WinDBG

I have an WCF-service running on an server, and occasionally(1-2 times every month) it throws an COMException with the informative message ”Unknown error (0x8005008)”. When i googled for this particular error I only got threads about problems when creating virtual directories in IIS. And the source code hasn’t anything with [...] read more
c#
active-directory
windbg
postmortem-debugging
3votes
3answers

Creating Virtual directory in IIS with c#

This one will need a bit of explanation... I want to set up IIS automagically so our Integration tests (using Watin) can run on any environment. To that end I want to create a Setup and Teardown that will create and destroy a virtual directory respectively. The solution I thought [...] read more
c#
iis
msbuild
3votes
2answers

Powershell script returns exception when using ADSI

I get exceptions when executing a Power shell script (v1.0) on Windows Server 2008 (32 bit). It uses ADSI for searching a virtual directory before its deletion. I get the following exception: Exception calling "Find" with "2" argument(s): "Exception from HRESULT: 0x80005008" At line:1 char:29 + $iisMgr.psbase.children.find <<<< ("MyVirtualDir", $iisMgr.psbase.SchemaClassName) [...] read more
exception
powershell
adsi
1vote
1answer

After deploy - Web App looking at development files

After deploying my web app, I am getting an exception error. After looking at the stack trace, I noticed that the web app was looking for files in my development directory, and not the IIS directory. For deployment, I am copying the files from my development directory to the IIS [...] read more
c#
asp.net
iis
0votes
1answer

DirSync Page Size option

In my app i need to do a DirSync with the active directory. However, in my search preferences when i try to give the search preference parameter for page size, it shoots me an error (0x80005008, ADS_BAD_PARAMETER). If i dont give that, it works fine. I am giving the code [...] read more
c
active-directory
adsi
0votes
1answer

Lock AD account c#

i need to lock AD account by c#. here is my function /// <summary> /// This Methoid will Disable the User Account based on the Directory Entry Object /// </summary> /// <param name="oDE">The Directoy Entry Object of the Account to Disable</param> public void LockAccount(DirectoryEntry oDE) { oDE.InvokeSet("IsAccountLocked", true); //oDE.Properties["userAccountControl"][0] = [...] read more
c#
active-directory

Comments

Leave a comment

(plain text only)

Sources

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

User contributions licensed under CC BY-SA 3.0