6603看版本号就很新,不要追太新的驱动
********************提供更多机器有关的信息*************************
**************提供信息,不是修复,不是解决方案*******************
********************不提供信息,不勉强******************************
- 系统桌面按Win+R打开运行,输入
powershell
- 按住键盘ctrl+shift,鼠标点确定
命令行打开显示PS C:Windowssystem32>则是成功以管理员运行打开了powershell,否则以上重试
- 在命令行窗口中复制粘贴下面命令回车
if (test-path c:hpinfo.txt){remove-item c:hpinfo.txt -force};
(get-date) – (gcim Win32_OperatingSystem).LastBootUpTime | out-file hpinfo.txt -force -append;
gwmi Win32_OperatingSystem | select caption,version |fl | out-file hpinfo.txt -force -append;
(gwmi win32_bios).caption | out-file hpinfo.txt -force -append;
(gwmi MS_SystemInformation -namespace rootwmi).SystemSKU | out-file hpinfo.txt -force -append;
(gwmi win32_baseboard).product | out-file hpinfo.txt -force -append;
Confirm-SecureBootUEFI | out-file hpinfo.txt -force -append;
gwmi win32_processor | out-file hpinfo.txt -force -append;
gwmi win32_physicalmemory | select Capacity,ConfiguredClockSpeed,Manufacturer,PartNumber,Speed | out-file hpinfo.txt -force -append;
gwmi win32_diskdrive | out-file hpinfo.txt -force -append;
gwmi win32_VideoController | select caption,DriverVersion,AdapterRAM |fl | out-file hpinfo.txt -force -append;
gwmi Win32_PNPEntity | ?{$_.ConfigManagerErrorCode -ne 0} | select caption,deviceID,ConfigManagerErrorCode |fl | out-file hpinfo.txt -force -append;
Gwmi win32_service | ForEach-Object {
$path=""
$company=""
if($_.pathName -match '"(?<SvcPath>.*)"') {$path=$Matches['SvcPath']}
else {$path=($_.pathName -split ' ') | select -First 1}
if(-not [string]::IsNullOrWhiteSpace($path)) {$company=(Get-Item $path -ErrorAction Ignore).VersionInfo.CompanyName}
$_ | Add-Member -MemberType NoteProperty -Name "Manufacturer" -Value $company
$_} | Select-Object DisplayName, Manufacturer,State |
?{$_.Manufacturer -notlike "*microsoft*"} |
?{$_.state -eq "stopped"} | fl | out-file hpinfo.txt -force -append;
Get-AppxPackage | ?{$_.name -like "*omen*"} | select name,version |fl | out-file hpinfo.txt -force -append;
if (test-path C:WindowsOMENSDK_Ver.exe){(Get-Item C:WindowsOMENSDK_Ver.exe).versioninfo | out-file hpinfo.txt -force -append}
Get-CimInstance –ClassName Win32_DeviceGuard –Namespace rootMicrosoftWindowsDeviceGuard | out-file hpinfo.txt -force -append
- 打开c:hpinfo.txt将文件内容全选(ctrl+A)复制(ctrl+c)粘贴(ctrl+v)出来发帖回复,之后c:hpinfo.txt可以删除。
如果红字报错或没有文件,确认是以管理员身份运行了powershell