机房管理的困难之一在于,操作系统安装以后,会自带部分游戏,这会给部分学生提供了机会,导致成绩越发不理想。
因此,有效的方法就是将系统自带的小游戏全部删除,让学生玩不成游戏。一台一台的删除系统自带的游戏,那么,实在太困难了,我们得找到有效的方法。
下面,就介绍一种方法,使用批处理代码删除系统自带的小游戏。
代码如下:
@echo off
color 1a
del "C:\Program Files\MSN Gaming Zone\Windows\Rvsezm.exed"
del "C:\Program Files\MSN Gaming Zone\Windows\shvlzm.exe"
del "C:\Program Files\MSN Gaming Zone\Windows\hrtzzm.exe"
del "C:\Program Files\MSN Gaming Zone\Windows\bckgzm.exe"
del "C:\Program Files\MSN Gaming Zone\Windows\chkrzm.exe"
del "%SystemRoot%\system32\mshearts.exe"
del "%SystemRoot%\system32\freecell.exe"
del "C:\Program Files\Windows NT\Pinball\PINBALL.EXE"
del "%SystemRoot%\system32\winmine.exe"
del "%SystemRoot%\system32\spider.exe"
del "%SystemRoot%\system32\sol.exe"
@echo off
c:
cd\
cd windows
cd system32
del /f /s /q /a -a -s -r -h Rvsezm.exe
del /f /s /q /a -a -s -r -h shvlzm.exe
del /f /s /q /a -a -s -r -h hrtzzm.exe
del /f /s /q /a -a -s -r -h bckgzm.exe
del /f /s /q /a -a -s -r -h chkrzm.exe
del /f /s /q /a -a -s -r -h mshearts.exe
del /f /s /q /a -a -s -r -h freecell.exe
del /f /s /q /a -a -s -r -h PINBALL.EXE
del /f /s /q /a -a -s -r -h winmine.exe
del /f /s /q /a -a -s -r -h spider.exe
del /f /s /q /a -a -s -r -h sol.exe
exit
上面的代码呢,你将其粘贴到记事本中,然后,保存的时候,保存成为BAT格式的文件,最后双击运行,系统自带的小游戏就被删除了。