正如标题所说,我的计算机网络接口在下载时崩溃了。
我在线Windows 10
。我的主板是asus p8h77-m pro
。
我可以正常使用我的电脑和互联网,我以前从未遇到过这个问题,有时会出现“微崩溃”,但每月一次,几秒钟......但现在我有一个最好的连接,我以前是 10mbps,现在是 600mbps。
我开始下载后几秒钟,我的网络就崩溃了,但这不是我的家庭网络,因为我仍然可以在其他设备上使用互联网,我测试过这一点。然后,如果我等几秒钟,互联网就会恢复,最终再次崩溃。
我需要帮助来尝试解决这个问题或者尝试了解发生了什么,但我不知道从哪里开始。
已修复:我买了一台新电脑。
答案1
如果其他电脑没有出现这个问题,那么看起来是你的电脑与新路由器存在不兼容的情况。
可能性非常大,因此这里有一些一般建议:
- 搜索网络适配器的驱动程序更新,也许还有调制解调器的固件
- 检查调制解调器的设置,看是否存在可能影响您计算机的因素
- 询问你的 ISP 支持人员是否可以安全地将调制解调器恢复出厂设置(或任何其他建议)
- 尝试另一个 USB 外置网络适配器,看看问题是否仅限于您的适配器。
答案2
我制作了一个 vbscript,它可以在您的桌面上创建一个带有热键的快捷方式Ctrl+Alt+D
,以便在您的连接出现问题时运行网络诊断并尝试修复它!
只需将此代码复制并粘贴到记事本中,然后将其保存为Network_Diagnostics.vbs
并双击执行即可创建快捷方式!
Option Explicit
' Vbscript Created by Hackoo on 09/06/2020 @16:00
' Tested only on Windows 10 (32 bits)
' Updated on 10/06/2020 for testing the Hotkey after creating the shortcut on the desktop
Dim Title : Title = "Shortcut Creator for Network Diagnostics by Hackoo 2020"
' We call the subroutine Create_Shortcut in order to create it on the desktop
Call Create_Shortcut(_
"NetworkDiagnostics",_
"%SystemRoot%\system32\msdt.exe",_
"-skip TRUE -path %Windir%\diagnostics\system\networking -ep NetworkDiagnosticsPNI",_
"%SystemRoot%\system32\msdt.exe,0",_
"Network Diagnostics to fix problems",_
"CTRL+ALT+D"_
)
' Showing a Message Box with three languages : English,French and Arabic
MsgBox "The shortcut was created successfully on your desktop !" & vbCrlf &_
"Le raccourci a été créé avec succès sur votre bureau !" & vbcrlf &_
"تم إنشاء الاختصار بنجاح على سطح المكتب الخاص بك !",vbInformation,Title
'-----------------------------------------------------------------------------------------------------------------
' Just for testing the Hotkey after creating the shortcut on the desktop :
' To send keyboard characters that are comprised of a regular keystroke in combination with a SHIFT, CTRL, or ALT,
' create a compound string argument that represents the keystroke combination.
' You do this by preceding the regular keystroke with one or more of the following special characters :
' Key ===> Special Character
' SHIFT ===> +
' CTRL ===> ^
' ALT ===> %
' For further reading about sendkeys : https://www.vbsedit.com/html/4b032417-ebda-4d30-88a4-2b56c24affdd.asp
CreateObject("WScript.Shell").Sendkeys "^%{d}"
'------------------------------------------------------------------------------------------------------------------
Sub Create_Shortcut(ShortcutName,TargetPath,Arguments,IconLocation,Description,HotKey)
Dim objShell,DesktopPath,objShortCut
Set objShell = CreateObject("WScript.Shell")
DesktopPath = objShell.SpecialFolders("Desktop")
Set objShortCut = objShell.CreateShortcut(DesktopPath & "\" & ShortcutName & ".lnk")
objShortCut.TargetPath = chr(34) & TargetPath & chr(34)
objShortCut.Arguments = Arguments
ObjShortCut.IconLocation = IconLocation
ObjShortCut.Description = Description
ObjShortCut.HotKey= HotKey
objShortCut.Save
End Sub
'-------------------------------------------------------------------------------------------------------------------
并参考 Stackoverflow 问题VBS 检查互联网并延迟脚本直到准备就绪
我今天 (2020 年 8 月 26 日) 又做了一个,不过.hta
你.vbs
可以试试