浏览器多了为什么不好
① 为什么无论什么浏览器用久了就都不好用了
xp系统在使用的时候会产生垃圾(系统备份,用于还原),上网浏览会产生ie缓存,从设计的初衷看是为了方便用户,其实是垃圾功能,让你使用时间长了以后系统越来越臃肿,速度越来越慢。 你可以将下面的内容复制到记事本里,然后存为后缀名为 .bat的文件,点击这个文件就可以自动清理垃圾: @echo off echo 正在清除系统垃圾文件,请稍等...... rem 提示部份软件卸载需LOG 文件,清理掉后就无法卸载 if exist "%windir%\*.log" del /f /s /q "%windir%\*.log" 2>nul if exist "%systemdrive%\*.log" del /f /s /q "%systemdrive%\*.log" 2>nul if exist "%systemdrive%\*.tmp" del /f /s /q "%systemdrive%\*.tmp" 2>nul if exist "%systemdrive%\*._mp" del /f /s /q "%systemdrive%\*._mp" 2>nul if exist "%systemdrive%\*.gid" del /f /s /q "%systemdrive%\*.gid" 2>nul if exist "%systemdrive%\*.chk" del /f /s /q "%systemdrive%\*.chk" 2>nul if exist "%systemdrive%\*.old" del /f /s /q "%systemdrive%\*.old" 2>nul if exist "%systemdrive%\*.ftg" del /f /s /q "%systemdrive%\*.ftg" 2>nul if exist "%systemdrive%\*.fts" del /f /s /q "%systemdrive%\*.fts" 2>nul if exist "%systemdrive%\*._mp" del /f /s /q "%systemdrive%\*._mp" 2>nul if exist "%systemdrive%\*.syd" del /f /s /q "%systemdrive%\*.syd" 2>nul if exist "%systemdrive%\*.ms" del /f /s /q "%systemdrive%\*.ms" 2>nul if exist "%systemdrive%\*.diz" del /f /s /q "%systemdrive%\*.diz" 2>nul if exist "%systemdrive%\*.??$" del /f /s /q "%systemdrive%\*.??$" 2>nul if exist "%systemdrive%\*.??~" del /f /s /q "%systemdrive%\*.??~" 2>nul if exist "%systemdrive%\*.$$$" del /f /s /q "%systemdrive%\*.$$$" 2>nul if exist "%systemdrive%\*.~*" del /f /s /q "%systemdrive%\*.~*" 2>nul if exist "%systemdrive%\*.@@@" del /f /s /q "%systemdrive%\*.@@@" 2>nul if exist "%systemdrive%\recycled\*.*" del /f /s /q %systemdrive%\recycled\*.* 2>nul if exist "%windir%\*.bak" del /f /s /q %windir%\*.bak 2>nul if exist "%windir%\*.tmp" del /f /s /q %windir%\*.tmp 2>nul if exist "%windir%\SoftwareDistribution\Download\*.*" del /f /s /q %windir%\SoftwareDistribution\Download\*.* 2>nul if exist "%systemroot%\temp\*.*" del /a /f /s /q "%systemroot%\temp\*.*" 2>nul if exist "%systemroot%\Prefetch\*.*" del /a /f /s /q "%systemroot%\Prefetch\*.*" 2>nul if exist "%systemroot%\minimp\*.*" del /f /q /s /a "%systemroot%\minimp\*.*" 2>nul if exist "%systemroot%\*.dmp" del /a /f /s /q "%systemroot%\*.dmp" 2>nul if exist "%systemroot%\*.tmp" del /a /f /s /q "%systemroot%\*.tmp" 2>nul if exist "%systemroot%\*._mp" del /a /f /s /q "%systemroot%\*._mp" 2>nul if exist "%systemroot%\*.gid" del /a /f /s /q "%systemroot%\*.gid" 2>nul if exist "%systemroot%\*.bak" del /a /f /s /q "%systemroot%\*.bak" 2>nul if exist "%systemroot%\*.old" del /a /f /s /q "%systemroot%\*.old" 2>nul if exist "%systemroot%\*.query" del /a /f /s /q "%systemroot%\*.query" 2>nul rd /s /q %windir%\temp & md %windir%\temp if exist "%userprofile%\Local Settings\Temp\*.*" del /f /s /q "%userprofile%\Local Settings\Temp\*.*" 2>nul if exist "%userprofile%\recent\*.*" del /f /s /q "%userprofile%\recent\*.*" 2>nul if exist "%ALLUSERSPROFILE%\Documents\DrWatson\*.*" del /f /q "%ALLUSERSPROFILE%\Documents\DrWatson\*.*" 2>nul if exist "%USERPROFILE%\Application Data\Microsoft\Office\Recent\*.lnk" del /f /q "%USERPROFILE%\Application Data\Microsoft\Office\Recent\*.lnk" 2>nul rem echo 正在清理临时文件…… for /d %%a in ("%temp%\*.*") do rd /s /q "%%a" del /a /f /s /q "%temp%\*.*" 2>nul for /d %%a in ("%tmp%\*.*") do rd /s /q "%%a" del /a /f /s /q "%tmp%\*.*" 2>nul echo 正在清理系统升级补丁留下来的反安装目录…… for /f "tokens=1" %%i in ('dir %SystemRoot%\$*$ /s /b /ad') do rd /s /q %%i echo 正在正在清理IE缓存、cookies、历史纪录等(当前用户)... reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Cache>vtemp.txt reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Cookies>>vtemp.txt reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v History>>vtemp.txt reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v NetHood>>vtemp.txt reg query "HKCU\software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Recent>>vtemp.txt for /f "tokens=3*" %%a in (vtemp.txt) do ( for /d %%i in ("%%a %%b\*.*") do rd /s /q "%%i" 2>Nul del /a /f /s /q "%%a %%b\*.*" del /q vtemp.txt 2>Nul ) echo 清除浏览器地址记录... reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedUrls" /f 2>nul REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TypedUrls" echo 清除运行记录... reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU" /f 2>nul REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU" /v "MRUList" /t reg_sz /d "a" /f echo
② 有好几个浏览器对电脑有什么坏处吗
除了火狐等个别浏览器有自己的内核外,其他浏览器都是以Ie为内核的,多了的好,可能导致相互间的不兼容,所以最好不好那么多,望采纳
③ 浏览器下载多了 有什么后果
多了一定会起冲突的,就会影响正常运行变慢,也会占用很多的内存空间,还特费流量,总之很不好的,亲,为什么要下载那么多啊,尽管很多,用中文更加麻烦的,我一直都在用手机qq浏览器,这个个的功能特别全,它包括了很多的使用功能,可以减省你下载别的软件的空间,而且它的软件小,占用内存少,不影响运行,不论是看电影,看小说还是玩游戏,浏览网页都效果更好,从来就没有卡顿,闪退的情况,挺稳定的。