[Solved] Windows 11 now hibernates with an update

Discussion in 'Windows 11' started by ABM, May 10, 2023.

  1. ABM

    ABM MDL Junior Member

    Mar 16, 2010
    97
    29
    0
    I am not a big fan of sleep/hibernation...How do I disable it?

    Edition Windows 11 Pro
    Version 22H2
    Installed on ‎1/‎13/‎2023
    OS build 22621.1702
    Experience Windows Feature Experience Pack 1000.22641.1000.0

    Alan
     
  2. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,162
    5,977
    150
    Hibernate.
    Code:
    powercfg.exe /hibernate off
    
    remove sleep option
    Code:
    REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FlyoutMenuSettings" /f /v ShowSleepOption /t REG_DWORD /d 0
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,162
    5,977
    150
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,162
    5,977
    150
    Another option to get rid of any sleep function.
    powercfg /GETACTIVESCHEME --> GUID as output
    so is the same method as group policy.
    Code:
    powercfg /setdcvalueindex !Guid! SUB_VIDEO 3c0bc021-c8a8-4e07-a973-6b14cbcb2b7e 0
    powercfg /setacvalueindex !Guid! SUB_VIDEO 3c0bc021-c8a8-4e07-a973-6b14cbcb2b7e 0
    powercfg /setdcvalueindex !Guid! SUB_SLEEP 29f6c1db-86da-48c5-9fdb-f2b67b1f44da 0
    powercfg /setacvalueindex !Guid! SUB_SLEEP 29f6c1db-86da-48c5-9fdb-f2b67b1f44da 0
    powercfg /setdcvalueindex !Guid! SUB_BUTTONS 99ff10e7-23b1-4c07-a9d1-5c3206d741b4 0
    powercfg /setacvalueindex !Guid! SUB_BUTTONS 99ff10e7-23b1-4c07-a9d1-5c3206d741b4 0
    powercfg /setdcvalueindex !Guid! SUB_BUTTONS 5ca83367-6e45-459f-a27b-476b1d01c936 0
    powercfg /setacvalueindex !Guid! SUB_BUTTONS 5ca83367-6e45-459f-a27b-476b1d01c936 0
    powercfg /setdcvalueindex !Guid! SUB_BUTTONS 7648efa3-dd9c-4e3e-b566-50f929386280 3
    powercfg /setacvalueindex !Guid! SUB_BUTTONS 7648efa3-dd9c-4e3e-b566-50f929386280 3
    powercfg /setdcvalueindex !Guid! SUB_BUTTONS 833a6b62-dfa4-46d1-82f8-e09e34d029d6 0
    powercfg /setacvalueindex !Guid! SUB_BUTTONS 833a6b62-dfa4-46d1-82f8-e09e34d029d6 0
    powercfg /setdcvalueindex !Guid! SUB_BUTTONS 96996bc0-ad50-47ec-923b-6f41874dd9eb 0
    powercfg /setacvalueindex !Guid! SUB_BUTTONS 96996bc0-ad50-47ec-923b-6f41874dd9eb 0
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. ABM

    ABM MDL Junior Member

    Mar 16, 2010
    97
    29
    0
    Than You very much!!

    Alan
     
  6. ABM

    ABM MDL Junior Member

    Mar 16, 2010
    97
    29
    0
    #6 ABM, May 11, 2023
    Last edited: May 11, 2023
    (OP)
    All Good now!! TY Dark Dinasaur