<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>该主题</title>
    <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244587#M82402</link>
    <description>&lt;P&gt;应该跟环境没关系，我是打游戏时，cpu100度，然后笔记本卡住黑屏了，然后我长按关机键准备强制关机，按了两三秒，发现屏幕亮了，除了游戏没了，其他都正常，之后就发现eco风扇转速降不下去&lt;/P&gt;</description>
    <pubDate>Sat, 22 Jul 2023 14:41:53 GMT</pubDate>
    <dc:creator>早睡早起18</dc:creator>
    <dc:date>2023-07-22T14:41:53Z</dc:date>
    <item>
      <title>eco模式风扇转速不降</title>
      <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244566#M82396</link>
      <description>&lt;P&gt;eco模式下风扇转速不降，和平衡模式下的风扇转速一样，之前eco是会降到2000转的，并且现在平衡模式手动把风扇曲线拉到最低转速也只有2200.&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 12:05:27 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244566#M82396</guid>
      <dc:creator>早睡早起18</dc:creator>
      <dc:date>2023-07-22T12:05:27Z</dc:date>
    </item>
    <item>
      <title>回复： eco模式风扇转速不降</title>
      <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244575#M82397</link>
      <description>&lt;P&gt;********************提供更多机器有关的信息*************************&lt;/P&gt;
&lt;P&gt;**************提供信息，不是修复，不是解决方案*******************&lt;/P&gt;
&lt;P&gt;********************不提供信息，不勉强******************************&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;系统桌面按Win+R打开运行，输入&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;powershell&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;按住键盘ctrl+shift，鼠标点确定&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;命令行打开显示&lt;/SPAN&gt;&lt;STRONG&gt;PS C:\Windows\system32&amp;gt;&lt;/STRONG&gt;&lt;SPAN&gt;则是成功以管理员运行打开了&lt;/SPAN&gt;&lt;SPAN&gt;powershell，否则以上重试&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;在命令行窗口中复制粘贴下面命令回车&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;if (test-path c:\hpinfo.txt){remove-item c:\hpinfo.txt -force};&lt;/P&gt;
&lt;P&gt;gwmi Win32_OperatingSystem | select caption,version |fl | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;(gwmi win32_bios).caption |fl | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;(gwmi MS_SystemInformation -namespace root\wmi).SystemSKU |fl | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;Confirm-SecureBootUEFI |fl | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;gwmi win32_VideoController | select caption,DriverVersion |fl | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;gwmi Win32_PNPEntity | Where{$_.ConfigManagerErrorCode -ne 0} | select caption,deviceID,ConfigManagerErrorCode |fl | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;Gwmi win32_service | ForEach-Object {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $path=""&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $company=""&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if($_.pathName -match '"(?&amp;lt;SvcPath&amp;gt;.*)"') {$path=$Matches['SvcPath']}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&amp;nbsp; {$path=($_.pathName&amp;nbsp; -split ' ') | select -First 1}&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(-not [string]::IsNullOrWhiteSpace($path)) {$company=(Get-Item $path &lt;/SPAN&gt;&lt;SPAN&gt;-ErrorAction Ignore&lt;/SPAN&gt;&lt;SPAN&gt;).VersionInfo.CompanyName}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $_ | Add-Member -MemberType NoteProperty -Name "Manufacturer" -Value $company&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $_}&amp;nbsp; | Select-Object DisplayName, Manufacturer,State | where {$_.Manufacturer -notlike "*microsoft*"}&lt;/SPAN&gt;&lt;SPAN&gt; |&lt;/SPAN&gt;&lt;SPAN&gt; fl |&lt;/SPAN&gt;&lt;SPAN&gt; out-file \hpinfo.txt -force -append;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Get-AppxPackage | where{$_.name -like "*omen*"} | select name,version |fl | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;if (test-path C:\Windows\OMENSDK_Ver.exe){(Get-Item C:\Windows\OMENSDK_Ver.exe).versioninfo | out-file \hpinfo.txt -force -append}&lt;/P&gt;
&lt;P&gt;Get-CimInstance –ClassName Win32_DeviceGuard –Namespace root\Microsoft\Windows\DeviceGuard | out-file \hpinfo.txt -force -append&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;打开c:\hpinfo.txt将文件内容全选(ctrl+A)复制(ctrl+c)粘贴(ctrl+v)出来发帖回复，之后c:\hpinfo.txt可以删除。&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;如果红字报错或没有文件，确认是以管理员身份运行了powershell&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 14:25:59 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244575#M82397</guid>
      <dc:creator>y2kim</dc:creator>
      <dc:date>2023-07-22T14:25:59Z</dc:date>
    </item>
    <item>
      <title>回复： eco模式风扇转速不降</title>
      <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244577#M82398</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;caption : Microsoft Windows 11 家庭中文版&lt;BR /&gt;version : 10.0.22621&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;F.05&lt;BR /&gt;81L08PA#AB2&lt;BR /&gt;True&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;caption : Intel(R) UHD Graphics&lt;BR /&gt;DriverVersion : 31.0.101.4146&lt;/P&gt;&lt;P&gt;caption : NVIDIA GeForce RTX 4060 Laptop GPU&lt;BR /&gt;DriverVersion : 31.0.15.3623&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DisplayName : AntiCheatExpert Protection&lt;BR /&gt;Manufacturer : ANTICHEATEXPERT.COM&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : AntiCheatExpert Service&lt;BR /&gt;Manufacturer : ANTICHEATEXPERT.COM&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : BaiduNetdiskUtility&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Bonjour 服务&lt;BR /&gt;Manufacturer : Apple Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Content Protection HDCP Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Dynamic Tuning Technology Telemetry Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : DtsApo4Service&lt;BR /&gt;Manufacturer : DTS Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : EasyAntiCheat&lt;BR /&gt;Manufacturer : Epic Games, Inc&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : ELAN Service&lt;BR /&gt;Manufacturer : ELAN Microelectronics Corp.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : NVIDIA FrameView SDK service&lt;BR /&gt;Manufacturer : NVIDIA&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : HP Comm Recovery&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP App Helper HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Diagnostics HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : HpMallWindowsService&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Network HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Omen HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Support Solutions Framework Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP System Info HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Analytics service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Graphics Command Center Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Platform License Manager Service&lt;BR /&gt;Manufacturer : Intel(R) Corporation&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Audio Service&lt;BR /&gt;Manufacturer : Intel&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Innovation Platform Framework Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Dynamic Application Loader Host Interface Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : KuGou Service&lt;BR /&gt;Manufacturer : 酷狗音乐&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : LGHUB Updater Service&lt;BR /&gt;Manufacturer : Logitech, Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : McAfee Framework Host&lt;BR /&gt;Manufacturer : McAfee, LLC&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : McAfee Software Update&lt;BR /&gt;Manufacturer : McAfee, LLC&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : McAfee WebAdvisor&lt;BR /&gt;Manufacturer : McAfee, LLC&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : MySQL80&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : NVIDIA Display Container LS&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : OfficePLUS Service&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : QPCore Service&lt;BR /&gt;Manufacturer : Tencent&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Realtek Audio Universal Service&lt;BR /&gt;Manufacturer : Realtek Semiconductor&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : OpenSSH Authentication Agent&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Steam Client Service&lt;BR /&gt;Manufacturer : Valve Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : SteelSeries Update Service&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Thunderbolt(TM) Application Launcher&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Thunderbolt(TM) Peer to Peer Shortcut&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : WemeetUpdateSvc&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Management Engine WMI Provider Registration&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : WPS Office Cloud Service&lt;BR /&gt;Manufacturer : Zhuhai Kingsoft Office Software Co.,Ltd&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : XTUOCDriverService&lt;BR /&gt;Manufacturer : Intel(R) Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name : AD2F1837.OMENCommandCenter&lt;BR /&gt;Version : 1101.2307.1.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ProductVersion FileVersion FileName&lt;BR /&gt;-------------- ----------- --------&lt;BR /&gt;1.0.70.0 1.0.70.0 C:\Windows\OMENSDK_Ver.exe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;AvailableSecurityProperties : {1, 2, 3, 4...}&lt;BR /&gt;CodeIntegrityPolicyEnforcementStatus : 2&lt;BR /&gt;InstanceIdentifier : 4ff40742-2649-41b8-bdd1-e80fad1cce80&lt;BR /&gt;RequiredSecurityProperties : {0}&lt;BR /&gt;SecurityFeaturesEnabled : {0}&lt;BR /&gt;SecurityServicesConfigured : {2}&lt;BR /&gt;SecurityServicesRunning : {2}&lt;BR /&gt;UsermodeCodeIntegrityPolicyEnforcementStatus : 0&lt;BR /&gt;Version : 1.0&lt;BR /&gt;VirtualizationBasedSecurityStatus : 2&lt;BR /&gt;VirtualMachineIsolation : False&lt;BR /&gt;VirtualMachineIsolationProperties : {0}&lt;BR /&gt;PSComputerName :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 14:33:12 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244577#M82398</guid>
      <dc:creator>早睡早起18</dc:creator>
      <dc:date>2023-07-22T14:33:12Z</dc:date>
    </item>
    <item>
      <title>回复： eco模式风扇转速不降</title>
      <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244580#M82400</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;1、我的暗影精灵9的BIOS 版本升级到F.08版、OMEN Gaming Hub 版本升级到1101.2306.4.0也不能在ECO模式下调整风扇转速了，提示：“无法在ECO模式下进行散热控制调整，要手动调节风扇转速，请选择其他电源模式”；&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;3、楼主的暗影精灵9原先在ECO模式可以将风扇转速调整到低于2000转，“原先”时间段可能笔记本使用环境气温较低，现在使用环境温度是否升高了，惠普升级BIOS版本的措施主要为了防止手动调整风扇转速，会烧坏元器件。&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="屏幕截图 2023-07-22 223137.png" style="width: 538px;"&gt;&lt;img src="https://h30471.www3.hp.com/t5/image/serverpage/image-id/94365iC12D2BE9774904C2/image-size/large?v=v2&amp;amp;px=999" role="button" title="屏幕截图 2023-07-22 223137.png" alt="屏幕截图 2023-07-22 223137.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 14:33:16 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244580#M82400</guid>
      <dc:creator>潇湘祥云</dc:creator>
      <dc:date>2023-07-22T14:33:16Z</dc:date>
    </item>
    <item>
      <title>回复： eco模式风扇转速不降</title>
      <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244583#M82401</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;caption : Microsoft Windows 11 家庭中文版&lt;BR /&gt;version : 10.0.22621&lt;/P&gt;&lt;P&gt;F.05&lt;BR /&gt;81L08PA#AB2&lt;BR /&gt;Truecaption : Intel(R) UHD Graphics&lt;BR /&gt;DriverVersion : 31.0.101.4146&lt;/P&gt;&lt;P&gt;caption : NVIDIA GeForce RTX 4060 Laptop GPU&lt;BR /&gt;DriverVersion : 31.0.15.3623&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DisplayName : AntiCheatExpert Protection&lt;BR /&gt;Manufacturer : ANTICHEATEXPERT.COM&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : AntiCheatExpert Service&lt;BR /&gt;Manufacturer : ANTICHEATEXPERT.COM&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : BaiduNetdiskUtility&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Bonjour 服务&lt;BR /&gt;Manufacturer : Apple Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Content Protection HDCP Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Dynamic Tuning Technology Telemetry Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : DtsApo4Service&lt;BR /&gt;Manufacturer : DTS Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : EasyAntiCheat&lt;BR /&gt;Manufacturer : Epic Games, Inc&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : ELAN Service&lt;BR /&gt;Manufacturer : ELAN Microelectronics Corp.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : NVIDIA FrameView SDK service&lt;BR /&gt;Manufacturer : NVIDIA&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : HP Comm Recovery&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP App Helper HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Diagnostics HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : HpMallWindowsService&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Network HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Omen HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Support Solutions Framework Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP System Info HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : HP Analytics service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Graphics Command Center Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Platform License Manager Service&lt;BR /&gt;Manufacturer : Intel(R) Corporation&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Audio Service&lt;BR /&gt;Manufacturer : Intel&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Innovation Platform Framework Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Dynamic Application Loader Host Interface Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : KuGou Service&lt;BR /&gt;Manufacturer : 酷狗音乐&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : LGHUB Updater Service&lt;BR /&gt;Manufacturer : Logitech, Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : McAfee Framework Host&lt;BR /&gt;Manufacturer : McAfee, LLC&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : McAfee Software Update&lt;BR /&gt;Manufacturer : McAfee, LLC&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : McAfee WebAdvisor&lt;BR /&gt;Manufacturer : McAfee, LLC&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : MySQL80&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : NVIDIA Display Container LS&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : OfficePLUS Service&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : QPCore Service&lt;BR /&gt;Manufacturer : Tencent&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Realtek Audio Universal Service&lt;BR /&gt;Manufacturer : Realtek Semiconductor&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : OpenSSH Authentication Agent&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Steam Client Service&lt;BR /&gt;Manufacturer : Valve Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : SteelSeries Update Service&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Thunderbolt(TM) Application Launcher&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Thunderbolt(TM) Peer to Peer Shortcut&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : WemeetUpdateSvc&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Management Engine WMI Provider Registration&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : WPS Office Cloud Service&lt;BR /&gt;Manufacturer : Zhuhai Kingsoft Office Software Co.,Ltd&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : XTUOCDriverService&lt;BR /&gt;Manufacturer : Intel(R) Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name : AD2F1837.OMENCommandCenter&lt;BR /&gt;Version : 1101.2307.1.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ProductVersion FileVersion FileName&lt;BR /&gt;-------------- ----------- --------&lt;BR /&gt;1.0.70.0 1.0.70.0 C:\Windows\OMENSDK_Ver.exe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;AvailableSecurityProperties : {1, 2, 3, 4...}&lt;BR /&gt;CodeIntegrityPolicyEnforcementStatus : 2&lt;BR /&gt;InstanceIdentifier : 4ff40742-2649-41b8-bdd1-e80fad1cce80&lt;BR /&gt;RequiredSecurityProperties : {0}&lt;BR /&gt;SecurityFeaturesEnabled : {0}&lt;BR /&gt;SecurityServicesConfigured : {2}&lt;BR /&gt;SecurityServicesRunning : {2}&lt;BR /&gt;UsermodeCodeIntegrityPolicyEnforcementStatus : 0&lt;BR /&gt;Version : 1.0&lt;BR /&gt;VirtualizationBasedSecurityStatus : 2&lt;BR /&gt;VirtualMachineIsolation : False&lt;BR /&gt;VirtualMachineIsolationProperties : {0}&lt;BR /&gt;PSComputerName :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 14:36:44 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244583#M82401</guid>
      <dc:creator>早睡早起18</dc:creator>
      <dc:date>2023-07-22T14:36:44Z</dc:date>
    </item>
    <item>
      <title>回复： eco模式风扇转速不降</title>
      <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244587#M82402</link>
      <description>&lt;P&gt;应该跟环境没关系，我是打游戏时，cpu100度，然后笔记本卡住黑屏了，然后我长按关机键准备强制关机，按了两三秒，发现屏幕亮了，除了游戏没了，其他都正常，之后就发现eco风扇转速降不下去&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 14:41:53 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244587#M82402</guid>
      <dc:creator>早睡早起18</dc:creator>
      <dc:date>2023-07-22T14:41:53Z</dc:date>
    </item>
    <item>
      <title>回复： eco模式风扇转速不降</title>
      <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244589#M82403</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://h30471.www3.hp.com/t5/user/viewprofilepage/user-id/283785"&gt;@早睡早起18&lt;/a&gt;&amp;nbsp; 已写:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;caption : Microsoft Windows 11 家庭中文版&lt;BR /&gt;version : 10.0.22621&lt;/P&gt;
&lt;P&gt;F.05&lt;BR /&gt;81L08PA#AB2&lt;BR /&gt;Truecaption : Intel(R) UHD Graphics&lt;BR /&gt;DriverVersion : 31.0.101.4146&lt;/P&gt;
&lt;P&gt;caption : NVIDIA GeForce RTX 4060 Laptop GPU&lt;BR /&gt;DriverVersion : 31.0.15.3623&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DisplayName : AntiCheatExpert Protection&lt;BR /&gt;Manufacturer : ANTICHEATEXPERT.COM&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : AntiCheatExpert Service&lt;BR /&gt;Manufacturer : ANTICHEATEXPERT.COM&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : BaiduNetdiskUtility&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : Bonjour 服务&lt;BR /&gt;Manufacturer : Apple Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : Intel(R) Content Protection HDCP Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : Intel(R) Dynamic Tuning Technology Telemetry Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : DtsApo4Service&lt;BR /&gt;Manufacturer : DTS Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : EasyAntiCheat&lt;BR /&gt;Manufacturer : Epic Games, Inc&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : ELAN Service&lt;BR /&gt;Manufacturer : ELAN Microelectronics Corp.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : NVIDIA FrameView SDK service&lt;BR /&gt;Manufacturer : NVIDIA&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : HP Comm Recovery&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : HP App Helper HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : HP Diagnostics HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : HpMallWindowsService&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : HP Network HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : HP Omen HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : HP Support Solutions Framework Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : HP System Info HSA Service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : HP Analytics service&lt;BR /&gt;Manufacturer : HP Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : Intel(R) Graphics Command Center Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : Intel(R) Platform License Manager Service&lt;BR /&gt;Manufacturer : Intel(R) Corporation&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : Intel(R) Audio Service&lt;BR /&gt;Manufacturer : Intel&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : Intel(R) Innovation Platform Framework Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : Intel(R) Dynamic Application Loader Host Interface Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : KuGou Service&lt;BR /&gt;Manufacturer : 酷狗音乐&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : LGHUB Updater Service&lt;BR /&gt;Manufacturer : Logitech, Inc.&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : McAfee Framework Host&lt;BR /&gt;Manufacturer : McAfee, LLC&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : McAfee Software Update&lt;BR /&gt;Manufacturer : McAfee, LLC&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : McAfee WebAdvisor&lt;BR /&gt;Manufacturer : McAfee, LLC&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : MySQL80&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : NVIDIA Display Container LS&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : OfficePLUS Service&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : QPCore Service&lt;BR /&gt;Manufacturer : Tencent&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : Realtek Audio Universal Service&lt;BR /&gt;Manufacturer : Realtek Semiconductor&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : OpenSSH Authentication Agent&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : Steam Client Service&lt;BR /&gt;Manufacturer : Valve Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : SteelSeries Update Service&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : Thunderbolt(TM) Application Launcher&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : Thunderbolt(TM) Peer to Peer Shortcut&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : WemeetUpdateSvc&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : Intel(R) Management Engine WMI Provider Registration&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;DisplayName : WPS Office Cloud Service&lt;BR /&gt;Manufacturer : Zhuhai Kingsoft Office Software Co.,Ltd&lt;BR /&gt;State : Stopped&lt;/P&gt;
&lt;P&gt;DisplayName : XTUOCDriverService&lt;BR /&gt;Manufacturer : Intel(R) Corporation&lt;BR /&gt;State : Running&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Name : AD2F1837.OMENCommandCenter&lt;BR /&gt;Version : 1101.2307.1.0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;ProductVersion FileVersion FileName&lt;BR /&gt;-------------- ----------- --------&lt;BR /&gt;1.0.70.0 1.0.70.0 C:\Windows\OMENSDK_Ver.exe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;AvailableSecurityProperties : {1, 2, 3, 4...}&lt;BR /&gt;CodeIntegrityPolicyEnforcementStatus : 2&lt;BR /&gt;InstanceIdentifier : 4ff40742-2649-41b8-bdd1-e80fad1cce80&lt;BR /&gt;RequiredSecurityProperties : {0}&lt;BR /&gt;SecurityFeaturesEnabled : {0}&lt;BR /&gt;SecurityServicesConfigured : {2}&lt;BR /&gt;SecurityServicesRunning : {2}&lt;BR /&gt;UsermodeCodeIntegrityPolicyEnforcementStatus : 0&lt;BR /&gt;Version : 1.0&lt;BR /&gt;VirtualizationBasedSecurityStatus : 2&lt;BR /&gt;VirtualMachineIsolation : False&lt;BR /&gt;VirtualMachineIsolationProperties : {0}&lt;BR /&gt;PSComputerName :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;启动这个服务&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;HP Diagnostics HSA Service&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;更新SDK&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://h30318.www3.hp.com/pub/softpaq/sp147501-148000/sp147712.exe" target="_blank"&gt;https://h30318.www3.hp.com/pub/softpaq/sp147501-148000/sp147712.exe&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;关闭下面文档提到的选项&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-size: 11.0pt;"&gt;&lt;A href="https://support.microsoft.com/zh-cn/windows/%E5%9C%A8windows-11%E4%B8%AD%E4%BC%98%E5%8C%96%E6%B8%B8%E6%88%8F%E6%80%A7%E8%83%BD%E7%9A%84%E9%80%89%E9%A1%B9-a255f612-2949-4373-a566-ff6f3f474613" target="_blank"&gt;&lt;SPAN&gt;在&lt;/SPAN&gt;&lt;SPAN&gt;Windows 11&lt;/SPAN&gt;&lt;SPAN&gt;中优化游戏性能的选项&lt;/SPAN&gt;&lt;SPAN&gt; - Microsoft &lt;/SPAN&gt;&lt;SPAN&gt;支持&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 14:45:36 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244589#M82403</guid>
      <dc:creator>y2kim</dc:creator>
      <dc:date>2023-07-22T14:45:36Z</dc:date>
    </item>
    <item>
      <title>回复： eco模式风扇转速不降</title>
      <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244590#M82404</link>
      <description>&lt;P&gt;没有效果&lt;/P&gt;&lt;P&gt;eco模式还和平衡模式的自动一样的转速&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 15:01:34 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244590#M82404</guid>
      <dc:creator>早睡早起18</dc:creator>
      <dc:date>2023-07-22T15:01:34Z</dc:date>
    </item>
    <item>
      <title>回复： eco模式风扇转速不降</title>
      <link>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244633#M82405</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://h30471.www3.hp.com/t5/user/viewprofilepage/user-id/283785"&gt;@早睡早起18&lt;/a&gt;&amp;nbsp; 已写:&lt;BR /&gt;
&lt;P&gt;没有效果&lt;/P&gt;
&lt;P&gt;eco模式还和平衡模式的自动一样的转速&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;建议工作日找微信服务，找同款机器对比。&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jul 2023 03:54:02 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/you-xi-ben/eco-mo-shi-feng-shan-zhuan-su-bu-jiang/m-p/1244633#M82405</guid>
      <dc:creator>y2kim</dc:creator>
      <dc:date>2023-07-23T03:54:02Z</dc:date>
    </item>
  </channel>
</rss>

