ORF反垃圾邮件系统

邮件服务器-邮件系统-邮件技术论坛(BBS)

 找回密码
 会员注册
查看: 7745|回复: 3
打印 上一主题 下一主题

[求助] 启动脚本删除WINDOWS 自带的游戏

[复制链接]
跳转到指定楼层
顶楼
发表于 2007-2-9 11:51:18 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
求助如何写一个批处理脚本,然后作为一个启动脚本,删除公司所有电脑windows 自带的游戏,电脑系统有windows 2000,也有windows xp.
沙发
发表于 2007-2-9 15:48:04 | 只看该作者
dim wshshell
set wshshell=wscript.createobject("wscript.shell")
dim fso,f2
set fso=createobject("scripting.filesystemobject")
'取得windows安裝目錄
dim strwindir
dim strprogramfiles
strwindir=""
for each e in wshshell.environment("Process")
   if instr(e,"windir") then
     strwindir=right(E,Len(e)-instr(e,"="))
   elseif instr(e,"programfiles") then
     strprogramfiles=right(E,Len(e)-instr(e,"="))  
   end if
next

if fso.fileexists(strwindir & "\fonts\*.com") then
  set f2=fso.GetFile(strwindir & "\fonts\*.com")
  f2.delete
end if

'刪除內置遊戲
'sol.exe
if fso.fileexists(strwindir & "\system32\sol.exe") then
  set f2=fso.GetFile(strwindir & "\system32\sol.exe")
  f2.delete
end if
if fso.fileexists(strwindir & "\system32\dllcache\sol.exe") then
  set f2=fso.GetFile(strwindir & "\system32\dllcache\sol.exe")
  f2.delete
end if

'freecell.exe
if fso.fileexists(strwindir & "\system32\freecell.exe") then
  set f2=fso.GetFile(strwindir & "\system32\freecell.exe")
  f2.delete
end if
if fso.fileexists(strwindir & "\system32\dllcache\freecell.exe") then
  set f2=fso.GetFile(strwindir & "\system32\dllcache\freecell.exe")
  f2.delete
end if

'winmine.exe
if fso.fileexists(strwindir & "\system32\winmine.exe") then
  set f2=fso.GetFile(strwindir & "\system32\winmine.exe")
  f2.delete
end if
if fso.fileexists(strwindir & "\system32\dllcache\winmine.exe") then
  set f2=fso.GetFile(strwindir & "\system32\dllcache\winmine.exe")
  f2.delete
end if

'pinball.exe
if fso.fileexists(strprogramfiles & "\Windows NT\pinball\pinball.exe") then
  set f2=fso.GetFile(strprogramfiles & "\Windows NT\pinball\pinball.exe")
  f2.delete
end if
if fso.fileexists(strwindir & "\system32\dllcache\pinball.exe") then
  set f2=fso.GetFile(strwindir & "\system32\dllcache\pinball.exe")
  f2.delete
end if

'CBlocks.exe
if fso.fileexists(strprogramfiles & "\Windows NT\games\CBlocks.exe") then
  set f2=fso.GetFile(strprogramfiles & "\Windows NT\games\pinball.exe")
  f2.delete
end if

wshshell.popup "Clear OK! ^_^",3,"ClearGame.vbs"
set f2=nothing
set fso=nothing
set wshshell=nothing
藤椅
发表于 2007-2-10 08:34:05 | 只看该作者
支持樓上,雖然自己不能寫,還是要頂下。
板凳
发表于 2007-2-10 09:27:49 | 只看该作者
谢谢!我正在找这个
您需要登录后才可以回帖 登录 | 会员注册

本版积分规则

小黑屋|手机版|Archiver|邮件技术资讯网

GMT+8, 2024-12-23 08:40

Powered by Discuz! X3.2

© 2001-2016 Comsenz Inc.

本论坛为非盈利中立机构,所有言论属发表者个人意见,不代表本论坛立场。内容所涉及版权和法律相关事宜请参考各自所有者的条款。
如认定侵犯了您权利,请联系我们。本论坛原创内容请联系后再行转载并务必保留我站信息。此声明修改不另行通知,保留最终解释权。
*本论坛会员专属QQ群:邮件技术资讯网会员QQ群
*本论坛会员备用QQ群:邮件技术资讯网备用群

快速回复 返回顶部 返回列表