Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Link State Power Management (LSPM) is a power-saving feature primarily used in PCI Express (PCIe) devices. It is designed to reduce power consumption by putting the PCIe link into a lower power state when it is idle. While this feature is more commonly discussed in the context of hardware and firmware, Windows operating systems also provide settings to manage LSPM. This article will guide you through the steps to manage these settings using Windows built-in tools such as Control Panel, PowerShell, and Command Prompt (CMD).
LSPM has two main states:
Open Power Options:
Win + X
and select Power Options
.Control Panel -> Hardware and Sound -> Power Options
.Change Plan Settings:
Change plan settings
next to your selected power plan.Advanced Power Settings:
Change advanced power settings
.PCI Express
category.Link State Power Management
.Off
, Moderate power savings
, or Maximum power savings
.PowerShell provides a more scriptable way to manage power settings, including LSPM.
Open PowerShell:
Win + X
and select Windows PowerShell (Admin)
.Get Current Power Scheme:
powercfg /query SCHEME_CURRENT SUB_PCIEXPRESS LSPM
Set LSPM to Moderate Power Savings:
powercfg /change SCHEME_CURRENT SUB_PCIEXPRESS LSPM 1
Set LSPM to Maximum Power Savings:
powercfg /change SCHEME_CURRENT SUB_PCIEXPRESS LSPM 2
Turn Off LSPM:
powercfg /change SCHEME_CURRENT SUB_PCIEXPRESS LSPM 0
You can also use the Command Prompt to manage LSPM settings.
Open Command Prompt:
Win + X
and select Command Prompt (Admin)
.Get Current Power Scheme:
powercfg /query SCHEME_CURRENT SUB_PCIEXPRESS LSPM
Set LSPM to Moderate Power Savings:
powercfg /change SCHEME_CURRENT SUB_PCIEXPRESS LSPM 1
Set LSPM to Maximum Power Savings:
powercfg /change SCHEME_CURRENT SUB_PCIEXPRESS LSPM 2
Turn Off LSPM:
powercfg /change SCHEME_CURRENT SUB_PCIEXPRESS LSPM 0
Managing Link State Power Management settings in Windows can help you balance power consumption and performance based on your needs. Whether you prefer using the graphical interface provided by the Control Panel or the command-line tools like PowerShell and CMD, Windows offers flexible options to configure these settings.