回复 1F dg1vg4 的帖子
打开你电脑的powershell然后输入以下语句:
foreach ($i in Get-EventLog Application) {
if ($i.EntryType -match "Error") {
if ($i.Message -match "wsafech.exe") {
echo $i.Message >> $env:userprofile\Desktop\ErrorLog.txt
}
}
}
然后回车等待命令执行完,把生成在桌面上的ErrorLog.txt发过来