Windows error 0x0000010B, 267

Detailed Error Information

DIRECTORY[1]

MessageThe directory name is invalid.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x8007010B.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

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

Questions

3votes
1answer

Consume Windows Runtime APIs from pure C

As far as I understand, Windows Runtime is the new infrastructure through which Windows exposes its APIs. My question is simple: how can I use that from pure C code? I don't mind writing more code, I just want to understand how things link together. Let's take for example the [...] read more
c++
c
windows
uwp
c++-winrt
2votes
1answer

RoboCopy Source

I am writing a powershell script with robocopy to copy "full" unc/file name paths from a list. The issue I am experiencing is that robocopy appears to be adding a \ to the end of my source paths. I have a C:\temp\list.txt that lists the UNC paths with file names [...] read more
powershell
robocopy
2votes
0answers

Explain if any memory leak associated with oleaut32!APP_DATA::AllocCachedMem and ntdll!RtlAllocateHeap in windbg stack trace which appears repeatedly

I am trying to identify memory leak in a process(C++ Application) I am using Windbg tool to identify the memory leak. 0:000> !heap -stat -h 02e10000 heap @ 02e10000 group-by: TOTSIZE max-display: 20 size #blocks total ( %) (percent of total busy bytes) 40 95857 - 25615c0 (60.70) 953130 1 [...] read more
c++
memory-leaks
1vote
1answer

AddressOfEntryPoint is beyond the end of the file

I'm trying to understand what the AddressOfEntryPoint in the COFF header. I have a "nothing" .NET exe: class Program { public static void Main() { } } (I've compiled it as an x86 application) The values I get for the standard fields in the COFF header are: COFF - Optional [...] read more
.net
windows
executable
portable-executable
coff
0votes
1answer

Copying a File From Share Drive To Remote Desktop Using PowerShell

Im currently running the task of putting a start up script that i have on every computer on the network using powershell and this is what i have so far robocopy "S:\03 - Section Folders\04 - SCM\scripts\startupscript.vbs" "$cheese\c$\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup" /r:1 /w:0 so far when i run it i get an [...] read more
powershell
remote-access
filepath
network-drive

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