<?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/bi-ji-ben-dian-nao/guang-ying7chong-dian-wan-yong-jie-wu-jian-hai-diao-dian/m-p/1265020#M469410</link>
    <description>&lt;P&gt;近一段时间充着电玩永劫无间开始慢慢的掉电我的舍友同款电脑一点电也不掉这是怎么回事，玩的时间长了甚至掉到百分之六十以下&lt;/P&gt;</description>
    <pubDate>Fri, 24 Nov 2023 04:02:11 GMT</pubDate>
    <dc:creator>bayue</dc:creator>
    <dc:date>2023-11-24T04:02:11Z</dc:date>
    <item>
      <title>光影7充电玩永劫无间还掉电</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/guang-ying7chong-dian-wan-yong-jie-wu-jian-hai-diao-dian/m-p/1265020#M469410</link>
      <description>&lt;P&gt;近一段时间充着电玩永劫无间开始慢慢的掉电我的舍友同款电脑一点电也不掉这是怎么回事，玩的时间长了甚至掉到百分之六十以下&lt;/P&gt;</description>
      <pubDate>Fri, 24 Nov 2023 04:02:11 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/guang-ying7chong-dian-wan-yong-jie-wu-jian-hai-diao-dian/m-p/1265020#M469410</guid>
      <dc:creator>bayue</dc:creator>
      <dc:date>2023-11-24T04:02:11Z</dc:date>
    </item>
    <item>
      <title>回复： 光影7充电玩永劫无间还掉电</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/guang-ying7chong-dian-wan-yong-jie-wu-jian-hai-diao-dian/m-p/1265063#M469414</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>Fri, 24 Nov 2023 08:04:08 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/guang-ying7chong-dian-wan-yong-jie-wu-jian-hai-diao-dian/m-p/1265063#M469414</guid>
      <dc:creator>y2kim</dc:creator>
      <dc:date>2023-11-24T08:04:08Z</dc:date>
    </item>
    <item>
      <title>回复： 光影7充电玩永劫无间还掉电</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/guang-ying7chong-dian-wan-yong-jie-wu-jian-hai-diao-dian/m-p/1265126#M469425</link>
      <description>caption : Microsoft Windows 11 家庭中文版 version : 10.0.22621 F.24 4E688PA#AB2 True caption : Intel(R) UHD Graphics DriverVersion : 31.0.101.4502 caption : NVIDIA GeForce RTX 3060 Laptop GPU DriverVersion : 31.0.15.3713 DisplayName : Autodesk Desktop App Service Manufacturer : Autodesk Inc. State : Running DisplayName : Autodesk Desktop Licensing Service Manufacturer : State : Running DisplayName : AntiCheatExpert Service Manufacturer : State : Stopped DisplayName : BaiduNetdiskUtility Manufacturer : Baidu.com, Inc. State : Stopped DisplayName : Intel(R) Content Protection HDCP Service Manufacturer : Intel Corporation State : Running DisplayName : EasyAntiCheat Manufacturer : Epic Games, Inc State : Stopped DisplayName : Epic Online Services Manufacturer : Epic Games, Inc. State : Stopped DisplayName : Flash Helper Service Manufacturer : 重庆重橙网络科技有限公司 State : Running DisplayName : FlexNet Licensing Service Manufacturer : Flexera State : Running DisplayName : NVIDIA FrameView SDK service Manufacturer : NVIDIA State : Stopped DisplayName : Huorong Internet Security Daemon Manufacturer : 北京火绒网络科技有限公司 State : Running DisplayName : HP Comm Recovery Manufacturer : HP Inc. State : Running DisplayName : HP App Helper HSA Service Manufacturer : HP Inc. State : Running DisplayName : HP Diagnostics HSA Service Manufacturer : HP Inc. State : Running DisplayName : HP Network HSA Service Manufacturer : HP Inc. State : Running DisplayName : HP Omen HSA Service Manufacturer : HP Inc. State : Running DisplayName : HP Print Scan Doctor Service Manufacturer : HP Inc. State : Running DisplayName : HP CASL Framework Service Manufacturer : HP State : Stopped DisplayName : HP System Info HSA Service Manufacturer : HP Inc. State : Running DisplayName : HP Analytics service Manufacturer : HP Inc. State : Running DisplayName : Huorong Windows Security Center Manufacturer : 北京火绒网络科技有限公司 State : Running DisplayName : Intel(R) Graphics Command Center Service Manufacturer : Intel Corporation State : Running DisplayName : Intel(R) HD Graphics Control Panel Service Manufacturer : Intel Corporation State : Running DisplayName : Intel(R) Capability Licensing Service TCP IP Interface Manufacturer : Intel(R) Corporation State : Stopped DisplayName : Intel(R) TPM Provisioning Service Manufacturer : Intel(R) Corporation State : Stopped DisplayName : Intel(R) Audio Service Manufacturer : Intel State : Running DisplayName : Intel(R) Dynamic Application Loader Host Interface Service Manufacturer : Intel Corporation State : Running DisplayName : LGHUB Updater Service Manufacturer : Logitech, Inc. State : Running DisplayName : MySQL80 Manufacturer : State : Running DisplayName : NVIDIA LocalSystem Container Manufacturer : State : Running DisplayName : NVIDIA Display Container LS Manufacturer : State : Running DisplayName : OfficePLUS Service Manufacturer : State : Running DisplayName : QPCore Service Manufacturer : Tencent State : Running DisplayName : QQGameService Manufacturer : State : Running DisplayName : Intel(R) Storage Middleware Service Manufacturer : Intel Corporation State : Running DisplayName : Realtek Audio Universal Service Manufacturer : Realtek Semiconductor State : Running DisplayName : Sound Research SECOMN Service Manufacturer : Sound Research, Corp. State : Running DisplayName : OpenSSH Authentication Agent Manufacturer : State : Stopped DisplayName : Steam Client Service Manufacturer : Valve Corporation State : Running DisplayName : SynTPEnhService Manufacturer : Synaptics Incorporated State : Running DisplayName : VRLService Manufacturer : State : Running DisplayName : Wallpaper Engine Service Manufacturer : State : Running DisplayName : WemeetUpdateSvc Manufacturer : State : Stopped DisplayName : Windows Application Management Service Manufacturer : State : Stopped DisplayName : Intel(R) Management Engine WMI Provider Registration Manufacturer : Intel Corporation State : Running DisplayName : WPS Office Cloud Service Manufacturer : Zhuhai Kingsoft Office Software Co.,Ltd State : Stopped DisplayName : XTUOCDriverService Manufacturer : Intel(R) Corporation State : Running Name : AD2F1837.OMENCommandCenter Version : 1101.2311.2.0 ProductVersion FileVersion FileName -------------- ----------- -------- 1.0.78.0 1.0.78.0 C:\Windows\OMENSDK_Ver.exe</description>
      <pubDate>Fri, 24 Nov 2023 15:20:17 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/guang-ying7chong-dian-wan-yong-jie-wu-jian-hai-diao-dian/m-p/1265126#M469425</guid>
      <dc:creator>bayue</dc:creator>
      <dc:date>2023-11-24T15:20:17Z</dc:date>
    </item>
    <item>
      <title>回复： 光影7充电玩永劫无间还掉电</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/guang-ying7chong-dian-wan-yong-jie-wu-jian-hai-diao-dian/m-p/1265135#M469427</link>
      <description>&lt;P&gt;我建议初始化系统，初始化之后不装火绒，只装一两个游戏测试&lt;/P&gt;
&lt;P&gt;为什么不直接卸载火绒，因为用火绒改了一些系统设置之后，卸载并不会恢复设置&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-size: 11.0pt;"&gt;&lt;A href="https://support.microsoft.com/zh-cn/windows/windows-%E4%B8%AD%E7%9A%84%E6%81%A2%E5%A4%8D%E9%80%89%E9%A1%B9-31ce2444-7de3-818c-d626-e3b5a3024da5" target="_blank"&gt;&lt;SPAN&gt;Windows &lt;/SPAN&gt;&lt;SPAN&gt;中的恢复选项&lt;/SPAN&gt;&lt;SPAN&gt; (microsoft.com)&lt;/SPAN&gt;&lt;/A&gt; &lt;SPAN&gt;【初始化电脑】&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Nov 2023 01:05:18 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/guang-ying7chong-dian-wan-yong-jie-wu-jian-hai-diao-dian/m-p/1265135#M469427</guid>
      <dc:creator>y2kim</dc:creator>
      <dc:date>2023-11-25T01:05:18Z</dc:date>
    </item>
  </channel>
</rss>

