Content Type
Profiles
Forums
Events
Everything posted by Dietmar
-
Until now, I have no idea of Python. But with the help of ChatGPT I succeed to make my Ki learn XOR. For this, I use 3 Neurons with 2 thresholds. Together with the Hebb learning (1949(!)), 2 neurons that fire together, wire together. And if they fire randomally to each other, the weights are lowered. I succeed via Hebb with XOR Dietmar PS: You can copy and paste this code into ideone.com choose Python 3 and hit run. import numpy as np # Initialisierung der Schwellenwerte lower_threshold = 0.8 upper_threshold = 1.2 # Lernrate learning_rate = 0.1 # Trainingsdaten (XOR-Problem) inputs = [[0, 0], [0, 1], [1, 0], [1, 1]] targets = [0, 1, 1, 0] # Trainingsloop mit max. 1000 Iterationen max_iterations = 1000 epoch = 0 network_trained = False start_weights = None final_weights = None all_epoch_outputs = [] # Store outputs of all epochs for debugging and transparency while epoch < max_iterations: epoch += 1 all_correct = True # Flag, um zu überprüfen, ob alle Ausgaben korrekt sind current_weights = np.random.rand(2) # Zufällige Startgewichte if epoch == 1: # Die erste Iteration nach Initialisierung start_weights = current_weights # Speichere die Startgewichte epoch_outputs = [] # To store outputs of this epoch for input_vector, target in zip(inputs, targets): # Berechnung der gewichteten Summe weighted_sum = np.dot(input_vector, current_weights) # Aktivierungsfunktion (einfache Schwellenwertfunktion) output = 1 if lower_threshold < weighted_sum < upper_threshold else 0 # Fehlerberechnung error = target - output # Wenn ein Fehler vorliegt, dann weise die Gewichte an if error != 0: all_correct = False current_weights += learning_rate * error * np.array(input_vector) epoch_outputs.append((input_vector, output, target)) # Save each iteration's output all_epoch_outputs.append(epoch_outputs) # Überprüfe, ob alle Ausgaben korrekt sind if all_correct: network_trained = True final_weights = current_weights # Speichere die finalen Gewichte break # Stoppe, wenn alle Ausgaben korrekt sind # Wenn XOR nach 100 Iterationen nicht gelernt wurde, setze neue zufällige Startgewichte if epoch % 100 == 0: # 100 statt 20 print(f"Nicht funktionierende Startgewichte: {start_weights}") start_weights = np.random.rand(2) # Setze neue Startgewichte if network_trained: print(f"Das Netzwerk hat XOR korrekt nach {epoch} Iterationen gelernt.") print(f"Die Working Startgewichte waren: {start_weights}") print(f"Die finalen Gewichte sind: {final_weights}") else: print(f"Das Netzwerk hat XOR nach {epoch} Iterationen nicht korrekt gelernt.") # Testen des Netzwerks nach den Lern-Iterationen print("\nFinal Test Output:") for input_vector, target in zip(inputs, targets): weighted_sum = np.dot(input_vector, final_weights) output = 1 if lower_threshold < weighted_sum < upper_threshold else 0 print(f"Input: {input_vector}, Target: {target}, Output: {output}") # Optionally, print out the outputs of each epoch for transparency print("\nEpoch Outputs:") for epoch_index, epoch_outputs in enumerate(all_epoch_outputs): print(f"Epoch {epoch_index + 1}:") for input_vector, output, target in epoch_outputs: print(f" Input: {input_vector}, Output: {output}, Target: {target}")
-
Hi, may be the problem is the strange behavior on some nvme devices, when you install there XP SP3. So, make a full install on a normal harddisk for this notebook. If there is no harddisk, you can make the XP install to a connected USB3 drive (harddisk). For this, enable the life USB on Ramsey setup. Later you can copy your whole XP install back to your nvme device. Dont forget to install, before USB install, the nvme driver. Good luck Dietmar
-
@Chasov Anton You have post, good luck Dietmar
-
@George King I cant remember all, what I changed. But it is much more than in your acpi.sys for XP SP2 bit64. Also I remember, that I use for compile 2 modified txt files (hacks from @Mov AX, 0xDEAD ), but you use only one of them. And you miss the important hack from Skull for wrong datatype Dietmar
-
@George King I just compare your acpi.sys for XP SP2 bit64 with mine. It is very much different. Did you compile it for yourself? I add the Win10 fake and also the modifications from @Mov AX, 0xDEAD from January 2023. Also I add the hack for wrong data type (thanks to Skull) and for the unknown symbols in AMLILoadDDB Dietmar
-
@D.Draker Until now, on really ALL boards that I have and any OS, I notice the going downspeed of any USB after copying about 40 Gbyte, to a speed of about 10MByte/s. On this nice ASRock N100DC-ITX this does not happen. So, Intel makes something different in its hardware for USB Dietmar
-
Hi, I just make an nvme boot of XP SP3 on this nice board with the N100 cpu. I use the Intel nvme driver for this on the Toshiba RD400. After install of all drivers, boottime is 10sec. Power is always about 6 Watt. Geekbench 2.4.3 shows 8033 Points. PS/2 works for the mouse together with the keyboard via y-cable. 2 Sata 600 MB/s connectors. The board has Rj45 Realtek Lan 8168, COM1 port, LPT1 port, USB2,3, PCIe connector for graphikcard, I use Geforce GT 730, Realtek sound 867, M2 for Wifi, M2 for nvme and with my mod also CSM for XP boot. You can use any 12...19 Volt DC-source. For Bios CSM mod, copy to an Fat32 USB stick all the content of my file (see downwards), select the USB stick via fs0: (for example) or fs1: and then for to flash my CSM Bios 1.06 via fpt -f bios.rom No risk in this Bios flash, because you can always flash back the original Bios 1.06 from website of Asrock. It is one of the most stable boards I have. Just now I copy about 1000 Gbyte via USB3. All drivers for XP I have for this board from summer 2023. No crash, no error, no go down to slow speed as I always notice on all the z690, z790 boards for USB3 Dietmar All for Bios CSM mod is here https://ufile.io/lka3uvrf
-
@George King I make try, but situation in XP bit64 for lan i218-LM v3 is much less clear than in bit 32 and I have not tested until now 140: D5 1D 141: 0E 57 2DD4: 5A A2 335CB: 5A A2 Dietmar https://ufile.io/k6jekir2
-
Yessaa, on first try it works!!! Now we have Intel Lan i218-LM v3 for XP Dietmar https://ufile.io/g6md5zge PS: Mod is in e1d5132oriori.sys ==> e1d5132.sys from PROEmbSw11 package: 2909: 04 00 3D 5A 15 00 00 7F 20 3D ==> 04 00 3D A2 15 00 00 7F 20 3D 2137C: 81 F9 5A 15 00 00 0F ==> 81 F9 A2 15 00 00 0F 2835B: 66 81 F9 5A 15 74 07 66 ==> 66 81 F9 A2 15 74 07 66 and correct Checksum 138: A6 ==> EF 139: 3D ==> CD 13A: 04 ==> 03 and mod its e1d5132oriori.inf ==> e1d5132.inf %E155ANC.DeviceDesc% = E153A, PCI\VEN_8086&DEV_155A ==> %E155ANC.DeviceDesc% = E153A, PCI\VEN_8086&DEV_15A2 %E155ANC.DeviceDesc% = E153A, PCI\VEN_8086&DEV_155A ==> %E155ANC.DeviceDesc% = E153A, PCI\VEN_8086&DEV_15A2 HKLM,Software\Intel\Prounstl\SupportedDevices\8086, 155A, 0, "155A" ==> HKLM,Software\Intel\Prounstl\SupportedDevices\8086, 15A2, 0, "15A2" And here is the Notebook Lenovo W550s with 5600U cpu and this Lan device The only thing that will not work is the crazy graphik driver. Nvidia tells, it has driver for it, not works. May be, that it is also a very easy hack for the Device ID in nv4_mini.sys..
-
Hi, I just notice, that some hacks for the i218 exist, but no one for the Intel i218-LM v3, here with Ven_8086&Dev_15A2&Subsys_222617AA&REV_03 Tomorrow I make a try to do the hack by myself, via this idea from @Mov AX, 0xDEAD msfn.org/board/topic/184522-lets-try-to-get-the-intel-lan-i219-v-running-with-xp/#comment-1241041 Maybe, that someone has done it already Dietmar
-
NVIDIA Optimus and AMD Switchable Graphic with XP
Dietmar replied to genieautravail's topic in Windows XP
@genieautravail I asked @reboot12 for to do such a Bios mod. On most Bios there is such a possibility to select the graphikcard, but hidden. With the nice acpipatcher at boottime, no need to touch the Bios for this mod under XP. I wait for news for this Dietmar -
@kin003 I have the same Asus EEEPC, in June 2009 I bought it, with XP SP3, still works Dietmar
-
Yessaaaa I succeed to start XP SP3 on this HP Omen Notebook ax009ng. The idea, to use an external XP from my Asrock z370 k6, where I install "wrong" the GTX 960M was the breaktrough. Lan so Internet, sound, USB2,3, Cam, all works. The driver for the 960M just now not started, I think because until now all is in "Standard PC", means no acpi at all. But it can also be a more serious problem. The driver for the GTX 960M (mobile) for XP SP3 from Nvidia is there, but who knows, if it works on all notebooks. Dietmar PS: Acpi will come, but this will be a hard fight with the Acpi tables DSDT, SSDT..
-
I just see in the device tree, that the normal VGA driver is not started, DevNode 0x8a052948 for PDO 0x8a052a90 InstancePath is "Root\LEGACY_VGASAVE\0000" ServiceName is "VgaSave" State = DeviceNodeStarted (0x308) Dietmar
-
I installed on a normal compi the Nvidia device GTX 960M. And before reboot of it, I put the harddisk out and connect it to the HP Omen. I can see the mouse pointer at desktop. But then comes a message shield: lsass.exe - System Error Insufficient system resources exist to complete the API. Dietmar
-
@reboot12 Here is a more detailed information, what happens short before Bsod Dietmar PS: Maybe, this line tells about not working any video driver 0: kd> nt!Phase1Initialization+0x11de: 80699aea e80749e5ff call nt!InbvEnableDisplayString (804ee3f6) The Nvidia GTX 960M can be seen here. It is not started of course, because no driver. I will make an XP SP3, with this driver for the GTX 960M installed. DevNode 0x89eb1ca0 for PDO 0x89eb1030 InstancePath is "PCI\VEN_10DE&DEV_139B&SUBSYS_8257103C&REV_A2\4&17bc2637&0&0008" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED 806999d4 e87b22e9ff call nt!RtlAppendUnicodeStringToString (8052bc54) 0: kd> nt!Phase1Initialization+0x10cd: 806999d9 a188a85580 mov eax,dword ptr [nt!NtSystemRoot (8055a888)] 0: kd> nt!Phase1Initialization+0x10d2: 806999de 898520fbffff mov dword ptr [ebp-4E0h],eax 0: kd> nt!Phase1Initialization+0x10d8: 806999e4 a18ca85580 mov eax,dword ptr [nt!NtSystemRoot+0x4 (8055a88c)] 0: kd> nt!Phase1Initialization+0x10dd: 806999e9 898524fbffff mov dword ptr [ebp-4DCh],eax 0: kd> nt!Phase1Initialization+0x10e3: 806999ef 68d2886980 push offset nt!CreateSystemRootLink+0x470 (806988d2) 0: kd> nt!Phase1Initialization+0x10e8: 806999f4 8d8570fbffff lea eax,[ebp-490h] 0: kd> nt!Phase1Initialization+0x10ee: 806999fa 50 push eax 0: kd> nt!Phase1Initialization+0x10ef: 806999fb 66c78520fbffff0400 mov word ptr [ebp-4E0h],4 0: kd> nt!Phase1Initialization+0x10f8: 80699a04 e8d321e9ff call nt!RtlAppendUnicodeToString (8052bbdc) 0: kd> nt!Phase1Initialization+0x10fd: 80699a09 8d8520fbffff lea eax,[ebp-4E0h] 0: kd> nt!Phase1Initialization+0x1103: 80699a0f 50 push eax 0: kd> nt!Phase1Initialization+0x1104: 80699a10 8d8570fbffff lea eax,[ebp-490h] 0: kd> nt!Phase1Initialization+0x110a: 80699a16 50 push eax 0: kd> nt!Phase1Initialization+0x110b: 80699a17 e83822e9ff call nt!RtlAppendUnicodeStringToString (8052bc54) 0: kd> nt!Phase1Initialization+0x1110: 80699a1c 8d8530fbffff lea eax,[ebp-4D0h] 0: kd> nt!Phase1Initialization+0x1116: 80699a22 50 push eax 0: kd> nt!Phase1Initialization+0x1117: 80699a23 8d8570fbffff lea eax,[ebp-490h] 0: kd> nt!Phase1Initialization+0x111d: 80699a29 50 push eax 0: kd> nt!Phase1Initialization+0x111e: 80699a2a e82522e9ff call nt!RtlAppendUnicodeStringToString (8052bc54) 0: kd> nt!Phase1Initialization+0x1123: 80699a2f 68ee886980 push offset nt!CreateSystemRootLink+0x48c (806988ee) 0: kd> nt!Phase1Initialization+0x1128: 80699a34 8d8570fbffff lea eax,[ebp-490h] 0: kd> nt!Phase1Initialization+0x112e: 80699a3a 50 push eax 0: kd> nt!Phase1Initialization+0x112f: 80699a3b e89c21e9ff call nt!RtlAppendUnicodeToString (8052bbdc) 0: kd> nt!Phase1Initialization+0x1134: 80699a40 6888a85580 push offset nt!NtSystemRoot (8055a888) 0: kd> nt!Phase1Initialization+0x1139: 80699a45 8d8570fbffff lea eax,[ebp-490h] 0: kd> nt!Phase1Initialization+0x113f: 80699a4b 50 push eax 0: kd> nt!Phase1Initialization+0x1140: 80699a4c e80322e9ff call nt!RtlAppendUnicodeStringToString (8052bc54) 0: kd> nt!Phase1Initialization+0x1145: 80699a51 8d8530fbffff lea eax,[ebp-4D0h] 0: kd> nt!Phase1Initialization+0x114b: 80699a57 50 push eax 0: kd> nt!Phase1Initialization+0x114c: 80699a58 8d8570fbffff lea eax,[ebp-490h] 0: kd> nt!Phase1Initialization+0x1152: 80699a5e 50 push eax 0: kd> nt!Phase1Initialization+0x1153: 80699a5f e8f021e9ff call nt!RtlAppendUnicodeStringToString (8052bc54) 0: kd> nt!Phase1Initialization+0x1158: 80699a64 6896000000 push 96h 0: kd> nt!Phase1Initialization+0x115d: 80699a69 e8ac47f8ff call nt!CcPfBeginBootPhase (8061e21a) 0: kd> nt!Phase1Initialization+0x1162: 80699a6e 8b85b4fbffff mov eax,dword ptr [ebp-44Ch] 0: kd> nt!Phase1Initialization+0x1168: 80699a74 8b4838 mov ecx,dword ptr [eax+38h] 0: kd> nt!Phase1Initialization+0x116b: 80699a77 898d00fbffff mov dword ptr [ebp-500h],ecx 0: kd> nt!Phase1Initialization+0x1171: 80699a7d 8b483c mov ecx,dword ptr [eax+3Ch] 0: kd> nt!Phase1Initialization+0x1174: 80699a80 898d04fbffff mov dword ptr [ebp-4FCh],ecx 0: kd> nt!Phase1Initialization+0x117a: 80699a86 8d8da4faffff lea ecx,[ebp-55Ch] 0: kd> nt!Phase1Initialization+0x1180: 80699a8c 51 push ecx 0: kd> nt!Phase1Initialization+0x1181: 80699a8d 53 push ebx 0: kd> nt!Phase1Initialization+0x1182: 80699a8e 53 push ebx 0: kd> nt!Phase1Initialization+0x1183: 80699a8f 53 push ebx 0: kd> nt!Phase1Initialization+0x1184: 80699a90 53 push ebx 0: kd> nt!Phase1Initialization+0x1185: 80699a91 53 push ebx 0: kd> nt!Phase1Initialization+0x1186: 80699a92 53 push ebx 0: kd> nt!Phase1Initialization+0x1187: 80699a93 50 push eax 0: kd> nt!Phase1Initialization+0x1188: 80699a94 e8dd710100 call nt!RtlDeNormalizeProcessParams (806b0c76) 0: kd> nt!Phase1Initialization+0x118d: 80699a99 50 push eax 0: kd> nt!Phase1Initialization+0x118e: 80699a9a 6a40 push 40h 0: kd> nt!Phase1Initialization+0x1190: 80699a9c 8d8500fbffff lea eax,[ebp-500h] 0: kd> nt!Phase1Initialization+0x1196: 80699aa2 50 push eax 0: kd> nt!Phase1Initialization+0x1197: 80699aa3 e8e8720100 call nt!RtlCreateUserProcess (806b0d90) 0: kd> nt!Phase1Initialization+0x119c: 80699aa8 381d80545580 cmp byte ptr [nt!InbvBootDriverInstalled (80555480)],bl 0: kd> nt!Phase1Initialization+0x11a2: 80699aae 8bf0 mov esi,eax 0: kd> nt!Phase1Initialization+0x11a4: 80699ab0 5f pop edi 0: kd> nt!Phase1Initialization+0x11a5: 80699ab1 7405 je nt!Phase1Initialization+0x11ac (80699ab8) 0: kd> nt!Phase1Initialization+0x11a7: 80699ab3 e80254e5ff call nt!FinalizeBootLogo (804eeeba) 0: kd> nt!Phase1Initialization+0x11ac: 80699ab8 3bf3 cmp esi,ebx 0: kd> nt!Phase1Initialization+0x11ae: 80699aba 53 push ebx 0: kd> nt!Phase1Initialization+0x11af: 80699abb 7d0a jge nt!Phase1Initialization+0x11bb (80699ac7) 0: kd> nt!Phase1Initialization+0x11bb: 80699ac7 ffb5acfaffff push dword ptr [ebp-554h] 0: kd> nt!Phase1Initialization+0x11c1: 80699acd e81673e6ff call nt!ZwResumeThread (80500de8) 0: kd> nt!Phase1Initialization+0x11c6: 80699ad2 3bc3 cmp eax,ebx 0: kd> nt!Phase1Initialization+0x11c8: 80699ad4 7d0b jge nt!Phase1Initialization+0x11d5 (80699ae1) 0: kd> nt!Phase1Initialization+0x11d5: 80699ae1 6a64 push 64h 0: kd> nt!Phase1Initialization+0x11d7: 80699ae3 e8764be5ff call nt!InbvUpdateProgressBar (804ee65e) 0: kd> nt!Phase1Initialization+0x11dc: 80699ae8 6a01 push 1 0: kd> nt!Phase1Initialization+0x11de: 80699aea e80749e5ff call nt!InbvEnableDisplayString (804ee3f6) 0: kd> nt!Phase1Initialization+0x11e3: 80699aef 838d44fbffffff or dword ptr [ebp-4BCh],0FFFFFFFFh 0: kd> nt!Phase1Initialization+0x11ea: 80699af6 8d8540fbffff lea eax,[ebp-4C0h] 0: kd> nt!Phase1Initialization+0x11f0: 80699afc 50 push eax 0: kd> nt!Phase1Initialization+0x11f1: 80699afd 53 push ebx 0: kd> nt!Phase1Initialization+0x11f2: 80699afe ffb5a8faffff push dword ptr [ebp-558h] 0: kd> nt!Phase1Initialization+0x11f8: 80699b04 c78540fbffff800f05fd mov dword ptr [ebp-4C0h],0FD050F80h 0: kd> nt!Phase1Initialization+0x1202: 80699b0e e8e977e6ff call nt!ZwWaitForSingleObject (805012fc) 0: kd> nt!DebugService2+0x11: 80532043 5d pop ebp 0: kd> nt!DebugService2+0x12: 80532044 c20c00 ret 0Ch 0: kd> nt!DbgUnLoadImageSymbols+0x2a: 8052b97e c9 leave 0: kd> nt!DbgUnLoadImageSymbols+0x2b: 8052b97f c20c00 ret 0Ch 0: kd> nt!MmUnloadSystemImage+0x1a8: 805ade3c 8d45ec lea eax,[ebp-14h] 0: kd> nt!MmUnloadSystemImage+0x1ab: 805ade3f 50 push eax 0: kd> nt!MmUnloadSystemImage+0x1ac: 805ade40 e8db3d0300 call nt!RtlFreeUnicodeString (805e1c20) 0: kd> nt!MmUnloadSystemImage+0x1b1: 805ade45 837df400 cmp dword ptr [ebp-0Ch],0 0: kd> nt!MmUnloadSystemImage+0x1b5: 805ade49 0f8593000000 jne nt!MmUnloadSystemImage+0x24e (805adee2) 0: kd> nt!MmUnloadSystemImage+0x1bb: 805ade4f 8b4720 mov eax,dword ptr [edi+20h] 0: kd> nt!MmUnloadSystemImage+0x1be: 805ade52 c1e80c shr eax,0Ch 0: kd> nt!MmUnloadSystemImage+0x1c1: 805ade55 833d7c19558000 cmp dword ptr [nt!MmSnapUnloads (8055197c)],0 0: kd> nt!MmUnloadSystemImage+0x1c8: 805ade5c 8945f0 mov dword ptr [ebp-10h],eax 0: kd> nt!MmUnloadSystemImage+0x1cb: 805ade5f 7411 je nt!MmUnloadSystemImage+0x1de (805ade72) 0: kd> nt!MmUnloadSystemImage+0x1de: 805ade72 f6473701 test byte ptr [edi+37h],1 0: kd> nt!MmUnloadSystemImage+0x1e2: 805ade76 746a je nt!MmUnloadSystemImage+0x24e (805adee2) 0: kd> nt!MmUnloadSystemImage+0x1e4: 805ade78 8d4d08 lea ecx,[ebp+8] 0: kd> nt!MmUnloadSystemImage+0x1e7: 805ade7b 51 push ecx 0: kd> nt!MmUnloadSystemImage+0x1e8: 805ade7c 6a00 push 0 0: kd> nt!MmUnloadSystemImage+0x1ea: 805ade7e ff352c9f4d80 push dword ptr [nt!ZeroKernelPte+0x4 (804d9f2c)] 0: kd> nt!MmUnloadSystemImage+0x1f0: 805ade84 c1ee09 shr esi,9 0: kd> nt!MmUnloadSystemImage+0x1f3: 805ade87 ff35289f4d80 push dword ptr [nt!ZeroKernelPte (804d9f28)] 0: kd> nt!MmUnloadSystemImage+0x1f9: 805ade8d 81e6f8ff7f00 and esi,7FFFF8h 0: kd> nt!MmUnloadSystemImage+0x1ff: 805ade93 50 push eax 0: kd> nt!MmUnloadSystemImage+0x200: 805ade94 81ee00000040 sub esi,40000000h 0: kd> nt!MmUnloadSystemImage+0x206: 805ade9a 56 push esi 0: kd> nt!MmUnloadSystemImage+0x207: 805ade9b e84e21f6ff call nt!MiDeleteSystemPagableVm (8050ffee) 0: kd> nt!MmUnloadSystemImage+0x20c: 805adea0 8b4d08 mov ecx,dword ptr [ebp+8] 0: kd> nt!MmUnloadSystemImage+0x20f: 805adea3 6a00 push 0 0: kd> nt!MmUnloadSystemImage+0x211: 805adea5 ff75f0 push dword ptr [ebp-10h] 0: kd> nt!MmUnloadSystemImage+0x214: 805adea8 2bc8 sub ecx,eax 0: kd> nt!MmUnloadSystemImage+0x216: 805adeaa 010da4d75580 add dword ptr [nt!MmTotalSystemDriverPages (8055d7a4)],ecx 0: kd> nt!MmUnloadSystemImage+0x21c: 805adeb0 56 push esi 0: kd> nt!MmUnloadSystemImage+0x21d: 805adeb1 8945f4 mov dword ptr [ebp-0Ch],eax 0: kd> nt!MmUnloadSystemImage+0x220: 805adeb4 e8b7c4f9ff call nt!MiReleaseSystemPtes (8054a370) 0: kd> nt!MmUnloadSystemImage+0x225: 805adeb9 6a15 push 15h 0: kd> nt!MmUnloadSystemImage+0x227: 805adebb ff7508 push dword ptr [ebp+8] 0: kd> nt!MmUnloadSystemImage+0x22a: 805adebe e8a31ef6ff call nt!MiReturnResidentAvailable (8050fd66) 0: kd> nt!MmUnloadSystemImage+0x22f: 805adec3 837f3c00 cmp dword ptr [edi+3Ch],0 0: kd> nt!MmUnloadSystemImage+0x233: 805adec7 7419 je nt!MmUnloadSystemImage+0x24e (805adee2) 0: kd> nt!MmUnloadSystemImage+0x235: 805adec9 8b45f4 mov eax,dword ptr [ebp-0Ch] 0: kd> nt!MmUnloadSystemImage+0x238: 805adecc f7d8 neg eax 0: kd> nt!MmUnloadSystemImage+0x23a: 805adece 8bc8 mov ecx,eax 0: kd> nt!MmUnloadSystemImage+0x23c: 805aded0 ba281c5680 mov edx,offset nt!MmTotalCommittedPages (80561c28) 0: kd> nt!MmUnloadSystemImage+0x241: 805aded5 f00fc10a lock xadd dword ptr [edx],ecx 0: kd> nt!MmUnloadSystemImage+0x245: 805aded9 b9a0d75580 mov ecx,offset nt!MmDriverCommit (8055d7a0) 0: kd> nt!MmUnloadSystemImage+0x24a: 805adede f00fc101 lock xadd dword ptr [ecx],eax 0: kd> nt!MmUnloadSystemImage+0x24e: 805adee2 33f6 xor esi,esi 0: kd> nt!MmUnloadSystemImage+0x250: 805adee4 3937 cmp dword ptr [edi],esi 0: kd> nt!MmUnloadSystemImage+0x252: 805adee6 7408 je nt!MmUnloadSystemImage+0x25c (805adef0) 0: kd> nt!MmUnloadSystemImage+0x254: 805adee8 56 push esi 0: kd> nt!MmUnloadSystemImage+0x255: 805adee9 57 push edi 0: kd> nt!MmUnloadSystemImage+0x256: 805adeea e8e329f6ff call nt!MiProcessLoaderEntry (805108d2) 0: kd> nt!MmUnloadSystemImage+0x25b: 805adeef 46 inc esi 0: kd> nt!MmUnloadSystemImage+0x25c: 805adef0 ff7744 push dword ptr [edi+44h] 0: kd> nt!MmUnloadSystemImage+0x25f: 805adef3 e8c0000000 call nt!MiDereferenceImports (805adfb8) 0: kd> nt!MmUnloadSystemImage+0x264: 805adef8 57 push edi 0: kd> nt!MmUnloadSystemImage+0x265: 805adef9 e85eebffff call nt!MiClearImports (805aca5c) 0: kd> nt!MmUnloadSystemImage+0x26a: 805adefe 83fe01 cmp esi,1 0: kd> nt!MmUnloadSystemImage+0x26d: 805adf01 7535 jne nt!MmUnloadSystemImage+0x2a4 (805adf38) 0: kd> nt!MmUnloadSystemImage+0x26f: 805adf03 8b4728 mov eax,dword ptr [edi+28h] 0: kd> nt!MmUnloadSystemImage+0x272: 805adf06 85c0 test eax,eax 0: kd> nt!MmUnloadSystemImage+0x274: 805adf08 7408 je nt!MmUnloadSystemImage+0x27e (805adf12) 0: kd> nt!MmUnloadSystemImage+0x276: 805adf0a 6a00 push 0 0: kd> nt!MmUnloadSystemImage+0x278: 805adf0c 50 push eax 0: kd> nt!MmUnloadSystemImage+0x279: 805adf0d e8ced3f9ff call nt!ExFreePoolWithTag (8054b2e0) 0: kd> nt!MmUnloadSystemImage+0x27e: 805adf12 8b4f3c mov ecx,dword ptr [edi+3Ch] 0: kd> nt!MmUnloadSystemImage+0x281: 805adf15 85c9 test ecx,ecx 0: kd> nt!MmUnloadSystemImage+0x283: 805adf17 740a je nt!MmUnloadSystemImage+0x28f (805adf23) 0: kd> nt!MmUnloadSystemImage+0x285: 805adf19 83f9ff cmp ecx,0FFFFFFFFh 0: kd> nt!MmUnloadSystemImage+0x288: 805adf1c 7405 je nt!MmUnloadSystemImage+0x28f (805adf23) 0: kd> nt!MmUnloadSystemImage+0x28f: 805adf23 8b4748 mov eax,dword ptr [edi+48h] 0: kd> nt!MmUnloadSystemImage+0x292: 805adf26 85c0 test eax,eax 0: kd> nt!MmUnloadSystemImage+0x294: 805adf28 7406 je nt!MmUnloadSystemImage+0x29c (805adf30) 0: kd> nt!MmUnloadSystemImage+0x29c: 805adf30 6a00 push 0 0: kd> nt!MmUnloadSystemImage+0x29e: 805adf32 57 push edi 0: kd> nt!MmUnloadSystemImage+0x29f: 805adf33 e8a8d3f9ff call nt!ExFreePoolWithTag (8054b2e0) 0: kd> nt!MmUnloadSystemImage+0x2a4: 805adf38 6a00 push 0 0: kd> nt!MmUnloadSystemImage+0x2a6: 805adf3a 6a00 push 0 0: kd> nt!MmUnloadSystemImage+0x2a8: 805adf3c 6a01 push 1 0: kd> nt!MmUnloadSystemImage+0x2aa: 805adf3e 68c0d75580 push offset nt!MmSystemLoadLock (8055d7c0) 0: kd> nt!MmUnloadSystemImage+0x2af: 805adf43 e8e0e9f4ff call nt!KeReleaseMutant (804fc928) 0: kd> nt!MmUnloadSystemImage+0x2b4: 805adf48 ff83d4000000 inc dword ptr [ebx+0D4h] 0: kd> nt!MmUnloadSystemImage+0x2ba: 805adf4e 7512 jne nt!MmUnloadSystemImage+0x2ce (805adf62) 0: kd> nt!MmUnloadSystemImage+0x2ce: 805adf62 5f pop edi 0: kd> nt!MmUnloadSystemImage+0x2cf: 805adf63 5e pop esi 0: kd> nt!MmUnloadSystemImage+0x2d0: 805adf64 33c0 xor eax,eax 0: kd> nt!MmUnloadSystemImage+0x2d2: 805adf66 5b pop ebx 0: kd> nt!MmUnloadSystemImage+0x2d3: 805adf67 c9 leave 0: kd> nt!MmUnloadSystemImage+0x2d4: 805adf68 c20400 ret 4 0: kd> nt!IoFreeDumpStack+0xc1: 805773bd 6a00 push 0 0: kd> nt!IoFreeDumpStack+0xc3: 805773bf 57 push edi 0: kd> nt!IoFreeDumpStack+0xc4: 805773c0 e81b3ffdff call nt!ExFreePoolWithTag (8054b2e0) 0: kd> nt!IoFreeDumpStack+0xc9: 805773c5 391b cmp dword ptr [ebx],ebx 0: kd> nt!IoFreeDumpStack+0xcb: 805773c7 75dc jne nt!IoFreeDumpStack+0xa9 (805773a5) 0: kd> nt!IoFreeDumpStack+0xcd: 805773c9 8b86a4000000 mov eax,dword ptr [esi+0A4h] 0: kd> nt!IoFreeDumpStack+0xd3: 805773cf 33ff xor edi,edi 0: kd> nt!IoFreeDumpStack+0xd5: 805773d1 3bc7 cmp eax,edi 0: kd> nt!IoFreeDumpStack+0xd7: 805773d3 746b je nt!IoFreeDumpStack+0x144 (80577440) 0: kd> nt!IoFreeDumpStack+0xd9: 805773d5 50 push eax 0: kd> nt!IoFreeDumpStack+0xda: 805773d6 e8f583f7ff call nt!IoGetRelatedDeviceObject (804ef7d0) 0: kd> nt!IoFreeDumpStack+0xdf: 805773db 8bd8 mov ebx,eax 0: kd> nt!IoFreeDumpStack+0xe1: 805773dd 8d45cc lea eax,[ebp-34h] 0: kd> nt!IoFreeDumpStack+0xe4: 805773e0 8945d0 mov dword ptr [ebp-30h],eax 0: kd> nt!IoFreeDumpStack+0xe7: 805773e3 8945cc mov dword ptr [ebp-34h],eax 0: kd> nt!IoFreeDumpStack+0xea: 805773e6 8d45bc lea eax,[ebp-44h] 0: kd> nt!IoFreeDumpStack+0xed: 805773e9 50 push eax 0: kd> nt!IoFreeDumpStack+0xee: 805773ea 8d45c4 lea eax,[ebp-3Ch] 0: kd> nt!IoFreeDumpStack+0xf1: 805773ed 50 push eax 0: kd> nt!IoFreeDumpStack+0xf2: 805773ee 57 push edi 0: kd> nt!IoFreeDumpStack+0xf3: 805773ef 57 push edi 0: kd> nt!IoFreeDumpStack+0xf4: 805773f0 57 push edi 0: kd> nt!IoFreeDumpStack+0xf5: 805773f1 6a28 push 28h 0: kd> nt!IoFreeDumpStack+0xf7: 805773f3 ff7678 push dword ptr [esi+78h] 0: kd> nt!IoFreeDumpStack+0xfa: 805773f6 c645c400 mov byte ptr [ebp-3Ch],0 0: kd> nt!IoFreeDumpStack+0xfe: 805773fa 53 push ebx 0: kd> nt!IoFreeDumpStack+0xff: 805773fb 6824100400 push 41024h 0: kd> nt!IoFreeDumpStack+0x104: 80577400 c645c604 mov byte ptr [ebp-3Ah],4 0: kd> nt!IoFreeDumpStack+0x108: 80577404 897dc8 mov dword ptr [ebp-38h],edi 0: kd> nt!IoFreeDumpStack+0x10b: 80577407 e8bc9ff7ff call nt!IoBuildDeviceIoControlRequest (804f13c8) 0: kd> nt!IoFreeDumpStack+0x110: 8057740c 8b4860 mov ecx,dword ptr [eax+60h] 0: kd> nt!IoFreeDumpStack+0x113: 8057740f 8b96a4000000 mov edx,dword ptr [esi+0A4h] 0: kd> nt!IoFreeDumpStack+0x119: 80577415 8951f4 mov dword ptr [ecx-0Ch],edx 0: kd> nt!IoFreeDumpStack+0x11c: 80577418 8bd0 mov edx,eax 0: kd> nt!IoFreeDumpStack+0x11e: 8057741a 8bcb mov ecx,ebx 0: kd> nt!IoFreeDumpStack+0x120: 8057741c e8e37df7ff call nt!IofCallDriver (804ef204) 0: kd> nt!IoFreeDumpStack+0x125: 80577421 3d03010000 cmp eax,103h 0: kd> nt!IoFreeDumpStack+0x12a: 80577426 750d jne nt!IoFreeDumpStack+0x139 (80577435) 0: kd> nt!IoFreeDumpStack+0x12c: 80577428 57 push edi 0: kd> nt!IoFreeDumpStack+0x12d: 80577429 57 push edi 0: kd> nt!IoFreeDumpStack+0x12e: 8057742a 57 push edi 0: kd> nt!IoFreeDumpStack+0x12f: 8057742b 57 push edi 0: kd> nt!IoFreeDumpStack+0x130: 8057742c 8d45c4 lea eax,[ebp-3Ch] 0: kd> nt!IoFreeDumpStack+0x133: 8057742f 50 push eax 0: kd> nt!IoFreeDumpStack+0x134: 80577430 e80d3bf8ff call nt!KeWaitForSingleObject (804faf42) 0: kd> nt!IoFreeDumpStack+0x139: 80577435 8b8ea4000000 mov ecx,dword ptr [esi+0A4h] 0: kd> nt!IoFreeDumpStack+0x13f: 8057743b e89ef3faff call nt!ObfDereferenceObject (805267de) 0: kd> nt!IoFreeDumpStack+0x144: 80577440 8b4650 mov eax,dword ptr [esi+50h] 0: kd> nt!IoFreeDumpStack+0x147: 80577443 3bc7 cmp eax,edi 0: kd> nt!IoFreeDumpStack+0x149: 80577445 7407 je nt!IoFreeDumpStack+0x152 (8057744e) 0: kd> nt!IoFreeDumpStack+0x14b: 80577447 57 push edi 0: kd> nt!IoFreeDumpStack+0x14c: 80577448 50 push eax 0: kd> nt!IoFreeDumpStack+0x14d: 80577449 e8923efdff call nt!ExFreePoolWithTag (8054b2e0) 0: kd> nt!IoFreeDumpStack+0x152: 8057744e 57 push edi 0: kd> nt!IoFreeDumpStack+0x153: 8057744f 56 push esi 0: kd> nt!IoFreeDumpStack+0x154: 80577450 e88b3efdff call nt!ExFreePoolWithTag (8054b2e0) 0: kd> nt!IoFreeDumpStack+0x159: 80577455 8b4dfc mov ecx,dword ptr [ebp-4] 0: kd> nt!IoFreeDumpStack+0x15c: 80577458 5f pop edi 0: kd> nt!IoFreeDumpStack+0x15d: 80577459 5e pop esi 0: kd> nt!IoFreeDumpStack+0x15e: 8057745a 5b pop ebx 0: kd> nt!IoFreeDumpStack+0x15f: 8057745b e8be74f8ff call nt!KePrepareToLoseProcessorSpecificState (804fe91e) 0: kd> nt!IoFreeDumpStack+0x164: 80577460 c9 leave 0: kd> nt!IoFreeDumpStack+0x165: 80577461 c20400 ret 4 0: kd> nt!IopFreeDCB+0x42: 8057763a 895e08 mov dword ptr [esi+8],ebx 0: kd> nt!IopFreeDCB+0x45: 8057763d 8b465c mov eax,dword ptr [esi+5Ch] 0: kd> nt!IopFreeDCB+0x48: 80577640 3bc3 cmp eax,ebx 0: kd> nt!IopFreeDCB+0x4a: 80577642 740d je nt!IopFreeDCB+0x59 (80577651) 0: kd> nt!IopFreeDCB+0x4c: 80577644 53 push ebx 0: kd> nt!IopFreeDCB+0x4d: 80577645 50 push eax 0: kd> nt!IopFreeDCB+0x4e: 80577646 e8953cfdff call nt!ExFreePoolWithTag (8054b2e0) 0: kd> nt!IopFreeDCB+0x53: 8057764b 895e5c mov dword ptr [esi+5Ch],ebx 0: kd> nt!IopFreeDCB+0x56: 8057764e 895e60 mov dword ptr [esi+60h],ebx 0: kd> nt!IopFreeDCB+0x59: 80577651 385d08 cmp byte ptr [ebp+8],bl 0: kd> nt!IopFreeDCB+0x5c: 80577654 885e01 mov byte ptr [esi+1],bl 0: kd> nt!IopFreeDCB+0x5f: 80577657 740d je nt!IopFreeDCB+0x6e (80577666) 0: kd> nt!IopFreeDCB+0x6e: 80577666 5e pop esi 0: kd> nt!IopFreeDCB+0x6f: 80577667 5b pop ebx 0: kd> nt!IopFreeDCB+0x70: 80577668 5d pop ebp 0: kd> nt!IopFreeDCB+0x71: 80577669 c20400 ret 4 0: kd> nt!IoConfigureCrashDump+0x76: 8057830c 8bce mov ecx,esi 0: kd> nt!IoConfigureCrashDump+0x78: 8057830e e81bd6fbff call nt!ExReleaseResourceLite (8053592e) 0: kd> nt!IoConfigureCrashDump+0x7d: 80578313 ff87d4000000 inc dword ptr [edi+0D4h] 0: kd> nt!IoConfigureCrashDump+0x83: 80578319 7513 jne nt!IoConfigureCrashDump+0x98 (8057832e) 0: kd> nt!IoConfigureCrashDump+0x85: 8057831b 8d4734 lea eax,[edi+34h] 0: kd> nt!IoConfigureCrashDump+0x88: 8057831e 3900 cmp dword ptr [eax],eax 0: kd> nt!IoConfigureCrashDump+0x8a: 80578320 740c je nt!IoConfigureCrashDump+0x98 (8057832e) 0: kd> nt!IoConfigureCrashDump+0x98: 8057832e 5f pop edi 0: kd> nt!IoConfigureCrashDump+0x99: 8057832f 5e pop esi 0: kd> nt!IoConfigureCrashDump+0x9a: 80578330 8bc3 mov eax,ebx 0: kd> nt!IoConfigureCrashDump+0x9c: 80578332 5b pop ebx 0: kd> nt!IoConfigureCrashDump+0x9d: 80578333 5d pop ebp 0: kd> nt!IoConfigureCrashDump+0x9e: 80578334 c20400 ret 4 0: kd> nt!PopGracefulShutdown+0xfa: 80651ae8 e80f50e9ff call nt!CcWaitForCurrentLazyWriterActivity (804e6afc) 0: kd> Process.Thread : 000000B8.000000BC (csrss.exe) is trying to create key: ObjectAttributes = BA21790C The caller should not rely on data written to the registry after shutdown... *** Fatal System Error: 0x000000b4 (0x89E7ED00,0x89D21000,0x89F72000,0x00050000) WARNING: This break is not a step/trace completion. The last command has been cleared to prevent accidental continuation of this unrelated event. Check the event, location and thread before resuming. Break instruction exception - code 80000003 (first chance) A fatal system error has occurred. Debugger entered on first try; Bugcheck callbacks have not been invoked. A fatal system error has occurred. Connected to Windows XP 2600 x86 compatible target at (Thu Aug 1 12:55:57.346 2024 (UTC + 2:00)), ptr64 FALSE Loading Kernel Symbols .......................................................... Loading User Symbols ............. ******************************************************************************* * * * Bugcheck Analysis * * * ******************************************************************************* Use !analyze -v to get detailed debugging information. BugCheck B4, {89e7ed00, 89d21000, 89f72000, 50000} *** ERROR: Symbol file could not be found. Defaulted to export symbols for halmacpi.dll - Probably caused by : win32k.sys ( win32k!DrvDriverFailure+1af ) Followup: MachineOwner --------- nt!RtlpBreakWithStatusInstruction: 8052b724 cc int 3 4: kd> !analyze -v ******************************************************************************* * * * Bugcheck Analysis * * * ******************************************************************************* VIDEO_DRIVER_INIT_FAILURE (b4) The system was not able to go into graphics mode because no display drivers were able to start. This usually occurs if no video miniport drivers load successfully. Arguments: Arg1: 89e7ed00, Driver failure data. Arg2: 89d21000, Graphics device list. Arg3: 89f72000, Graphics device list data. Arg4: 00050000, Possible cause of the bugcheck. Debugging Details: ------------------ DEFAULT_BUCKET_ID: DRIVER_FAULT BUGCHECK_STR: 0xB4 PROCESS_NAME: csrss.exe ANALYSIS_VERSION: 6.3.9600.17237 (debuggers(dbg).140716-0327) x86fre LAST_CONTROL_TRANSFER: from 804f8e95 to 8052b724 STACK_TEXT: ba2177dc 804f8e95 00000003 ba217b38 00000000 nt!RtlpBreakWithStatusInstruction ba217828 804f9a80 00000003 ba217d24 bbdd15dc nt!KiBugCheckDebugBreak+0x19 ba217c08 804f9fcf 000000b4 89e7ed00 89d21000 nt!KeBugCheck2+0x574 ba217c28 bf91cfa7 000000b4 89e7ed00 89d21000 nt!KeBugCheckEx+0x1b ba217d30 ba217d64 0015fd98 bf8ab5af 00000001 win32k!DrvDriverFailure+0x1af WARNING: Frame IP not in any known module. Following frames may be wrong. ba217d48 bf8ab620 ba217d64 80541818 00050000 0xba217d64 ba217d50 80541818 00050000 00000060 00000064 win32k!NtUserInitialize+0x87 ba217d50 7eb3e514 00050000 00000060 00000064 nt!KiSystemServicePostCall 0015fd80 75b686df 75b68669 00050000 00000060 ntdll!KiFastSystemCallRet 0015fdb0 75b43472 00000000 00000000 0016274d winsrv!NtUserInitialize+0xc 0015fe20 75b4301b 0016272a 00162731 00000003 CSRSRV!CsrLoadServerDll+0x1a0 0015ff74 75b430f3 0000000a 001624f0 7eb3dc9e CSRSRV!CsrParseServerCommandLine+0x2d6 0015ff88 4a68115d 0000000a 001624f0 00000005 CSRSRV!CsrServerInitialization+0x95 0015ffa8 4a6818d7 0000000a 001624f0 0016251c csrss!main+0x4f 0015fff4 00000000 7ffd7000 000000c8 00000112 csrss!NtProcessStartup+0x1d2 STACK_COMMAND: kb FOLLOWUP_IP: win32k!DrvDriverFailure+1af bf91cfa7 90 nop SYMBOL_STACK_INDEX: 4 SYMBOL_NAME: win32k!DrvDriverFailure+1af FOLLOWUP_NAME: MachineOwner MODULE_NAME: win32k IMAGE_NAME: win32k.sys DEBUG_FLR_IMAGE_TIMESTAMP: 5c93004e IMAGE_VERSION: 5.1.2600.7684 FAILURE_BUCKET_ID: 0xB4_win32k!DrvDriverFailure+1af BUCKET_ID: 0xB4_win32k!DrvDriverFailure+1af ANALYSIS_SOURCE: KM FAILURE_ID_HASH_STRING: km:0xb4_win32k!drvdriverfailure+1af FAILURE_ID_HASH: {28d7d534-884c-fc26-c175-02817df2d217} Followup: MachineOwner --------- 4: kd> !devnode 0 1 Dumping IopRootDeviceNode (= 0x8a09cc28) DevNode 0x8a09cc28 for PDO 0x8a055200 InstancePath is "HTREE\ROOT\0" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a054008 for PDO 0x8a09c8b8 InstancePath is "Root\ACPI_HAL\0000" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a0965d0 for PDO 0x8a0508a0 InstancePath is "ACPI_HAL\PNP0C08\0" ServiceName is "ACPI" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89ef8540 for PDO 0x89ef7950 InstancePath is "ACPI\PNP0A08\0" ServiceName is "pci" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a04fd28 for PDO 0x89f8c9f0 InstancePath is "PCI\VEN_8086&DEV_1910&SUBSYS_00000000&REV_07\3&11583659&0&00" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a04fc08 for PDO 0x89f8c810 InstancePath is "PCI\VEN_8086&DEV_1901&SUBSYS_00000000&REV_07\3&11583659&0&08" ServiceName is "pci" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89eb1ca0 for PDO 0x89eb1030 InstancePath is "PCI\VEN_10DE&DEV_139B&SUBSYS_8257103C&REV_A2\4&17bc2637&0&0008" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a04fae8 for PDO 0x8a07fae0 InstancePath is "PCI\VEN_8086&DEV_191B&SUBSYS_8257103C&REV_06\3&11583659&0&10" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a04f9c8 for PDO 0x8a07f7a8 InstancePath is "PCI\VEN_8086&DEV_1903&SUBSYS_8257103C&REV_07\3&11583659&0&20" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a04f8a8 for PDO 0x8a096e50 InstancePath is "PCI\VEN_8086&DEV_A12F&SUBSYS_8257103C&REV_31\3&11583659&0&A0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a04f788 for PDO 0x8a096b18 InstancePath is "PCI\VEN_8086&DEV_A131&SUBSYS_8257103C&REV_31\3&11583659&0&A2" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a04f668 for PDO 0x8a09c030 InstancePath is "PCI\VEN_8086&DEV_A13A&SUBSYS_8257103C&REV_31\3&11583659&0&B0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a04f548 for PDO 0x8a09c4e0 InstancePath is "PCI\VEN_8086&DEV_A103&SUBSYS_8257103C&REV_31\3&11583659&0&B8" ServiceName is "storahci" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89cf0db8 for PDO 0x89cedc78 InstancePath is "SCSI\Disk&Ven_Samsung&Prod_SSD_750_EVO_250G\4&328af09&0&010000" ServiceName is "disk" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a04f428 for PDO 0x89c89030 InstancePath is "PCI\VEN_8086&DEV_A114&SUBSYS_00000000&REV_F1\3&11583659&0&E0" ServiceName is "pci" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89d1c930 for PDO 0x89d1cce8 InstancePath is "PCI\VEN_10EC&DEV_522A&SUBSYS_8257103C&REV_01\4&18e629d4&0&00E0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89f8bee8 for PDO 0x89c89670 InstancePath is "PCI\VEN_8086&DEV_A115&SUBSYS_00000000&REV_F1\3&11583659&0&E5" ServiceName is "pci" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89cf16f0 for PDO 0x89cf1aa8 InstancePath is "PCI\VEN_8086&DEV_095A&SUBSYS_50108086&REV_61\4&12c2d9ee&0&00E5" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89f8bdc8 for PDO 0x89c89338 InstancePath is "PCI\VEN_8086&DEV_A116&SUBSYS_00000000&REV_F1\3&11583659&0&E6" ServiceName is "pci" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89ef5d68 for PDO 0x89ce44f8 InstancePath is "PCI\VEN_DEAD&DEV_BEEF&SUBSYS_8257103C&REV_15\4&2ac6e85&0&00E6" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89f8bca8 for PDO 0x89ee2cf8 InstancePath is "PCI\VEN_8086&DEV_A14E&SUBSYS_00000000&REV_31\3&11583659&0&F8" ServiceName is "isapnp" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a080970 for PDO 0x8a081660 InstancePath is "ISAPNP\ReadDataPort\0" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a080850 for PDO 0x8a081548 InstancePath is "ACPI\PNP0C09\1" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a080730 for PDO 0x8a081430 InstancePath is "ACPI\INT0800\4&1a916ec&0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a080610 for PDO 0x8a081318 InstancePath is "ACPI\PNP0103\0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a0804f0 for PDO 0x8a081200 InstancePath is "ACPI\PNP0000\4&1a916ec&0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a0803d0 for PDO 0x8a0810e8 InstancePath is "ACPI\PNP0C04\4&1a916ec&0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a0802b0 for PDO 0x8a080030 InstancePath is "ACPI\PNP0C02\2" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a080190 for PDO 0x8a080f18 InstancePath is "ACPI\PNP0C02\LPC_DEV" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a03d008 for PDO 0x8a080e00 InstancePath is "ACPI\PNP0B00\4&1a916ec&0" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a03dee8 for PDO 0x8a080ce8 InstancePath is "ACPI\PNP0100\4&1a916ec&0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a03ddc8 for PDO 0x8a080bd0 InstancePath is "ACPI\HPQ8001\4&1a916ec&0" ServiceName is "i8042prt" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89f35bf8 for PDO 0x89cdfbb0 InstancePath is "{A87C2E0F-9A46-46b8-8EC4-E33355FBE1F7}\KeyboardFilter\5&320f845b&0&01" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a03dca8 for PDO 0x8a080ab8 InstancePath is "ACPI\SYN3239\4&1a916ec&0" ServiceName is "i8042prt" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89f8bb88 for PDO 0x89ee2b18 InstancePath is "PCI\VEN_8086&DEV_A121&SUBSYS_8257103C&REV_31\3&11583659&0&FA" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89f8ba68 for PDO 0x89ee27e0 InstancePath is "PCI\VEN_8086&DEV_A170&SUBSYS_8257103C&REV_31\3&11583659&0&FB" ServiceName is "HDAudBus" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89c7fa70 for PDO 0x89c76948 InstancePath is "HDAUDIO\FUNC_01&VEN_10EC&DEV_0295&SUBSYS_103C8257&REV_1000\4&14ded9b8&0&0001" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89c7f950 for PDO 0x89c81990 InstancePath is "HDAUDIO\FUNC_01&VEN_8086&DEV_2809&SUBSYS_80860101&REV_1000\4&14ded9b8&0&0201" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89f8b948 for PDO 0x89fbdcf8 InstancePath is "PCI\VEN_8086&DEV_A123&SUBSYS_8257103C&REV_31\3&11583659&0&FC" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89f8b828 for PDO 0x89fce1a8 InstancePath is "ACPI\HPQ6007\3&11583659&0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89f8b708 for PDO 0x89c89220 InstancePath is "ACPI\HPQ6001\3&11583659&0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89f8b5e8 for PDO 0x89fbda88 InstancePath is "ACPI\PNP0C02\PCHRESV" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89f8b4c8 for PDO 0x89fbd970 InstancePath is "ACPI\PNP0C02\IoTraps" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ef6ee8 for PDO 0x89fbd858 InstancePath is "ACPI\PNP0C02\5" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ef6dc8 for PDO 0x89c7df18 InstancePath is "ACPI\PNP0C02\1" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ef6ca8 for PDO 0x89c7de00 InstancePath is "ACPI\PNP0C14\MXM2" ServiceName is "WmiAcpi" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89ef8420 for PDO 0x89ef60e0 InstancePath is "ACPI\PNP0C0A\1" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ef8300 for PDO 0x8a055520 InstancePath is "ACPI\ACPI0003\2&daba3ff&0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ef81e0 for PDO 0x89fe0f18 InstancePath is "ACPI\PNP0C0D\2&daba3ff&0" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89c68b10 for PDO 0x89fe0e00 InstancePath is "ACPI\PNP0C0C\2&daba3ff&0" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89c689f0 for PDO 0x89fce5e0 InstancePath is "ACPI\GenuineIntel_-_x86_Family_6_Model_94\_0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89c688d0 for PDO 0x89fce4c8 InstancePath is "ACPI\GenuineIntel_-_x86_Family_6_Model_94\_1" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89c687b0 for PDO 0x89fce3b0 InstancePath is "ACPI\GenuineIntel_-_x86_Family_6_Model_94\_2" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ee2008 for PDO 0x89c89f18 InstancePath is "ACPI\GenuineIntel_-_x86_Family_6_Model_94\_3" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ee23e0 for PDO 0x89c89e00 InstancePath is "ACPI\GenuineIntel_-_x86_Family_6_Model_94\_4" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ee22c0 for PDO 0x89c89ce8 InstancePath is "ACPI\GenuineIntel_-_x86_Family_6_Model_94\_5" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ee21a0 for PDO 0x8a09ee70 InstancePath is "ACPI\GenuineIntel_-_x86_Family_6_Model_94\_6" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89fbd508 for PDO 0x8a09ed58 InstancePath is "ACPI\GenuineIntel_-_x86_Family_6_Model_94\_7" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89fbd3e8 for PDO 0x8a09ec40 InstancePath is "ACPI\ThermalZone\TZ01" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89fbd2c8 for PDO 0x8a09eb28 InstancePath is "ACPI\INT33A1\1" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89fbd1a8 for PDO 0x89f8cf18 InstancePath is "ACPI\FixedButton\2&daba3ff&0" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89ef7ee8 for PDO 0x89f8ce00 InstancePath is "ACPI\PNP0C14\0" ServiceName is "WmiAcpi" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89ef7dc8 for PDO 0x89f8cce8 InstancePath is "ACPI\INT3400\2&daba3ff&0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x89ef7ca8 for PDO 0x89f8cbd0 InstancePath is "ACPI\INT340E\2&daba3ff&0" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) Problem = CM_PROB_NOT_CONFIGURED DevNode 0x8a054d48 for PDO 0x8a054e90 InstancePath is "Root\dmio\0000" ServiceName is "dmio" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a054b08 for PDO 0x8a054c50 InstancePath is "Root\ftdisk\0000" ServiceName is "ftdisk" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x89ef69c0 for PDO 0x89cf1518 InstancePath is "STORAGE\Volume\1&30a96598&0&Signature7C7C599COffset100000Length3A37FD8000" TargetDeviceNotify List - f 0xe1020dc8 b 0xe1020dc8 State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a0548c8 for PDO 0x8a054a10 InstancePath is "Root\LEGACY_AFD\0000" ServiceName is "AFD" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a054610 for PDO 0x8a054758 InstancePath is "Root\LEGACY_BEEP\0000" ServiceName is "Beep" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a0542a8 for PDO 0x8a0543f0 InstancePath is "Root\LEGACY_DMBOOT\0000" ServiceName is "dmboot" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09b008 for PDO 0x8a0541b0 InstancePath is "Root\LEGACY_DMLOAD\0000" ServiceName is "dmload" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09bdc8 for PDO 0x8a09bf10 InstancePath is "Root\LEGACY_FIPS\0000" ServiceName is "Fips" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09bb88 for PDO 0x8a09bcd0 InstancePath is "Root\LEGACY_GPC\0000" ServiceName is "Gpc" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09b948 for PDO 0x8a09ba90 InstancePath is "Root\LEGACY_HTTP\0000" ServiceName is "HTTP" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09b708 for PDO 0x8a09b850 InstancePath is "Root\LEGACY_IPNAT\0000" ServiceName is "IpNat" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09b4c8 for PDO 0x8a09b610 InstancePath is "Root\LEGACY_IPSEC\0000" ServiceName is "IPSec" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09b288 for PDO 0x8a09b3d0 InstancePath is "Root\LEGACY_KSECDD\0000" ServiceName is "ksecdd" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a053008 for PDO 0x8a09b190 InstancePath is "Root\LEGACY_MOUNTMGR\0000" ServiceName is "mountmgr" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a053dc8 for PDO 0x8a053f10 InstancePath is "Root\LEGACY_NDIS\0000" ServiceName is "NDIS" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a053b88 for PDO 0x8a053cd0 InstancePath is "Root\LEGACY_NDISTAPI\0000" ServiceName is "NdisTapi" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a053948 for PDO 0x8a053a90 InstancePath is "Root\LEGACY_NDISUIO\0000" ServiceName is "Ndisuio" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a053708 for PDO 0x8a053850 InstancePath is "Root\LEGACY_NDPROXY\0000" ServiceName is "NDProxy" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a0534c8 for PDO 0x8a053610 InstancePath is "Root\LEGACY_NETBT\0000" ServiceName is "NetBT" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a053288 for PDO 0x8a0533d0 InstancePath is "Root\LEGACY_NULL\0000" ServiceName is "Null" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09a008 for PDO 0x8a053190 InstancePath is "Root\LEGACY_PARVDM\0000" ServiceName is "ParVdm" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09adc8 for PDO 0x8a09af10 InstancePath is "Root\LEGACY_RASACD\0000" ServiceName is "RasAcd" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09ab88 for PDO 0x8a09acd0 InstancePath is "Root\LEGACY_RDPCDD\0000" ServiceName is "RDPCDD" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09a948 for PDO 0x8a09aa90 InstancePath is "Root\LEGACY_RDPWD\0000" ServiceName is "RDPWD" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09a708 for PDO 0x8a09a850 InstancePath is "Root\LEGACY_RSPNDR\0000" ServiceName is "rspndr" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09a4c8 for PDO 0x8a09a610 InstancePath is "Root\LEGACY_SERIAL\0000" ServiceName is "Serial" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a09a288 for PDO 0x8a09a3d0 InstancePath is "Root\LEGACY_TCPIP\0000" ServiceName is "Tcpip" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a052008 for PDO 0x8a09a190 InstancePath is "Root\LEGACY_TDTCP\0000" ServiceName is "TDTCP" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a052dc8 for PDO 0x8a052f10 InstancePath is "Root\LEGACY_UCX01000\0000" ServiceName is "ucx01000" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a052b88 for PDO 0x8a052cd0 InstancePath is "Root\LEGACY_USBSTOR\0000" ServiceName is "usbstor" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a052948 for PDO 0x8a052a90 InstancePath is "Root\LEGACY_VGASAVE\0000" ServiceName is "VgaSave" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a052708 for PDO 0x8a052850 InstancePath is "Root\LEGACY_VOLSNAP\0000" ServiceName is "VolSnap" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a0524c8 for PDO 0x8a052610 InstancePath is "Root\LEGACY_WANARP\0000" ServiceName is "Wanarp" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a052288 for PDO 0x8a0523d0 InstancePath is "Root\LEGACY_WDF01000\0000" ServiceName is "wdf01000" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a099008 for PDO 0x8a052190 InstancePath is "Root\MEDIA\MS_MMACM" ServiceName is "audstub" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a099dc8 for PDO 0x8a099f10 InstancePath is "Root\MEDIA\MS_MMDRV" ServiceName is "audstub" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a099b88 for PDO 0x8a099cd0 InstancePath is "Root\MEDIA\MS_MMMCI" ServiceName is "audstub" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a099948 for PDO 0x8a099a90 InstancePath is "Root\MEDIA\MS_MMVCD" ServiceName is "audstub" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a099708 for PDO 0x8a099850 InstancePath is "Root\MEDIA\MS_MMVID" ServiceName is "audstub" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a0994c8 for PDO 0x8a099610 InstancePath is "Root\MS_L2TPMINIPORT\0000" ServiceName is "Rasl2tp" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a099288 for PDO 0x8a0993d0 InstancePath is "Root\MS_NDISWANIP\0000" ServiceName is "NdisWan" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a051008 for PDO 0x8a099190 InstancePath is "Root\MS_PPPOEMINIPORT\0000" ServiceName is "RasPppoe" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a051dc8 for PDO 0x8a051f10 InstancePath is "Root\MS_PPTPMINIPORT\0000" ServiceName is "PptpMiniport" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a051b88 for PDO 0x8a051cd0 InstancePath is "Root\MS_PSCHEDMP\0000" ServiceName is "PSched" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a051948 for PDO 0x8a051a90 InstancePath is "Root\MS_PSCHEDMP\0001" ServiceName is "PSched" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a051708 for PDO 0x8a051850 InstancePath is "Root\MS_PTIMINIPORT\0000" ServiceName is "Raspti" State = DeviceNodeInitialized (0x302) Previous State = DeviceNodeUninitialized (0x301) DevNode 0x8a0514c8 for PDO 0x8a051610 InstancePath is "Root\RDPDR\0000" ServiceName is "rdpdr" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a051288 for PDO 0x8a0513d0 InstancePath is "Root\RDP_KBD\0000" ServiceName is "TermDD" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a098008 for PDO 0x8a051190 InstancePath is "Root\RDP_MOU\0000" ServiceName is "TermDD" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a098dc8 for PDO 0x8a098f10 InstancePath is "Root\SYSTEM\0000" ServiceName is "swenum" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a098b88 for PDO 0x8a098cd0 InstancePath is "Root\SYSTEM\0001" ServiceName is "update" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d) DevNode 0x8a098948 for PDO 0x8a098a90 InstancePath is "Root\SYSTEM\0002" ServiceName is "mssmbios" State = DeviceNodeStarted (0x308) Previous State = DeviceNodeEnumerateCompletion (0x30d)
-
@reboot12 Bug Check 0x000000B4: VIDEO_DRIVER_INIT_FAILURE VIDEO_DRIVER_INIT_FAILURE Parameters The VIDEO_DRIVER_INIT_FAILURE bug check has a value of 0x000000B4. This indicates that Windows was unable to enter graphics mode. The system was not able to go into graphics mode because no display drivers were able to start. This usually occurs when no video miniport drivers are able to load successfully. 0x000000B4 (0x89CD7C08,0x89ECB000,0x89D04000,0x00050000) Arguments: Arg1: 89CD7C08, Driver failure data. Arg2: 89ECB000, Graphics device list. Arg3: 89D04000, Graphics device list data. Arg4: 00050000, Possible cause of the bugcheck. This bsod is nearly identic with that for the HP 255 g6, which I solve in winter 2023/24. But there was the reason for the vga driver, with impossible screen resolutions for XP. Here it is other. No driver at all, even no vga, and so not possible to start XP without any acpi via "Standard PC" Dietmar