网管联盟 | 网管论坛 | 网管u家 | 网管博客 | 网管软件 | 网管求职 | 小游戏 | 网管搜索 | 网管原创 | 网管聚合 | 网管读摘 | 网管焦点 | 世界素材 | 会员投稿 | 会员中心 
中国网管联盟
Windows Linux Cisco 网络技术 数据库 黑客攻防 DotNet Java PHP 认证 新闻资讯 服务器 存储资讯 网络设备 网管学堂 技术专题 焦点 网吧频道
 当前位置: > bitsCN.com > 网吧频道 > 网吧技术 > 最新技术 > XXCopy与BeyondCompare更新游戏教程  

XXCopy与BeyondCompare更新游戏教程

2006-09-04  作者:BitsCN  来源:中国网管联盟  点评 投稿 收藏

 

网管网www.bitscn.com

中国网管联盟bitsCN.com

网管u家u.bitsCN.com

 

网管u家u.bitscn@com

再看看我制造^^文件和删除文件的更新效果: 网管u家bitscn.net

网管u家u.bitsCN.com

网管下载dl.bitscn.com


速度快的惊人!!

中国网管联盟bitsCN.com

在这里大家要好好想想我用XXCOPY 的思路,
XXCOPY 使用跟 XCOPY 一样的语法,它可以复制、移除、搜寻及列出文件/文件夹,能够完全复制(Clone)可开机磁碟,
该软件须于 DOS 底下以语法操作,而所有语法于 DOS 底下启动该程序时,会有列表说明。...运行环境:Win9x/Me/NT/2000/XP
下载XXCOPY后,把xxcopy.zip压缩包解压到一文件夹下,再双击install.bat文件,程序询问时,一律按下Y键可把它安装到系统文件夹下。
安装好了~看看下面的教程

网管论坛bbs_bitsCN_com


1:给大家讲解后台批处理更新

中国网管联盟bitsCN.com

首先讲客户机上的,很简单就一行文字,我们将客户机上的批处理文件命名为copy.bat要将它放在机子的启动项目中开机就能自动运行它。当然也可以放在别的地方,那你就得在注册表中建个项

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
\"AutoUp\"=\"C:\\copy.bat\"

或

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]

\"AutoUp\"=\"C:\\copy.exe\" 网管联盟bitsCN@com

         总之你要让它能起机就自动运行就可以了,路径随便设。

网管朋友网www_bitscn_net

不过我推荐大家使用《 Quickbfc 》  把BAT 编译成 EXE 幽灵程序 无窗口,即可在后台更新!

网管有家www.bitscn.net

copy.bat 或 copy.exe 的内容也简单,就是调用服务端的批处理程序,那以后有什么更新就都在服务端上做变动就可了.

网管论坛bbs_bitsCN_com

copy.bat                                      把他编译EXE 后台执行

网管u家bitscn.net

内容:     网管联盟bitsCN@com

echo off
cd\
net use x: \\192.168.0.17\netgames$         net use 2000/xp cmd 指令,这里用于建立 磁这里映射服务器到本地X:\
x:
if exist up.exe goto copy                                  
if not exist up.exe goto delend         这里判断UP.EXE是否存在,如果存在复制本地E:\  并执行
:copy
copy up.exe e:\up.exe
e:
start up.exe
exit                                          UP。EXE 不存在断开映射
:delend
c:
net use x: /delete
exit

网管u家u.bitsCN.com

服务器的up.exe 的内容也很简单   网管网www_bitscn_com

@xxcopy x:\梦幻西游 f:\netgames\梦幻西游\ /s/k/h/bi/y/zy/YY                         
@net use x: /delete                                                net use /del 删除建立的映射
exit 网管网www.bitscn.com


XXCOPY 参数 : 网管网www_bitscn_com

xxcopy /s/k/h/bi/y/zy
/pb 是XXCOPY的个性独有进度条
/s 所有文件及文件夹
/k 保持文件的属性
/h 复制系统文件和隐藏文件
/bi 只更新 时间/大小 不同的文件
/yy 遇到所有询问都选YES
/zy 删除只在目标里存在的文件 遇到询问总是选YES
rd/s/q 删除文件夹里的所有东西
@regedit/s/w 注册注册表文件,不会显示要你确定的选项

网管u家bitscn.net

然后在用 Quickbfc.exe 编译  将你所写的批处理命令 复制到源文件里,在选中菜单的“项目”的“选项”,他默认是控台程序,
你选中“幽灵程序”就好了~~它是无窗口的,只能在进程里才能看的到他。这也是我们想要的 网管u家u.bitsCN.com

 

网管u家u.bitscn@com


更新游戏的幽灵程序了 ,在后台更新的哦!! 网管网www.bitscn.com

网管有家bitscn.net

网管bitscn_com


XXCOPY 参数帮助在CMD 键入 xcopy /? 或 xcopy /helpa 中国网管联盟bitsCN.com

网管bitscn_com


2:选者批处理更新+XXCOPY 进度条,给顾客自定义的更新法子 网管联盟bitsCN@com


游戏更新程序.bat             两个批处理放在同一个目录下
no.bat 网管网www_bitscn_com

游戏更新程序.bat 的 内容如下: 网管朋友网www_bitscn_net

@call \\192.168.0.17\netgames$\update.exe                 调用服务器update.exe
@if exist \\192.168.0.17\netgames$\update.exe goto NO         如果不能连接跳到 NO.exe
:on
@call no.bat

网管bitscn_com


no.bat   内容如下

网管u家u.bitscn@com

@cd\
@color 9e
@cls
@echo.
@echo.
@echo  ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
@echo  ≡                                                                          ≡
@echo  ≡                        服务器连接已达到最大值                            ≡
@echo  ≡                                                                          ≡ 网管联盟bitsCN@com
@echo  ≡                    请稍候再启动本程序;祝你游戏愉快!                    ≡
@echo  ≡                                                                          ≡
@echo  ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
@echo.
@echo.
@echo.
@echo.
@echo.                             按任意键退出程序

网管有家www.bitscn.net

@echo.
@echo.
@echo.
@echo.
@pause
exit
网管网www_bitscn_com


而服务器的update.exe  的内容如下: 网管bitscn_com

@color 9e
@cd\
@cls
@echo off
echo         ※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※
echo         ※                新起点网吧-网络游戏更新程序               ※
echo         ※                                                          ※
echo         ※更新完成后自动退出并启动游戏;祝您游戏愉快!!            ※

网管联盟bitsCN@com


echo         ※                                                          ※
echo         ※                                       林文 QQ:76173430  ※
echo         ※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※※
echo ________________________________________________________________________________
:Selection
@rem User Choice
@echo 请根据你所需要进行的操作而作出选择:
@echo.
@echo 1:QQ堂  2: QQ幻想  3: 飚车  4: 传奇  5: 传奇世界  6: 大话西游II  7: 刀剑 网管网www.bitscn.com
@echo.
@echo 8: 华夏  9: 剑侠情缘  10: 剑侠情缘2  11: 劲乐团  12: 劲舞团  13: 冒险岛
@echo.
@echo 14: 梦幻国度 15: 梦幻西游  16: 墨香  17: 泡泡堂  18: 奇迹 19: 热血江湖
@echo.
@echo 20: 天骄II 21: 网络三缺一 22: 真封神 23: 街头篮球 24: 跑跑卡丁车 25: 疯狂赛车
@echo.
@echo 26: 希望 27: 三国群英传 28: 浩方对战平台 29: 联众世界
@echo.
@echo netgames : 更新全部   0: 退出本程序
@echo.
@set /p UserSelection=输入您要更新的游戏,回车确认(1,2,3,4,5,--26,)
@if \"%UserSelection%\"==\"1\" goto 1
@if \"%UserSelection%\"==\"2\" goto 2
@if \"%UserSelection%\"==\"3\" goto 3
@if \"%UserSelection%\"==\"4\" goto 4
@if \"%UserSelection%\"==\"5\" goto 5
@if \"%UserSelection%\"==\"6\" goto 6
@if \"%UserSelection%\"==\"7\" goto 7
@if \"%UserSelection%\"==\"8\" goto 8
@if \"%UserSelection%\"==\"9\" goto 9
@if \"%UserSelection%\"==\"10\" goto 10
@if \"%UserSelection%\"==\"11\" goto 11
网管有家www.bitscn.net

@if \"%UserSelection%\"==\"12\" goto 12
@if \"%UserSelection%\"==\"13\" goto 13
@if \"%UserSelection%\"==\"14\" goto 14
@if \"%UserSelection%\"==\"15\" goto 15
@if \"%UserSelection%\"==\"16\" goto 16
@if \"%UserSelection%\"==\"17\" goto 17
@if \"%UserSelection%\"==\"18\" goto 18
@if \"%UserSelection%\"==\"19\" goto 19
@if \"%UserSelection%\"==\"20\" goto 20
@if \"%UserSelection%\"==\"21\" goto 21
@if \"%UserSelection%\"==\"22\" goto 22
@if \"%UserSelection%\"==\"23\" goto 23
@if \"%UserSelection%\"==\"24\" goto 24
@if \"%UserSelection%\"==\"25\" goto 25
@if \"%UserSelection%\"==\"26\" goto 26
@if \"%UserSelection%\"==\"27\" goto 27
@if \"%UserSelection%\"==\"28\" goto 28
@if \"%UserSelection%\"==\"29\" goto 29
@if \"%UserSelection%\"==\"netgames\" goto netgames
@if \"%UserSelection%\"==\"0\" goto quit
@rem 输入其他字符
@cls
@goto Selection
网管网www_bitscn_com

:information
@cls
@goto Selection
:1
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\QQTang f:\netgames\QQTang\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\QQTang\Client.exe
@net use x: /delete
exit
@goto Doit
:2
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\QQ幻想 f:\netgames\QQ幻想\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\QQ幻想\client.exe
@net use x: /delete
exit
:3
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\飚车 f:\netgames\飚车\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\飚车\CTRUpdate.exe
@net use x: /delete
exit
:4
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\传奇 f:\netgames\传奇\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\传奇\mir.exe
@net use x: /delete
exit
:5
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\传奇世界 f:\netgames\传奇世界\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\传奇世界\woool.exe
@net use x: /delete
exit
:6
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\大话西游OnlineII f:\netgames\大话西游OnlineII\ /s/k/h/bi/y/zy/pb/YY

网管u家bitscn.net

@start F:\netgames\大话西游OnlineII\xy2.exe
@net use x: /delete
exit
:7
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\刀剑 f:\netgames\刀剑\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\刀剑\刀剑Online.exe
@net use x: /delete
exit
:8
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\华夏 f:\netgames\华夏\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\华夏\华夏Online.exe
@net use x: /delete
exit
:9
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\剑侠情缘 f:\netgames\剑侠情缘\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\剑侠情缘\JXOnline.exe
@net use x: /delete
exit
:10
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\剑侠情缘2 f:\netgames\剑侠情缘2\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\剑侠情缘2\Jxonline2.exe
@net use x: /delete
exit
:11
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\劲乐团 f:\netgames\劲乐团\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\劲乐团\run.exe
@net use x: /delete
exit
:12
@net use x: \\192.168.0.17\netgames$

网管有家www.bitscn.net


@xxcopy x:\劲舞团 f:\netgames\劲舞团\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\劲舞团\run.exe
@net use x: /delete
exit
:13
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\冒险岛 f:\netgames\冒险岛\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\冒险岛\MapleStory.exe
@net use x: /delete
exit
:14
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\梦幻国度 f:\netgames\梦幻国度\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\梦幻国度\mland.exe
@net use x: /delete
exit
:15
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\梦幻西游 f:\netgames\梦幻西游\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\梦幻西游\my.exe
@net use x: /delete
exit
:16
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\墨香 f:\netgames\墨香\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\墨香\MHExecuter.exe
@net use x: /delete
exit
:17
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\泡泡堂 f:\netgames\泡泡堂\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\泡泡堂\ca.exe
@net use x: /delete 网管联盟bitsCN@com
exit
:18
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\奇迹 f:\netgames\奇迹\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\奇迹\MU.exe
@net use x: /delete
exit
:19
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\热血江湖 f:\netgames\热血江湖\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\热血江湖\launcher.exe
@net use x: /delete
exit
:20
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\天骄II f:\netgames\天骄II\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\天骄II\Play.exe
@net use x: /delete
exit
:21
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\网络三缺一 f:\netgames\网络三缺一\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\网络三缺一\Ghclient.exe
@net use x: /delete
exit
:22
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\真封神 f:\netgames\真封神\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\真封神\zfs.exe
@net use x: /delete
exit
:23
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\街头篮球 f:\netgames\街头篮球\ /s/k/h/bi/y/zy/pb/YY 网管下载dl.bitscn.com
@start F:\netgames\街头篮球\FSBox.exe
@net use x: /delete
exit
:24
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\跑跑卡丁车 f:\netgames\跑跑卡丁车\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\跑跑卡丁车\KartRider.exe
@net use x: /delete
exit
:25
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\疯狂赛车 f:\netgames\疯狂赛车\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\疯狂赛车\CrazyKart.exe
@net use x: /delete
exit
:26
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\希望 f:\netgames\希望\ /s/k/h/bi/y/zy/pb/YY
@start f:\netgames\希望\autoupdate.exe
@net use x: /delete
exit
:27
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\SGOL f:\netgames\SGOL\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\SGOL\Loader.exe
@net use x: /delete
exit
:28
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\cga f:\netgames\cga\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\cga\Gameclient.exe
@net use x: /delete
exit
:29
@net use x: \\192.168.0.17\netgames$
网管u家www.bitscn.net

@xxcopy x:\联众 f:\netgames\联众\ /s/k/h/bi/y/zy/pb/YY
@start F:\netgames\联众\Game\share\GLWorld.exe
@net use x: /delete
exit
:netgames
@net use x: \\192.168.0.17\netgames$
@xxcopy x:\QQTang f:\netgames\QQTang\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\QQ幻想 f:\netgames\QQ幻想\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\飚车 f:\netgames\飚车\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\传奇 f:\netgames\传奇\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\传奇世界 f:\netgames\传奇世界\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\大话西游OnlineII f:\netgames\大话西游OnlineII\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\刀剑 f:\netgames\刀剑\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\华夏 f:\netgames\华夏\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\剑侠情缘 f:\netgames\剑侠情缘\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\剑侠情缘2 f:\netgames\剑侠情缘2\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\劲乐团 f:\netgames\劲乐团\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\劲舞团 f:\netgames\劲舞团\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\冒险岛 f:\netgames\冒险岛\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\梦幻国度 f:\netgames\梦幻国度\ /s/k/h/bi/y/zy/pb/YY

中国网管论坛bbs.bitsCN.com


@xxcopy x:\梦幻西游 f:\netgames\梦幻西游\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\墨香 f:\netgames\墨香\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\泡泡堂 f:\netgames\泡泡堂\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\奇迹 f:\netgames\奇迹\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\热血江湖 f:\netgames\热血江湖\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\天骄II f:\netgames\天骄II\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\网络三缺一 f:\netgames\网络三缺一\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\真封神 f:\netgames\真封神\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\街头篮球 f:\netgames\街头篮球\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\跑跑卡丁车 f:\netgames\跑跑卡丁车\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\疯狂赛车 f:\netgames\疯狂赛车\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\希望 f:\netgames\希望\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\SGOL f:\netgames\SGOL\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\cga f:\netgames\cga\ /s/k/h/bi/y/zy/pb/YY
@xxcopy x:\联众 f:\netgames\联众\ /s/k/h/bi/y/zy/pb/YY
@net use x: /delete
exit
:no
@exit
中国网管论坛bbs.bitsCN.com

效果图: 网管u家u.bitsCN.com

网管有家bitscn.net

下图中的_游戏更新_  就是调用服务器的 update.exe  了

中国网管论坛bbs.bitsCN.com


这样需要改动的话,就服务器变动下. 网管网www_bitscn_com

游戏更新程序.bat  把他和游戏放在一块,顾客需要更新的就打开他,输入要更新游戏游戏的对应1-30数字,回车就可以了 网管论坛bbs_bitsCN_com

  网管网www.bitscn.com

XXCOPY+bat代码+说明+注册表
 点击浏览该文件

网管网www.bitscn.com

 

网管朋友网www_bitscn_net


不能启动游戏的解决办法 网管下载dl.bitscn.com

1.像大话西游II 梦幻西游 启动不能为 start d:\game\梦幻西游\my.exe ; 他不支持DOS底下运行 ,你创建一个快捷方式 ,start d:\game\梦幻西游\my.lnk   这样就可以了
  大家还是执行快捷方式好一点

网管论坛bbs_bitsCN_com

·2.    Beyond Compare    批处理更新  与 XXCOPY  的方法一差不多
          给大家参考下

网管网www_bitscn_com

批处理UPDATE 网管u家www.bitscn.net

@color 1f
@cls
@echo off
echo ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
echo    ‖                   新起点网吧—网游更新程序                         ‖
echo    ‖                                                                    ‖
echo    ‖  更新完成后自动退出并启动游戏,请耐心等待:祝您游戏愉快!!         ‖

网管联盟bitsCN@com


echo    ‖                                                                    ‖
echo    ‖                                          林文 QQ:76173430         ‖
echo ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
@echo.
:Selection
@rem User Choice
@echo 请根据你所需要进行的操作而作出选择:
@echo.
@echo  ‖ 1:QQ堂  2: QQ幻想  3: 飚车 4: 传奇 5: 传奇世界 6: 大话西游II 7: 刀剑  ‖ 网管有家www.bitscn.net
@echo ..............................................................................
@echo  ‖ 8: 华夏 9: 剑侠情缘  10: 剑侠情缘2 11: 劲乐团 12: 劲舞团  13: 冒险岛   ‖
@echo ..............................................................................
@echo  ‖ 14: 梦幻国度 15: 梦幻西游  16: 墨香 17: 泡泡堂  18: 奇迹 19: 热血江湖  ‖
@echo ..............................................................................
@echo  ‖ 20: 天骄II  21: 网络三缺一  22: 真封神  23: 街头篮球 24: 跑跑卡丁车    ‖
@echo ..............................................................................
@echo  ‖ 25: 疯狂赛车   26: 希望  27: 三国群英传   28: 浩方对战平台             ‖
@echo ..............................................................................
@echo  ‖ 0: 退出本程序                                                          ‖
网管u家u.bitscn@com

@echo ..............................................................................
@echo.
@set /p UserSelection=输入您要更新的游戏,回车确认(1,2,3,4,5,--28,)
@if \"%UserSelection%\"==\"1\" goto 1
@if \"%UserSelection%\"==\"2\" goto 2
@if \"%UserSelection%\"==\"3\" goto 3
@if \"%UserSelection%\"==\"4\" goto 4
@if \"%UserSelection%\"==\"5\" goto 5
@if \"%UserSelection%\"==\"6\" goto 6
@if \"%UserSelection%\"==\"7\" goto 7
@if \"%UserSelection%\"==\"8\" goto 8
@if \"%UserSelection%\"==\"9\" goto 9
@if \"%UserSelection%\"==\"10\" goto 10
@if \"%UserSelection%\"==\"11\" goto 11
@if \"%UserSelection%\"==\"12\" goto 12
@if \"%UserSelection%\"==\"13\" goto 13
@if \"%UserSelection%\"==\"14\" goto 14
@if \"%UserSelection%\"==\"15\" goto 15
@if \"%UserSelection%\"==\"16\" goto 16
@if \"%UserSelection%\"==\"17\" goto 17
@if \"%UserSelection%\"==\"18\" goto 18
@if \"%UserSelection%\"==\"19\" goto 19
@if \"%UserSelection%\"==\"20\" goto 20
网管联盟bitsCN_com

@if \"%UserSelection%\"==\"21\" goto 21
@if \"%UserSelection%\"==\"22\" goto 22
@if \"%UserSelection%\"==\"23\" goto 23
@if \"%UserSelection%\"==\"24\" goto 24
@if \"%UserSelection%\"==\"25\" goto 25
@if \"%UserSelection%\"==\"26\" goto 26
@if \"%UserSelection%\"==\"27\" goto 27
@if \"%UserSelection%\"==\"28\" goto 28
@if \"%UserSelection%\"==\"0\" goto quit
@rem 输入其他字符
@cls
@goto Selection 网管u家u.bitscn@com

:information
@cls
@goto Selection
:1
@net use x: \\192.168.0.222\netgames$
@BC2.exe @QQ堂.txt
@start F:\netgames\QQTang\Client.exe
@net use x: /del
exit
@goto Doit
:2
@net use x: \\192.168.0.222\netgames$
@BC2.exe @QQ幻想.txt
@start F:\netgames\QQ幻想\client.exe
@net use x: /delete
exit
:3
@net use x: \\192.168.0.222\netgames$
@BC2.exe @飚车.txt
@start F:\netgames\飚车\CTRUpdate.exe
@net use x: /delete
exit
:4
@net use x: \\192.168.0.222\netgames$
@BC2.exe @传奇.txt
@start F:\netgames\传奇\mir.exe
@net use x: /delete
exit
:5
@net use x: \\192.168.0.222\netgames$
@BC2.exe @传奇世界.txt
@start F:\netgames\传奇世界\woool.exe
@net use x: /del
exit
:6
@net use x: \\192.168.0.222\netgames$
@BC2.exe @大话西游II.txt
@start C:\progra~1\Hintsoft\Pubclt\2网络游戏\大话西游II.lnk
@net use x: /del
exit
:7
@net use x: \\192.168.0.222\netgames$
@BC2.exe @刀剑.txt

网管论坛bbs_bitsCN_com


@start F:\netgames\刀剑\刀剑Online.exe
@net use x: /del
exit
:8
@net use x: \\192.168.0.222\netgames$
@BC2.exe @华夏.txt
@start F:\netgames\华夏\华夏Online.exe
@net use x: /del
exit
:9
@net use x: \\192.168.0.222\netgames$
@BC2.exe @剑侠情缘.txt
@start F:\netgames\剑侠情缘\JXOnline.exe
@net use x: /del
exit
:10
@net use x: \\192.168.0.222\netgames$
@BC2.exe @剑侠情缘2.txt
@start F:\netgames\剑侠情缘2\Jxonline2.exe
@net use x: /del
exit
:11
@net use x: \\192.168.0.222\netgames$
@BC2.exe @劲乐团.txt
@start F:\netgames\劲乐团\O2Jam.exe
@net use x: /del
exit
:12
@net use x: \\192.168.0.222\netgames$
@BC2.exe @劲舞团.txt
@start F:\netgames\劲舞团\patcher.exe
@net use x: /del
exit
:13
@net use x: \\192.168.0.222\netgames$
@BC2.exe @冒险岛.txt
@start F:\netgames\冒险岛\MapleStory.exe
@net use x: /del
exit
:14
@net use x: \\192.168.0.222\netgames$
@BC2.exe @梦幻国度.txt
@start F:\netgames\梦幻国度\mland.exe 网管朋友网www_bitscn_net
@net use x: /del
exit
:15
@net use x: \\192.168.0.222\netgames$
@BC2.exe @梦幻西游.txt
@start C:\progra~1\Hintsoft\Pubclt\2网络游戏\梦幻西游.lnk
@net use x: /del
exit
:16
@net use x: \\192.168.0.222\netgames$
@BC2.exe @墨香.txt
@start F:\netgames\墨香\MHExecuter.exe
@net use x: /del
exit
:17
@net use x: \\192.168.0.222\netgames$
@BC2.exe @泡泡堂.txt
@start F:\netgames\泡泡堂\ca.exe
@net use x: /del
exit
:18
@net use x: \\192.168.0.222\netgames$
@BC2.exe @奇迹.txt
@start F:\netgames\奇迹\MU.exe
@net use x: /del
exit
:19
@net use x: \\192.168.0.222\netgames$
@BC2.exe @热血江湖.txt
@start F:\netgames\热血江湖\launcher.exe
@net use x: /del
exit
:20
@net use x: \\192.168.0.222\netgames$
@BC2.exe @天骄II.txt
@start F:\netgames\天骄II\Play.exe
@net use x: /del
exit
:21
@net use x: \\192.168.0.222\netgames$
@BC2.exe @网络三缺一.txt
@start F:\netgames\网络三缺一\Ghclient.exe 网管u家u.bitsCN.com
@net use x: /del
exit
:22
@net use x: \\192.168.0.222\netgames$
@BC2.exe @真封神.txt
@start F:\netgames\真封神\zfs.exe
@net use x: /del
exit
:23
@net use x: \\192.168.0.222\netgames$
@BC2.exe @街头篮球.txt
@start F:\netgames\街头篮球\FSBox.exe
@net use x: /del
exit
:24
@net use x: \\192.168.0.222\netgames$
@BC2.exe @跑跑卡丁车.txt
@start F:\netgames\跑跑卡丁车\KartRider.exe
@net use x: /del
exit
:25
@net use x: \\192.168.0.222\netgames$
@BC2.exe @疯狂赛车.txt
@start F:\netgames\疯狂赛车\CrazyKart.exe
@net use x: /del
exit
:26
@net use x: \\192.168.0.222\netgames$
@BC2.exe @希望.txt
@start f:\netgames\希望\autoupdate.exe
@net use x: /del
exit
:27
@net use x: \\192.168.0.222\netgames$
@BC2.exe @三国群英传.txt
@start F:\netgames\SGOL\Loader.exe
@net use x: /del
exit
:28
@net use x: \\192.168.0.222\netgames$
@BC2.exe @浩方对战平台.txt
@start F:\netgames\cga\Gameclient.exe
@net use x: /del 网管联盟bitsCN@com
exit
网管u家bitscn.net

:no
@exit

网管论坛bbs_bitsCN_com

Beyond Compare  脚本    

网管网www_bitscn_com

@BC2.exe @QQ幻想.txt   
内容:
load \"x:\QQ幻想\" \"f:\netgames\QQ幻想\"
  expand all
  select rt.orphan
  delete rt
  option confirm:yes-to-all
  select lt.newer.files lt.older.files lt.orphan lt.diff.files
  copy left->right
网管有家bitscn.net

TAGs   教程   游戏   更新   x:   netgames   use   @net   goto   f:   exit   @if      
 上一篇:ROS:比限速更高层次运用   下一篇:SATA硬盘安装使用必读问答集
XXCopy与BeyondCompare更新游戏教程 评论:
loading.. 评论加载中…
评论:请自觉遵守互联网相关政策法规,评论不得超过250字。

验证码: 注册用户
本类热门排行:
最新推荐文章:
网管论坛交流: