<?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/xi-tong-zhong-qi-le-ni-deGPU/m-p/1311085#M478725</link>
    <description>&lt;P&gt;用了原厂系统还是会有&lt;/P&gt;</description>
    <pubDate>Sat, 28 Sep 2024 06:43:24 GMT</pubDate>
    <dc:creator>3215654</dc:creator>
    <dc:date>2024-09-28T06:43:24Z</dc:date>
    <item>
      <title>系统重启了你的GPU</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310441#M478610</link>
      <description>&lt;P&gt;玩大型游戏的时候系统提示重启了你的GPU&amp;nbsp;游戏黑屏后游戏卡死但不死机&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 01:57:30 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310441#M478610</guid>
      <dc:creator>3215654</dc:creator>
      <dc:date>2024-09-24T01:57:30Z</dc:date>
    </item>
    <item>
      <title>回复： 系统重启了你的GPU</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310498#M478620</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;&lt;SPAN&gt;(get-date) – (gcim Win32_OperatingSystem).LastBootUpTime&lt;/SPAN&gt; &lt;SPAN&gt;| out-file \hpinfo.txt -force -append;&lt;/SPAN&gt;&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 | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;(gwmi MS_SystemInformation -namespace root\wmi).SystemSKU | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(gwmi win32_baseboard).product&lt;/SPAN&gt; &lt;SPAN&gt;| out-file \hpinfo.txt -force -append;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Confirm-SecureBootUEFI | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;gwmi win32_processor | out-file \hpinfo.txt -force -append;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;gwmi win32_physicalmemory | select Capacity,ConfiguredClockSpeed,Manufacturer,PartNumber,Speed&lt;/SPAN&gt; &lt;SPAN&gt;| out-file \hpinfo.txt -force -append;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;gwmi win32_diskdrive&lt;/SPAN&gt; &lt;SPAN&gt;| out-file \hpinfo.txt -force -append;&lt;/SPAN&gt;&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>Tue, 24 Sep 2024 05:41:04 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310498#M478620</guid>
      <dc:creator>y2kim</dc:creator>
      <dc:date>2024-09-24T05:41:04Z</dc:date>
    </item>
    <item>
      <title>回复： 系统重启了你的GPU</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310500#M478621</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Days : 0&lt;BR /&gt;Hours : 3&lt;BR /&gt;Minutes : 37&lt;BR /&gt;Seconds : 34&lt;BR /&gt;Milliseconds : 691&lt;BR /&gt;Ticks : 130546914126&lt;BR /&gt;TotalDays : 0.151095965423611&lt;BR /&gt;TotalHours : 3.62630317016667&lt;BR /&gt;TotalMinutes : 217.57819021&lt;BR /&gt;TotalSeconds : 13054.6914126&lt;BR /&gt;TotalMilliseconds : 13054691.4126&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;caption : Microsoft Windows 11 专业版&lt;BR /&gt;version : 10.0.22631&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;F.47&lt;BR /&gt;4M1S5PA#AB2&lt;BR /&gt;88FD&lt;BR /&gt;True&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Caption : Intel64 Family 6 Model 141 Stepping 1&lt;BR /&gt;DeviceID : CPU0&lt;BR /&gt;Manufacturer : GenuineIntel&lt;BR /&gt;MaxClockSpeed : 2304&lt;BR /&gt;Name : 11th Gen Intel(R) Core(TM) i7-11800H @ 2.30GHz&lt;BR /&gt;SocketDesignation : U3E1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Capacity : 17179869184&lt;BR /&gt;ConfiguredClockSpeed : 3200&lt;BR /&gt;Manufacturer : Kingston&lt;BR /&gt;PartNumber : KF3200C20S4/16G&lt;BR /&gt;Speed : 3200&lt;/P&gt;&lt;P&gt;Capacity : 17179869184&lt;BR /&gt;ConfiguredClockSpeed : 3200&lt;BR /&gt;Manufacturer : Kingston&lt;BR /&gt;PartNumber : KF3200C20S4/16G&lt;BR /&gt;Speed : 3200&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Partitions : 3&lt;BR /&gt;DeviceID : \\.\PHYSICALDRIVE1&lt;BR /&gt;Model : NVMe SAMSUNG MZVL21T0HCLR-00BH1&lt;BR /&gt;Size : 1024203640320&lt;BR /&gt;Caption : NVMe SAMSUNG MZVL21T0HCLR-00BH1&lt;/P&gt;&lt;P&gt;Partitions : 3&lt;BR /&gt;DeviceID : \\.\PHYSICALDRIVE0&lt;BR /&gt;Model : NVMe KINGSTON SNV2S1000G&lt;BR /&gt;Size : 1000202273280&lt;BR /&gt;Caption : NVMe KINGSTON SNV2S1000G&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;caption : NVIDIA GeForce RTX 3070 Laptop GPU&lt;BR /&gt;DriverVersion : 30.0.15.1278&lt;/P&gt;&lt;P&gt;caption : Intel(R) UHD Graphics&lt;BR /&gt;DriverVersion : 30.0.101.2079&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;caption : NGNClient Adapter&lt;BR /&gt;deviceID : ROOT\NET\0000&lt;BR /&gt;ConfigManagerErrorCode : 22&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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 : 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) Driver &amp;amp; Support Assistant&lt;BR /&gt;Manufacturer : Intel&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Driver &amp;amp; Support Assistant Updater&lt;BR /&gt;Manufacturer : Intel&lt;BR /&gt;State : Stopped&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 : ELAN Service&lt;BR /&gt;Manufacturer : ELAN Microelectronics Corp.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Flash Helper Service&lt;BR /&gt;Manufacturer : 重庆重橙网络科技有限公司&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : FlashCenterSvc&lt;BR /&gt;Manufacturer : Chongqing Zhongcheng Network Technology Co., Ltd&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 : 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 CASL Framework Service&lt;BR /&gt;Manufacturer : HP&lt;BR /&gt;State : Stopped&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 Insights Analytics&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) HD Graphics Control Panel Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Capability Licensing Service TCP IP Interface&lt;BR /&gt;Manufacturer : Intel(R) Corporation&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) TPM Provisioning Service&lt;BR /&gt;Manufacturer : Intel(R) Corporation&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Arc Control Service&lt;BR /&gt;Manufacturer : Intel 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) Dynamic Application Loader Host Interface Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : KDService&lt;BR /&gt;Manufacturer : KYOCERA Document Solutions Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Logitech LampArray Service&lt;BR /&gt;Manufacturer : Logitech, Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : NVIDIA LocalSystem Container&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 : MSPCManager Service (Store)&lt;BR /&gt;Manufacturer : MSPCManagerService&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : qmbsrv&lt;BR /&gt;Manufacturer : Tencent&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : QQPCMgr RTP Service&lt;BR /&gt;Manufacturer : Tencent&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : Intel(R) Storage Middleware Service&lt;BR /&gt;Manufacturer : Intel Corporation&lt;BR /&gt;State : Stopped&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 : 搜狗输入法基础服务&lt;BR /&gt;Manufacturer : Sogou.com&lt;BR /&gt;State : Stopped&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 : Stopped&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 : TxQBService&lt;BR /&gt;Manufacturer : Tencent Inc.&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : WinFsp.Launcher&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 : Stopped&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 : wpsvc&lt;BR /&gt;Manufacturer :&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : XTUOCDriverService&lt;BR /&gt;Manufacturer : Intel(R) Corporation&lt;BR /&gt;State : Stopped&lt;/P&gt;&lt;P&gt;DisplayName : ztsm emg service&lt;BR /&gt;Manufacturer : Tencent&lt;BR /&gt;State : Running&lt;/P&gt;&lt;P&gt;DisplayName : ztsm rtp service&lt;BR /&gt;Manufacturer : Tencent&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name : AD2F1837.OMENAudioControl&lt;BR /&gt;Version : 1.38.277.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.85.0 1.0.85.0 C:\Windows\OMENSDK_Ver.exe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 05:49:52 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310500#M478621</guid>
      <dc:creator>3215654</dc:creator>
      <dc:date>2024-09-24T05:49:52Z</dc:date>
    </item>
    <item>
      <title>回复： 系统重启了你的GPU</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310503#M478623</link>
      <description>&lt;P&gt;自己全新安装的专业版系统？&lt;/P&gt;
&lt;P&gt;独显驱动用的是很旧的版本&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 06:03:08 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310503#M478623</guid>
      <dc:creator>y2kim</dc:creator>
      <dc:date>2024-09-24T06:03:08Z</dc:date>
    </item>
    <item>
      <title>回复： 系统重启了你的GPU</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310710#M478646</link>
      <description>&lt;P&gt;试过好多版本的驱动都这样&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2024 07:15:14 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310710#M478646</guid>
      <dc:creator>3215654</dc:creator>
      <dc:date>2024-09-25T07:15:14Z</dc:date>
    </item>
    <item>
      <title>回复： 系统重启了你的GPU</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310721#M478648</link>
      <description>&lt;P&gt;我建议做原厂系统测试，做原厂系统会清除全部磁盘全部分区数据，不方便的话可以将当前固态替换掉再做。&lt;/P&gt;
&lt;P style="margin: 0in; font-size: 11.0pt;" lang="zh-CN"&gt;&lt;A href="https://support.hp.com/cn-zh/document/ish_4511134-4630612-16" target="_blank"&gt;&lt;SPAN&gt;HP 消费类电脑 - 在 Windows 11 和 10 中使用 HP 云恢复工具 | HP&lt;/SPAN&gt;&lt;SPAN&gt;®&lt;/SPAN&gt;&lt;SPAN&gt;客户支持&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2024 07:49:46 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310721#M478648</guid>
      <dc:creator>y2kim</dc:creator>
      <dc:date>2024-09-25T07:49:46Z</dc:date>
    </item>
    <item>
      <title>回复： 系统重启了你的GPU</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310728#M478650</link>
      <description>&lt;P&gt;HP Cloud Recovery Tool&amp;nbsp;是用这个软件做恢复处理么&amp;nbsp;我不太会&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2024 07:56:15 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1310728#M478650</guid>
      <dc:creator>3215654</dc:creator>
      <dc:date>2024-09-25T07:56:15Z</dc:date>
    </item>
    <item>
      <title>回复： 系统重启了你的GPU</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1311085#M478725</link>
      <description>&lt;P&gt;用了原厂系统还是会有&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2024 06:43:24 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1311085#M478725</guid>
      <dc:creator>3215654</dc:creator>
      <dc:date>2024-09-28T06:43:24Z</dc:date>
    </item>
    <item>
      <title>回复： 系统重启了你的GPU</title>
      <link>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1311087#M478727</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://h30471.www3.hp.com/t5/user/viewprofilepage/user-id/228236"&gt;@3215654&lt;/a&gt;&amp;nbsp; 已写:&lt;BR /&gt;
&lt;P&gt;用了原厂系统还是会有&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;机器有硬件问题，很可能是主板问题。发热失控也会这样。&lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2024 07:10:40 GMT</pubDate>
      <guid>https://h30471.www3.hp.com/t5/bi-ji-ben-dian-nao/xi-tong-zhong-qi-le-ni-deGPU/m-p/1311087#M478727</guid>
      <dc:creator>y2kim</dc:creator>
      <dc:date>2024-09-28T07:10:40Z</dc:date>
    </item>
  </channel>
</rss>

