多媒体教室的电脑在使用过程中,不可避免的会自动下载到流氓软件。当然,说是流氓软件是因为,不能很好设置的话,就会弹出许多的广告弹窗,影响到正常上课。
下面是一些经典的流氓软件:
360
金山毒霸
腾讯安全管家
火绒
小鸟壁纸
flash中心
那么如何查看多媒体教室的电脑是否存在自动下载的这些流氓软件呢?以下是使用bat脚本的代码。
@if exist "C:Program Files (x86)360360safe" (echo 存在360)
@if exist "C:Program Files (x86)kingsoftkingsoft antivirus" (echo 存在金山毒霸)
@if exist "C:Program Files (x86)TencentQQPCMgr" (echo 存在qq管家)
@if exist "C:Program FilesHuorongSysdiag" (echo 存在火绒)
pause
一般用户可以打开设置里的安装的应用进行卸载,不过这种方法比较费事费力,而且有时会卸载失败,可以进入到windows的安全模式,然后使用脚本进行批量卸载。
以下是bat脚本的代码:
taskkill /f /im explorer.exe
del /s /q "C:Program Files (x86)360360safe"
del /s /q "C:Program Files (x86)kingsoftkingsoft antivirus"
del /s /q "C:Program Files (x86)TencentQQPCMgr"
del /s /q "C:Program FilesHuorongSysdiag"
rmdir /s /q "C:Program Files (x86)360360safe"
rmdir /s /q "C:Program Files (x86)kingsoftkingsoft antivirus"
rmdir /s /q "C:Program Files (x86)TencentQQPCMgr"
rmdir /s /q "C:Program FilesHuorongSysdiag"
msconfig
版权所有:明达职业技术学院 苏ICP备 10048023号-1 公网安备 32092402000211号