Windows error 0x000000A1, 161

Detailed Error Information

BAD_PATHNAME[1]

MessageThe specified path is invalid.
Declared inwinerror.h

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

PCI_BUS_DRIVER_INTERNAL[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0xA1: PCI_BUS_DRIVER_INTERNAL.

HRESULT analysis[3]

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[3][1]
DescriptionThe default facility code.[3][1]
Error Code161 (0x00a1)

Questions

3votes
1answer

C# Find a variable by value

I am making an "error code to String" converter that would display the name of an error code from its value, for example 0x000000c3 would give "Class not found", but using MY OWN error codes! Here's how it actually looks like: #region errcodes public int NORMAL_STOP = 0x00000000; public int [...] read more
c#
2votes
0answers

Windows 10 Update to 2004 failure - Error: 0x80004005 - 0x60016

I've been trying for the last week or so to get Windows 10 to update to 2004. I've tried all of the common solutions (sfc /scannow, DISM restore, media creation tool etc). After looking at the log files I think I've narrowed the issue to a BCD/MBR issue (see full [...] read more
windows-10
bootloader
mbr
bcd
0votes
0answers

App Verifier Stop 00000900 using File Open Dialog

My C++/MFC program uses the CFileDialog class to retrieve a filename to open. If I comment out the DoModal() call, no Verifier Stops occur. If the dialog is opened (even if it is then simply Canceled), the stops are generated -- three in a row. So I tried the Common [...] read more
c++
memory-leaks
heap-memory
application-verifier
0votes
0answers

ET035009DH6 lcd display config

The display (ET035009DH6) stays dark with the following configuration. The backlight is on. Touch is working. ETM035009EDH6 Spec * Toradex Colibri iMX6ULL 512MB V1.1A * Toradex Colibri Evaluation Board Rev. 3.2 * ET035009DH6 * angstrom-lxde-image Device Tree lcdif@021c8000 { compatible = "fsl,imx6ul-lcdif", "fsl,imx28-lcdif"; reg = <0x021c8000 0x00004000>; interrupts = <0x00000000 [...] read more
embedded-linux
yocto
u-boot
lcd
imx6
0votes
0answers

How to re-compile an ACPI table on Linux?

Simple question, I found the following ACPI table online: /* * Intel ACPI Component Architecture * AML/ASL+ Disassembler version 20190509 (64-bit version) * Copyright (c) 2000 - 2019 Intel Corporation * * Disassembling to symbolic ASL+ operators * * Disassembly of application.bin, Mon Dec 16 18:14:02 2019 * * Original [...] read more
linux
gnu
acpi
0votes
1answer

Robocopy cannot use a PS-Drive name longer than one character

I have a UNC path mapped to a PSDrive. PS Plong:\home\Personal\lit> Get-PSDrive Name Used (GB) Free (GB) Provider Root ---- --------- --------- -------- ---- ... HKLM Registry HKEY_LOCAL_MACHINE P 384.97 546.54 FileSystem \\RT-AC66U\files Plong FileSystem \\RT-AC66U\files Variable Variable ... robocopy does not appear to understand a drive name longer than [...] read more
powershell
robocopy
0votes
0answers

Specified path is invalid - Robocopy

I'm trying to copy a file from one directory to another using robocopy . This is the command from C#. /C is added since process is invoked from code. /C ROBOCOPY \\\\35.8.1.147\\e$\\DATA\\Logs C:\\Copy /A-:SH Log1.log Did not add quotes since file name does not have any spaces. But it fails [...] read more
c#
.net
cmd
robocopy
-1votes
2answers

Overwrite value in memory by taking in user input

This is related to a stack smash attack. Basically, I am trying to smash the stack by giving a program a particular input. The program takes in a user input like this, using getchar: for (i = 0; (c = getchar()) != '\n'; i++) buf[i] = c; I want to [...] read more
c
stack-smash

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0