当玩家在关闭Dota 2游戏后突然遭遇到steamerrorreporter的出现时,可能会感到困惑和不知所措,这种情况通常意味着在游戏过程中出现了一些错误或异常情况,导致游戏无法正常关闭。不必过于担心,因为我们可以采取一些简单的步骤来解决这个问题。在本文中我们将探讨一些可能的解决方案,帮助您摆脱steamerrorreporter的困扰,以便继续畅玩Dota 2。
步骤如下:
1.首先,创建一个批处理文件 cmd/bat
@echo off
:TOP
tasklist|find /i "steamerrorreporter64.exe" >nul
if errorlevel 0 taskkill /im steamerrorreporter64.exe /t /f
tasklist|find /i "steamerrorreporter.exe" >nul
if errorlevel 0 taskkill /im steamerrorreporter.exe /t /f
ping localhost -n 3
goto TOP
说明:
ping localhost -n 3 这是每3秒运行一次的命令
goto TOP 循环运行
2.然后创建一个vbs文件:
createobject("wscript.shell").run "D:\Others\steamerrorreporter.cmd",0
说明:
D:\Others\steamerrorreporter.cmd 为上步创建的批处理文件路径
该文件作用是后台运行批处理文件
3.最后把vbs文件写入开机启动项,创建一个reg文件:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"errorreporter"="\"E:\\Others\\errorreporter.vbs\" -s"
说明:
E:\\Others\\errorreporter.vbs 为vbs文件路径
双击添加进启动项就行了
以上就是steamerrorreporter可以删除的全部内容,如果遇到这种情况,你可以根据以上步骤解决,非常简单快速,一步到位。
相关教程
2023-08-26
2023-07-16
2023-06-14
2023-12-01
2023-07-07
2023-09-06
2024-01-29
2023-11-02
2023-11-18
2024-12-19
2024-11-20
2024-11-10
2024-11-01
2024-10-28
2024-10-27