Windows 10: Kernell Power Even ID 41 Category 63

Discus and support Kernell Power Even ID 41 Category 63 in Windows 10 BSOD Crashes and Debugging to solve the problem; I'm no expert, you better ask it in another part of the forum, only thing I could suggest is to use a different port. Yeah I've tried to swap ports... Discussion in 'Windows 10 BSOD Crashes and Debugging' started by Buzzik, Jan 20, 2016.

  1. Buzzik Win User

    Kernell Power Even ID 41 Category 63


    Yeah I've tried to swap ports and even cables, same thing
    Standart, High, and Very High
     
    Buzzik, Feb 4, 2016
    #31
  2. axe0 New Member

    Good *Smile

    Let me know if you encounter another bluescreen.
     
  3. Buzzik Win User
    Thank you for your time and effort... so no more Kaspersky Internet Security for me?*Huh
     
    Buzzik, Feb 5, 2016
    #33
  4. axe0 New Member

    Kernell Power Even ID 41 Category 63

    Until your system is garanteed stable again no Kaspersky.

    If you want Kaspersky again I would suggest to install it again and forward the memory.dmp file which is the kernel dump (the dump that contains all relevant data for debugging the crash completely) and other data they would need so they can fix the problem.
    This is however risky, it doesn't always turn out that if you reproduce the problem the system returns to a stable position when removing the cause.
     
  5. Buzzik Win User
    Okay, just got the same random BSOD =(.... without Kaspersky on my PC
     
    Buzzik, Feb 23, 2016
    #35
  6. axe0 New Member
    There are some things that should be done, like updating the BIOS, but it isn't possible because your motherboard supports driver updates till windows 7.

    Keep me posted on the situation, besides of updating drivers for the mouse and keyboard there is not much that can be done currently.
     
  7. Buzzik Win User
    Aaaaand.... "another one"*Sleepy

    Keyboard and Mouse drivers were installed by Windows, I guess. I wasn't installing any drivers since windows install.
     
    Buzzik, Mar 4, 2016
    #37
  8. axe0 New Member

    Kernell Power Even ID 41 Category 63

    Since I have no info about the crashes, I can't anticipate on it and provide better suggestions:




    Kernell Power Even ID 41 Category 63 [​IMG]
    Diagnostics Test
    Kernell Power Even ID 41 Category 63 [​IMG]
    Clean boot
    Please try the following:
    • Open taskmanager
      • Go to the tab startup
      • disable everything
    • Search msconfig and open it
      • Go to the tab services
      • Check 'hide microsoft services'
      • Uncheck all other services
      • Click apply and click ok
    • Reboot if asked
    See if the problem persist, if the problem does not persist enable in the startup tab in taskmanager 1 item and in the services tab in msconfig also 1 service, reboot and see if the problem persist. Keep doing this until you find the culprit or there is nothing left.
    If the problem still persist, try booting in safe mode and see if the problem still persist
     
  9. Buzzik Win User
    Okay... a little update on this issue. I think I figure it out. Joking *Tongue... All the credits to MR. Unbootable whoever that is.
    In Device Manager I unchecked "Allowed the computer to turn off this device to save power" for Network Adapters, Mouse, and Keyboard under Power Management tab. Now when I send my PC to sleep mode it goes to sleep next second instead of 20 to 60 seconds(like it was before), it goes back up in a second(power button) like it supposed to be. I read on the internet about it, some people say Microsoft f...up Power Saving code for Desktop and Laptop, this is why when power saving is allowed on those devices your PC will randomly produce BSOD and restart itself.

    There is also 2 .bat files you might need to create and run:
    source:
    No kp41

    How to avoid Kernel Power id 41 problem

    by Unbootable from 2012/09/09
    This is my heuristic solution for the kp41 in Windows 7.
    After 7 months study, now I've found its mastermind.

    My environment:

    HW = DELL vostro 230s (Slim Tower Desktop), Intel(R) Celeron(R) CPU E3400 @ 2.60GHz [dual cpu], memory 2GB, internal hdd 250GB × 2devices
    (Motherboard: made in Dell Inc. , BIOS: made in Dell Inc. , Graphics card: None)
    OS = Windows 7 Professional (32 bit), SP1

    My hypothesis:

    The sleep and hibernate issues are the same origin as the kp41 issue.
    --- Noise sensibility problem? (OS coding miss)



    • Indispensable Settings:

    1. - Changing Device Manager settings -

    Network Adapters, Keyboard, Mice and other pointing devices,
    For each device,
    Click the Power Management tab,
    and remove the check next to "Allow this device to wake the computer" option.
    ( --- includes "WOL [Wake On LAN] inhibit" )

    i.e.
    ☑ Allow this device to wake the computer
    ⇓ force to change
    ☐ Allow this device to wake the computer


    2. - Changing Power Option settings -

    2.1 Never sleep/ stop

    Control Panel, System and Security, and then click Power Options,
    |--- Open "Sleep" item, then, set the distance of time into the sleeping. (i.e. "Never sleep")

    "Sleep after" ⇒ Never (or, Set 0 [ = ∞] Minutes )

    "Hibernate after" ⇒ Never (or, Set 0 [ = ∞] Minutes )

    |--- Open "Hard disk" item, then, set "Never stop".

    "Turn off hard disk after" ⇒ Never (or, Set 0 [ = ∞] Minutes )


    2.2 Untouchable battery

    Desktop, please not to touch the battery options for note-PC.
    Set disable all battery options by using POWERCFG DOS command.

    Please execute the next 2 batch jobs q.bat and Battery.bat.
    (Copy&Paste next each text image to the Notepad, and save them as "q.bat" and "Battery.bat" under your temporary folder. q.bat generates the verification file named q.txt. Battery.bat also Battery.txt)

    - Active Plan watching - batch job:
    Rem // This is q.bat
    powercfg -L > q.txt
    echo ================== >>q.txt
    powercfg -q >> q.txt
    pause


    - Active Plan, Battery part changing - batch job:
    (--- Set, Action = "Do Nothing", threshold level = "0%" [ here, 0% intends that anytime is in safety-level.] )
    Rem // This is Battery.bat

    powercfg -q SCHEME_CURRENT SUB_BATTERY >Battery.txt
    rem before image
    echo ------------ >>Battery.txt

    POWERCFG -SetAcValueIndex SCHEME_CURRENT SUB_BATTERY BATACTIONCRIT 0
    POWERCFG -SetDcValueIndex SCHEME_CURRENT SUB_BATTERY BATACTIONCRIT 0
    rem in critcal, DC Do nothing
    POWERCFG -SetAcValueIndex SCHEME_CURRENT SUB_BATTERY BATLEVELLOW 0
    POWERCFG -SetDcValueIndex SCHEME_CURRENT SUB_BATTERY BATLEVELLOW 0
    POWERCFG -SetAcValueIndex SCHEME_CURRENT SUB_BATTERY BATLEVELCRIT 0
    POWERCFG -SetDcValueIndex SCHEME_CURRENT SUB_BATTERY BATLEVELCRIT 0
    POWERCFG -SetAcValueIndex SCHEME_CURRENT SUB_BATTERY bcded951-187b-4d05-bccc-f7e51960c258 0
    POWERCFG -SetDcValueIndex SCHEME_CURRENT SUB_BATTERY bcded951-187b-4d05-bccc-f7e51960c258 0
    POWERCFG -SetAcValueIndex SCHEME_CURRENT SUB_BATTERY BATACTIONLOW 0
    POWERCFG -SetDcValueIndex SCHEME_CURRENT SUB_BATTERY BATACTIONLOW 0
    POWERCFG -SetAcValueIndex SCHEME_CURRENT SUB_BATTERY f3c5027d-cd16-4930-aa6b-90db844a8f00 0
    POWERCFG -SetDcValueIndex SCHEME_CURRENT SUB_BATTERY f3c5027d-cd16-4930-aa6b-90db844a8f00 0

    powercfg -q SCHEME_CURRENT SUB_BATTERY >>Battery.txt
    rem after image
    pause

    Story: Win7 Desktop logic sometimes checks the Battery Level status, and falls in a shutdown maze.
    ---- Is it true? (--- Windows 7's behavior is very odd.)




    【 Here, Effectivity percentage: 1 = 45%, 2.1 = 5%, 2.2 = 50% (Not Evaluated)
    or
    May be "2.2 = 100%" --- please evaluate! 】

    Precise evaluation result: 1 and 2.2 are needed. And, 2.1 is no need.



    Comment related 2.2 :

    - When the threshold level = "100%" were specified, kp41 happened easily.
    Repeatability --- Yes.
    My PC is Desktop (i.e. not Notebook, No battery. ).

    What means this fact?
    My answer: (I hate to say) There are bugs in Battery management. The distinguish of Desktop and Notebook is confused.

    --- It looks as if Desktop runs on the coding part for Notebook.




    cf. Parent page1, Parent page2 (written in Japanese. If you are polyglot, please read.)
    cf. Resolving Problems with Sleep and Hibernate Modes (Windows 7) (© HP Customer Care )
    cf. Windows 7 - Power Plan Settings - Change (© Windows 7 Forums)
    cf. Powercfg Command-Line Options
    powercfg -setacvalueindex Scheme_GUID Sub_GUID Setting_GUID SettingIndex

    [ Sets a value associated with a specified power setting while the computer is powered by AC power.]
    [ -setdcvalueindex ---- for DC power]
     
    Buzzik, Apr 5, 2018
    #39
Thema:

Kernell Power Even ID 41 Category 63

Loading...
  1. Kernell Power Even ID 41 Category 63 - Similar Threads - Kernell Power Category

  2. kernel-power id:41 category 63

    in Windows 10 Gaming
    kernel-power id:41 category 63: I have been having an unstable PC for a while now. Today I replaced my SSD and HDD. So I did a fresh windows installation, and now have a completely clean PC. After I downloaded games like farming simulator 25 and Counter Strike 2, and started them up, my PC froze and I got...
  3. kernel-power id:41 category 63

    in Windows 10 Software and Apps
    kernel-power id:41 category 63: I have been having an unstable PC for a while now. Today I replaced my SSD and HDD. So I did a fresh windows installation, and now have a completely clean PC. After I downloaded games like farming simulator 25 and Counter Strike 2, and started them up, my PC froze and I got...
  4. Kernel power 41 category 63

    in Windows 10 Gaming
    Kernel power 41 category 63: My PC crashes when I open games that require something from my PC an example being rust, but when I play league of legends there are 0 crashes. I have been trying to find an answer but found nothing concrete that helped, the PC is also getting quite old. The problem started...
  5. Kernel power 41 category 63

    in Windows 10 Software and Apps
    Kernel power 41 category 63: My PC crashes when I open games that require something from my PC an example being rust, but when I play league of legends there are 0 crashes. I have been trying to find an answer but found nothing concrete that helped, the PC is also getting quite old. The problem started...
  6. Kernel power 41 category 63

    in Windows 10 BSOD Crashes and Debugging
    Kernel power 41 category 63: My PC crashes when I open games that require something from my PC an example being rust, but when I play league of legends there are 0 crashes. I have been trying to find an answer but found nothing concrete that helped, the PC is also getting quite old. The problem started...
  7. Kernel-Power, Event ID 41, Task Category: 63

    in Windows 10 Gaming
    Kernel-Power, Event ID 41, Task Category: 63: Hello I have been having this critical error for over the past few months and it only happens when I am playing graphic intensive games such as the new MW2 2022. If I am playing a less intensive game then it will take longer until it crashes with this error message. But when...
  8. Kernel-Power, Event ID 41, Task Category: 63

    in Windows 10 BSOD Crashes and Debugging
    Kernel-Power, Event ID 41, Task Category: 63: Hi there... For a long time, I having this repeated critical error for at least a year, where my laptop would forcibly shutdown randomly without any trigger causing it. Prior shutdown, it came with a bluescreen that telling me, 'Your PC ran into a problem and needs to...
  9. Kernel-Power, Event ID 41, Task Category: 63

    in Windows 10 Software and Apps
    Kernel-Power, Event ID 41, Task Category: 63: Hello, I have been having this Critical error since a while ago, and I have no clue what is causing it. The first time I realized the problem, the computer just turned off after I closed the lid, and it turned on on its own, now it has become a more frequent issue. Nothing of...
  10. Kernel-Power, Event ID 41, Task Category: 63

    in Windows 10 Software and Apps
    Kernel-Power, Event ID 41, Task Category: 63: I have the same problem written in this post.https://answers.microsoft.com/en-us/windows/forum/all/kernel-power-event-id-41-task-category-63/2f4b467d-38bc-40a9-86f7-334559cc1f6e?page=1This "unexpected restart" stopped by changing sound device from Microsoft HD audio driver to...