Windows error 0x800700EA, -2147024662

Detailed Error Information

MORE_DATA[1]

MessageMore data is available.
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 Code234 (0x00ea)

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

Questions

5votes
2answers

NAudio - MediaFoundationReader: constructor doesn't take a delivered m4a-URL (from a youtube-Link)

I am trying to play an M4A (MP4 Audio) file directly from the internet using a URL. I'm using NAudio with the MediaFoundation to achieve this: using (var reader = new MediaFoundationReader(audioUrl)) //exception using (var wave = new WaveOutEvent()) { wave.Init(reader); wave.Play(); } This works well on two test systems [...] read more
c#
naudio
ms-media-foundation
2votes
2answers

System.DirectoryServices.DirectoryServicesCOMException (0x800700EA): More data is available

For some reason, on monday, code that was working the previous week suddendly started giving me the following error. System.DirectoryServices.DirectoryServicesCOMException (0x800700EA): More data is available. Which happens when I try to do a FindAll against an Ad query I made a small console application and was able to reproduce the [...] read more
c#
active-directory
2votes
0answers

What causes error message 0x800700EA with PowerShell Remoting

The situation: I want to setup PowerShell remoting (it's working on my other 2 machines). I run: winrm quickconfig Result: winrm : WSManFault At line:1 char:1 + winrm quickconfig + ~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (WSManFault:String) [], RemoteException + FullyQualifiedErrorId : NativeCommandError Message ProviderFault WSManFault Message = More data is [...] read more
powershell
powershell-remoting
1vote
3answers

Enable-PSRemoting on Windows Server 2008 R2 error

When giving the command Enable-PSSRemoting with or without the -Force parameter this error occurs Set-WSManQuickConfig : More data is available. At line:50 char:33 + Set-WSManQuickConfig <<<< -force + CategoryInfo : InvalidOperation: (:) [Set-WSManQuickConfig], InvalidOperationException + FullyQualifiedErrorId : WsManError,Microsoft.WSMan.Management.SetWSManQuickConfigCommand I've looked at this resource for help in solving this problem http://www.howtogeek.com/117192/how-to-run-powershell-commands-on-remote-computers/ [...] read more
windows-server-2008-r2
powershell
workgroup
0votes
0answers

unable to execute winrm quickconfig

I am unable to get around the following Powershell remoting error in my Windows 10 Machine. Firstly I am attempting to execute the following. PS: >Start-DscConfiguration -Wait -Verbose -Force -Path $outPath VERBOSE: Perform operation 'Invoke CimMethod' with following parameters, ''methodName' = SendConfigurationApply,'className' = MSFT_DSCLocalConf igurationManager,'namespaceName' = root/Microsoft/Windows/DesiredStateConfiguration'. The client cannot [...] read more
powershell
powershell-remoting
dsc

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