How to analyze PROCESS1_INITIALIZATION_FAILED

Hi all,
I m getting following message for !analyze -v
PROCESS1_INITIALIZATION_FAILED (6b)
Arguments
Arg1 : c000003a
arg2 : 00000002
arg3 :0
arg4 :0

stack is as follows

STACK_TEXT:
f241b2a0 8042bcb9 00000003 f241b2e8 c000003a nt!PopCompleteFindIrp+0xd
f241b2d0 8042c068 00000003 c000003a 00000000
nt!Ke386IoSetAccessProcess+0x50
f241b658 8055e259 00000000 c000003a 00000002
nt!KeUnstackDetachProcess+0xfb
f241b8c0 8054c5bc 00000000 00000032 00000000
nt!MiEnablePagingTheExecutive+0xb3
f241ba58 8054b35a 80088000 00000000 00000000
nt!ExpInitSystemPhase1+0x158
f241bda8 804524f6 80088000 00000000 00000000 nt!TraceDataSyms+0x1fa
f241bddc 80465b62 8054aca6 80088000 00000000 nt!PopPresentIrp+0x96
f241bddc 00000000 8054aca6 80088000 00000000 nt!KiGetTickCount+0xb6
fffffffc 00000000 00000000 00000000 00000000 0x0

How to analyze the argument1?

Thanks in advance
Shekhar

Google is your friend for finding other people with similar errors:
http://www.ntfsd.org/archive/ntfsd9709/msg0062.html

I’m guessing it’s an error code:
#define STATUS_OBJECT_PATH_NOT_FOUND ((NTSTATUS)0xC000003AL)

Maybe something is trying to launch a process, but is failing because it
can’t find the necessary binary/kernel mode dll/or something else?

sean

xxxxx@yahoo.com wrote:

Hi all,
I m getting following message for !analyze -v
PROCESS1_INITIALIZATION_FAILED (6b)
Arguments
Arg1 : c000003a
arg2 : 00000002
arg3 :0
arg4 :0

stack is as follows

STACK_TEXT:
f241b2a0 8042bcb9 00000003 f241b2e8 c000003a nt!PopCompleteFindIrp+0xd
f241b2d0 8042c068 00000003 c000003a 00000000
nt!Ke386IoSetAccessProcess+0x50
f241b658 8055e259 00000000 c000003a 00000002
nt!KeUnstackDetachProcess+0xfb
f241b8c0 8054c5bc 00000000 00000032 00000000
nt!MiEnablePagingTheExecutive+0xb3
f241ba58 8054b35a 80088000 00000000 00000000
nt!ExpInitSystemPhase1+0x158
f241bda8 804524f6 80088000 00000000 00000000 nt!TraceDataSyms+0x1fa
f241bddc 80465b62 8054aca6 80088000 00000000 nt!PopPresentIrp+0x96
f241bddc 00000000 8054aca6 80088000 00000000 nt!KiGetTickCount+0xb6
fffffffc 00000000 00000000 00000000 00000000 0x0

How to analyze the argument1?

Thanks in advance
Shekhar


You are currently subscribed to windbg as: xxxxx@stg.com
To unsubscribe send a blank email to xxxxx@lists.osr.com

And when all else fails, the WinDBG help file actually helps (from the
“Bug Checks”->“Bug Check Code Reference” section):
"

Cause

This error can be caused by any part of the disk subsystem, including
bad disks, bad or incorrect cables, mixing different ATA-type devices on
the same chain, or drives that are not available due to hardware
regeneration.

It can also be caused by a missing file from the boot partition, or by a
driver file that has been disabled from the *Drivers* tab by mistake.
"

Sean Bullington wrote:

Google is your friend for finding other people with similar errors:
http://www.ntfsd.org/archive/ntfsd9709/msg0062.html

I’m guessing it’s an error code:
#define STATUS_OBJECT_PATH_NOT_FOUND ((NTSTATUS)0xC000003AL)

Maybe something is trying to launch a process, but is failing because
it can’t find the necessary binary/kernel mode dll/or something else?

sean

xxxxx@yahoo.com wrote:

> Hi all,
> I m getting following message for !analyze -v
> PROCESS1_INITIALIZATION_FAILED (6b)
> Arguments
> Arg1 : c000003a
> arg2 : 00000002
> arg3 :0
> arg4 :0
>
> stack is as follows
>
> STACK_TEXT: f241b2a0 8042bcb9 00000003 f241b2e8 c000003a
> nt!PopCompleteFindIrp+0xd
> f241b2d0 8042c068 00000003 c000003a 00000000
> nt!Ke386IoSetAccessProcess+0x50
> f241b658 8055e259 00000000 c000003a 00000002
> nt!KeUnstackDetachProcess+0xfb
> f241b8c0 8054c5bc 00000000 00000032 00000000
> nt!MiEnablePagingTheExecutive+0xb3
> f241ba58 8054b35a 80088000 00000000 00000000
> nt!ExpInitSystemPhase1+0x158
> f241bda8 804524f6 80088000 00000000 00000000 nt!TraceDataSyms+0x1fa
> f241bddc 80465b62 8054aca6 80088000 00000000 nt!PopPresentIrp+0x96
> f241bddc 00000000 8054aca6 80088000 00000000 nt!KiGetTickCount+0xb6
> fffffffc 00000000 00000000 00000000 00000000 0x0
>
> How to analyze the argument1?
>
> Thanks in advance
> Shekhar
>
> —
> You are currently subscribed to windbg as: xxxxx@stg.com
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>
>


You are currently subscribed to windbg as: xxxxx@stg.com
To unsubscribe send a blank email to xxxxx@lists.osr.com

thanks sean for the help
I m getting this error at boot time :slight_smile:
after mup.sys is launched
I tell you wot i m doing
i have 2 disks
I copy partition table for 1 disk on the other , then i copy boot sector for each partition , then i clear the fat entries for the disk2 , then i restart the system so that partition manager will automatically detect the partiton and mount drives for it,
this all works for few systems , but for few systems when I reboot the system this problem arizes.
If i remove the Disk2 and try to restart the system system boots but with Disk 2 attached , system never boots

See if u can help
Regards
Shekhar

Sean Bullington wrote:
Google is your friend for finding other people with similar errors:
http://www.ntfsd.org/archive/ntfsd9709/msg0062.html

I’m guessing it’s an error code:
#define STATUS_OBJECT_PATH_NOT_FOUND ((NTSTATUS)0xC000003AL)

Maybe something is trying to launch a process, but is failing because it
can’t find the necessary binary/kernel mode dll/or something else?

sean

xxxxx@yahoo.com wrote:

>Hi all,
>I m getting following message for !analyze -v
>PROCESS1_INITIALIZATION_FAILED (6b)
>Arguments
>Arg1 : c000003a
>arg2 : 00000002
>arg3 :0
>arg4 :0
>
>stack is as follows
>
>STACK_TEXT:
>f241b2a0 8042bcb9 00000003 f241b2e8 c000003a nt!PopCompleteFindIrp+0xd
>f241b2d0 8042c068 00000003 c000003a 00000000
>nt!Ke386IoSetAccessProcess+0x50
>f241b658 8055e259 00000000 c000003a 00000002
>nt!KeUnstackDetachProcess+0xfb
>f241b8c0 8054c5bc 00000000 00000032 00000000
>nt!MiEnablePagingTheExecutive+0xb3
>f241ba58 8054b35a 80088000 00000000 00000000
>nt!ExpInitSystemPhase1+0x158
>f241bda8 804524f6 80088000 00000000 00000000 nt!TraceDataSyms+0x1fa
>f241bddc 80465b62 8054aca6 80088000 00000000 nt!PopPresentIrp+0x96
>f241bddc 00000000 8054aca6 80088000 00000000 nt!KiGetTickCount+0xb6
>fffffffc 00000000 00000000 00000000 00000000 0x0
>
>How to analyze the argument1?
>
>Thanks in advance
>Shekhar
>
>—
>You are currently subscribed to windbg as: xxxxx@stg.com
>To unsubscribe send a blank email to xxxxx@lists.osr.com
>
>


You are currently subscribed to windbg as: xxxxx@yahoo.com
To unsubscribe send a blank email to xxxxx@lists.osr.com

---------------------------------
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software