找回密码
 注册
搜索
系统gho:最纯净好用系统下载站投放广告、加入VIP会员,请联系 微信:wuyouceo
查看: 5817|回复: 29

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

[复制链接]
发表于 2005-4-9 11:08:16 | 显示全部楼层 |阅读模式
[这个贴子最后由kaibiao在 2005/04/10 11:22am 第 1 次编辑]

XPlode制作Windows安装光盘方法
这是一种老外发明的安装系统补丁的方式(以前名叫XPinstall),它是在系统安装剩余12分钟时执行的,通过读取XPlode.XML来调用的。
下面介绍一个暂时最高的版本4.1的用法!
它在执行时会弹出一个提示框,正在执行的安装会以高亮显示。目录规则:
$oem$\
$oem$\
$oem$\INSTALL
$oem$\INSTALL\XPlode.EXE
$oem$\INSTALL\XPlode.XML
$oem$\INSTALL\XPlodeOriginalInstall.x4d
$oem$\INSTALL\XPlodeSilentInstall.x4d
$oem$\INSTALL\XPlodeGFXInstall.x4d
$oem$\INSTALL\XPlodeSelectInstall.x4d
$oem$\INSTALL\XPlodeAcctMgmt.x4e
$oem$\INSTALL\XPlodeExecute.x4e
$oem$\INSTALL\XPlodeFileOps.x4e
$oem$\INSTALL\XPlodeMisc.x4e
$oem$\INSTALL\XPlodeRegistry.x4e
$oem$\INSTALL\IMAGES\foot.png
$oem$\INSTALL\IMAGES\head.png
$oem$\INSTALL\IMAGES\main.png
$oem$\INSTALL\Updata\
其中XPlode.EXE和XPlode.XML是它的执行文件和脚本文件,IMAGES目录中放的是它的外观图片,Updata目录放的是系统补丁。
XPlodeOriginalInstall.x4d就是调用IMAGES目录下的图片文件来做背景图。
XPlodeSilentInstall.x4d就是无截面安装。
XPlodeGFXInstall.x4d就是背景透明安装。
XPlodeSelectInstall.x4d就是可选择安装 。
接下来要说明的是XPlode.XML了!
以下是XPlode.XML的一个例子:
   
<XPlode4>
<config>
<environment>
<display.title>Windows 安装补丁</display.title>
<display.complete>completed</display.complete>
<acctmgmt.adduser>Adding user: &#35;1&#35;</acctmgmt.adduser>
<acctmgmt.deluser>Deleting user: &#35;1&#35;</acctmgmt.deluser>
<acctmgmt.addgroup>Adding group: &#35;1&#35;</acctmgmt.addgroup>
<acctmgmt.delgroup>Deleting group: &#35;1&#35;</acctmgmt.delgroup>
<execute.string>Executing: &#35;1&#35;</execute.string>
<misc.sfcos-disable>Disabling Windows File Protection</misc.sfcos-disable>
<misc.sfcos-enable>Enabling Windows File Protection</misc.sfcos-enable>
<registry.read>Reading from registry</registry.read>
<registry.write>Writing to registry</registry.write>
</environment>
<display plugin=';&#35;XPLODE&#35;\XPlodeOriginalInstall.x4d';>
<show total=';6'; after=';4'; subcount=';true'; />
<font face=';Tahoma'; antialias=';true'; small=';8'; large=';13'; />
<window width=';440'; position=';6'; fixmain=';0'; />
<windowmode mode=';standalone'; border=';false'; />
<colours>
<header back=';&#35;003399'; fore=';&#35;FFFFFF'; image=';&#35;XPLODE&#35;\images\head.png'; />
<footer back=';&#35;003399'; fore=';&#35;FFFFFF'; image=';&#35;XPLODE&#35;\images\foot.png'; />
<progress border=';&#35;000000'; back=';&#35;FFFFFF'; fore=';&#35;008800'; fore2=';&#35;00AA00'; />
<main back=';&#35;6699FF'; fore=';&#35;FFFFFF'; current=';&#35;FFFF00'; description=';&#35;FFFFFF';
image=';&#35;XPLODE&#35;\images\main.png'; overlay=';&#35;FFFFFF22'; />
</colours>
</display>
</config>
<items>
<item display="&raquo; 建立默认用户">
<adduser display="&raquo; 建立用户中 请稍后...">
<username>企鹅</username>
<group>Administrators</group>
</adduser>
</item>
<item display="&raquo; 安装 WinRAR 3.42">
<execute display="&raquo; 正在安装 WinRAR 3.42 请稍后...">
<program>&#35;XPLODE&#35;\Wrar342sc.exe</program>
<program>&#35;XPLODE&#35;\Wrar342sc.exe</program>
</execute>
</item>
<item display="&raquo; 安装 Windows主题">
<execute display="&raquo; 正在安装 Windows主题 请稍后...">
<program>&#35;XPLODE&#35;\ROYALE.EXE</program>
<arguments>/S</arguments>
</execute>
</item>
<item display="&raquo; 安装Windows更新程序">
<execute display="&raquo; 正在安装 Windows Media Player 10 请稍后...">
<program>&#35;XPLODE&#35;\Updata\WMP10.exe</program>
<arguments>/Q:A /c:"setup_wm.exe /DisallowSystemRestore /Q /R:N"</arguments>
</execute>
<execute display="&raquo; 正在安装 KB834707 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB834707.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB867282 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB867282.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB873333 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB873333.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB873339 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB873339.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB884020 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB884020.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB884883 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB884883.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB885222 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB885222.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB885250 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB885250.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB885835 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB885835.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB885836 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB885836.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB886185 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB886185.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB886677 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB886677.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB886716 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB886716.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB887472 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB887472.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB887742 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB887742.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB887797 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB887797.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB888113 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB888113.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB888302 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB888302.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB889016 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB889016.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB890047 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB890047.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB890175 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB890175.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB890831 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB890831.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; 正在安装 KB891781 请稍后...">
<program>&#35;XPLODE&#35;\Updata\KB891781.exe</program>
<arguments>/quiet /norestart /n</arguments>
</execute>
<execute display="&raquo; Installing MSJavaVM 请稍后...">
<program>&#35;XPLODE&#35;\hotfix\MSJavx86.exe</program>
<arguments>/Q:A /R:N</arguments>
</execute>
<execute display="&raquo; Installing MSJavaVM 请稍后...">
<program>&#35;XPLODE&#35;\hotfix\MSJavWU.exe</program>
<arguments>/Q:A /R:N</arguments>
</execute>
</item>
<item display="&raquo; 注册表优化">
<execute display="&raquo; 注册表优化中 请稍后...">
<program>regedit</program>
<arguments>/s "&#35;XPLODE&#35;\YOUHUA.REG"</arguments>
</execute>
</item>
</items>
</XPlode4>


说明:
config为安装时窗体的显示设置
window width=';420'; height=';180'; position=';6'; 这一行它的意思如下:
1:window width=';420'; height=';180'; 代表了显示界面的大小,宽420,高180 (一般可以不用设置height项!)
2:position=';6';代表了显示界面是放在那个地方。如图所示:
0  1  2
3  4  5
6  7  8
要是0或9,或9以上的数字,那它都是在界面的左上角
items为安装命令的设置部分
在items里面的item为在安装时在窗体中的主分支部分,其中语句中包含的安装语句可以为一个或多个!
在安装的语句中的';<execute display="&raquo; 注册表优化中 请稍后...">';是显示的信息,
<program>&#35;XPLODE&#35;\Wrar342sc.exe</program> 是路径,<program>&#35;XPLODE&#35;\Wrar342sc.exe</program>是安装的参数!
另外,想让它在剩余12分钟时运行,就必须在自动应答文件CMDLines.txt中加入以下字段:
[Commands]
".\INSTALL\XPlode.exe"
以上做的是用XPlodeOriginalInstall.x4d控件做的!
用XPlodeGFXInstall.x4d控件来做的话就把以下的代码替换以下就可以了!要是需要修改颜色的话就修改<colours>项里的fore的属性就可以了

<config>
<environment>
<display.title>XPlode Installation</display.title>
<display.complete>completed</display.complete>
<acctmgmt.adduser>Adding user: &#35;1&#35;</acctmgmt.adduser>
<acctmgmt.deluser>Deleting user: &#35;1&#35;</acctmgmt.deluser>
<acctmgmt.addgroup>Adding group: &#35;1&#35;</acctmgmt.addgroup>
<acctmgmt.delgroup>Deleting group: &#35;1&#35;</acctmgmt.delgroup>
<execute.string>Executing: &#35;1&#35;</execute.string>
<misc.sfcos-disable>Disabling Windows File Protection</misc.sfcos-disable>
<misc.sfcos-enable>Enabling Windows File Protection</misc.sfcos-enable>
<misc.netstart>Starting &#35;1&#35;</misc.netstart>
<misc.netstop>Stopping &#35;1&#35;</misc.netstop>
<registry.read>Reading from registry</registry.read>
<registry.write>Writing to registry</registry.write>
</environment>
<display plugin=';&#35;XPLODE&#35;\XPlodeGFXInstall.x4d';>
<show total=';6'; after=';4'; subcount=';true'; />
<font face=';Verdana'; antialias=';true'; small=';8'; large=';13'; />
<window width=';420'; height=';200'; position=';4'; />
<windowmode border=';true'; ontop=';false'; />
<colours>
<header x=';4'; y=';4'; fore=';&#35;FFFFFF'; />
<footer x=';4'; y=';180'; width=';410'; fore=';&#35;FFFFFF'; />
<progress border=';&#35;000000'; back=';&#35;FFFFFF'; fore=';&#35;008800'; />
<main x=';16'; y=';40'; width=';388'; fore=';&#35;FFFFFF'; current=';&#35;FFFF00'; description=';&#35;FFFF80';
overlay=';&#35;FFFFFF44';/>
</colours>
</display>
</config>


用XPlodeSelectInstall.x4d控件来做的话就把以下的代码替换以下,并在xplode.exe的所在目录下建立一个selection文件夹,在selection目
录中建立一个select-frameset.html
(因为时间问题这个文件的编写方法还没研究过!在后续的时间里我将会研究以下这个文件的编写方法,测试成功后将发布编写方法)
(这个控件一般用与在XP状态下制作软件安装管理的,不推荐在系统集成安装中使用)
  
<config>
<environment>
<display.title>Windows 安装补丁</display.title>
<display.complete>completed</display.complete>
<acctmgmt.adduser>Adding user: &#35;1&#35;</acctmgmt.adduser>
<acctmgmt.deluser>Deleting user: &#35;1&#35;</acctmgmt.deluser>
<acctmgmt.addgroup>Adding group: &#35;1&#35;</acctmgmt.addgroup>
<acctmgmt.delgroup>Deleting group: &#35;1&#35;</acctmgmt.delgroup>
<execute.string>Executing: &#35;1&#35;</execute.string>
<misc.sfcos-disable>Disabling Windows File Protection</misc.sfcos-disable>
<misc.sfcos-enable>Enabling Windows File Protection</misc.sfcos-enable>
<misc.netstart>Starting &#35;1&#35;</misc.netstart>
<misc.netstop>Stopping &#35;1&#35;</misc.netstop>
<registry.read>Reading from registry</registry.read>
<registry.write>Writing to registry</registry.write>
<fileio.copy>Copying: &#35;1&#35; to &#35;2&#35; (&#35;3&#35; of &#35;4&#35;, &#35;5&#35; of &#35;6&#35;)</fileio.copy>
<fileio.move>Moving: &#35;1&#35; to &#35;2&#35; (&#35;3&#35; of &#35;4&#35;, &#35;5&#35; of &#35;6&#35;)</fileio.move>
<fileio.delete>Deleting: &#35;1&#35; from &#35;2&#35; (&#35;4&#35;)</fileio.delete>
<fileio.rename>Renaming: &#35;1&#35; to &#35;2&#35;</fileio.rename>
<fileio.shortcut>Creating shortcut to &#35;1&#35;</fileio.shortcut>
</environment>
<display plugin=';&#35;XPLODE&#35;\XPlodeSelectInstall.x4d';>
<window width="800" height="600" titlebar="0" border="0" position="4" />
<html>&#35;XPLODE&#35;\selection\select-frameset.html</html>
<config>Testing</config>
<config>---</config>
<config>&#35;COMPUTERNAME&#35;</config>
<config>---</config>
<config>HAILSTORM</config>
<config>AFTERSHOCK</config>
<config>MYSTIQUE</config>
<config>FAILSAFE</config>
<config>---</config>
<delay>10</delay>
<autoclose>true</autoclose>
</display>
</config>


用XPlodeSelectInstall.x4d控件来做的话就把以下的代码替换以下就可以了!
   
<config>
<environment>
<acctmgmt.adduser>Adding user: &#35;1&#35;</acctmgmt.adduser>
<acctmgmt.deluser>Deleting user: &#35;1&#35;</acctmgmt.deluser>
<acctmgmt.addgroup>Adding group: &#35;1&#35;</acctmgmt.addgroup>
<acctmgmt.delgroup>Deleting group: &#35;1&#35;</acctmgmt.delgroup>
<execute.string>Executing: &#35;1&#35;</execute.string>
<misc.sfcos-disable>Disabling Windows File Protection</misc.sfcos-disable>
<misc.sfcos-enable>Enabling Windows File Protection</misc.sfcos-enable>
<registry.read>Reading from registry</registry.read>
<registry.write>Writing to registry</registry.write>
</environment>
<display plugin=';&#35;XPLODE&#35;\XPlodeSilentInstall.x4d';/>
</config>


需要用哪个控件就保留该控件,并把其他控件删除在集成在光盘上就可以了!
要想和我在安装过程中使用中文的话就把XPlode.xml的保存为unicode编码即可,而默认的保存方式为ansi方式的。

xplode 4.1 可以在我的网络硬盘上下载
http://free.ys168.com/?kaibiao
发表于 2005-4-9 14:04:59 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

楼主太经典了,谢谢!
回复

使用道具 举报

发表于 2005-4-9 16:55:56 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

这个一定要顶!很好的xp安装辅助软件!好像5.0快出了
回复

使用道具 举报

发表于 2005-4-9 20:30:47 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

不错,我也顶一顶。
回复

使用道具 举报

发表于 2005-4-10 00:52:11 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

请问楼主这个东东哪里可以下载啊!!!
回复

使用道具 举报

发表于 2005-4-10 13:28:34 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

官方下载的已经不能够打开,
希望楼主提供一个下载地址,谢谢!
回复

使用道具 举报

发表于 2005-4-10 15:18:49 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

请问,用xplode做的时候,那三副背景图,尺寸分别是多少?好像和xpinstall不一样吧?
回复

使用道具 举报

发表于 2005-7-9 08:11:19 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

请问相应的winnt.sif文件如何编写?
回复

使用道具 举报

发表于 2005-7-9 08:34:13 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

加上这一段:
[SetupParams]
    UserExecute="%CDROM%\&#36;OEM&#36;\&#36;1\STEP\XPlode.exe"
回复

使用道具 举报

发表于 2005-7-9 13:13:58 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

我用XPlode-1.1.2制作了集成,现在恰好在VPC里面测试,把图片抓了张,大家看看哦[UploadFile=1_1120886025.jpg]
回复

使用道具 举报

发表于 2005-7-9 13:21:23 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

我也来凑个热闹,可以自己选择安装时的xplode界面
回复

使用道具 举报

发表于 2005-7-9 13:22:54 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

xp 64不能发图?
回复

使用道具 举报

发表于 2005-7-9 15:04:11 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

发表于 2005-7-9 20:44:34 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

[UploadFile=z1_1120913071.jpg]
回复

使用道具 举报

发表于 2005-7-10 08:58:21 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

在自动应答文件CMDLines.txt中加入以下字段:
[Commands]
".\INSTALL\XPlode.exe"

就能在剩余12分钟时运行了吗? 还需不需要其它文件啊 谢谢
回复

使用道具 举报

发表于 2005-7-10 10:53:54 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

太经典了,谢谢!
回复

使用道具 举报

发表于 2005-7-10 19:11:06 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

windows2000中行不行.
回复

使用道具 举报

发表于 2005-7-10 22:43:48 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

xolode官方文档上说不行,我没试过
回复

使用道具 举报

发表于 2005-7-11 18:51:03 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

新版本可以了.不过要注册才能有无限制版
回复

使用道具 举报

发表于 2005-7-12 17:14:47 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

下面引用由kaibiao2005/04/09 11:08am 发表的内容:
要想在安装过程中使用中文的话就把XPlode.xml的保存为unicode编码即可,而默认的保存方式为ansi方式的。 ...
这一句没看懂,请指教。
回复

使用道具 举报

发表于 2005-7-12 17:22:49 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

顶,呀,不错
回复

使用道具 举报

发表于 2005-7-12 23:11:29 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

下面引用由sunkist2005/07/10 07:11pm 发表的内容:
windows2000中行不行.
不可以的,我试过了.
回复

使用道具 举报

发表于 2005-7-12 23:48:44 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

我也顶一顶。
回复

使用道具 举报

发表于 2005-7-13 10:09:45 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

下面引用由赌东道2005/07/12 11:11pm 发表的内容:
不可以的,我试过了.
有最新版了,4.3,官方文档上说可以
回复

使用道具 举报

发表于 2005-7-13 10:14:21 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

下面引用由cq-bbcyb2005/07/12 05:14pm 发表的内容:
这一句没看懂,请指教。
[UploadFile=CEB4C3FCC3FB_1121220800.jpg]
如图:用记事本编辑xplode.xml在保存时选择为unicode格式即可
回复

使用道具 举报

发表于 2005-7-13 23:57:13 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

    谢谢!
回复

使用道具 举报

发表于 2005-7-17 22:16:12 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

小日本,变态
回复

使用道具 举报

发表于 2005-7-18 12:51:47 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

什么小日本???
回复

使用道具 举报

发表于 2005-7-19 08:49:22 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

好东西啊,顶了,谢谢你了。
回复

使用道具 举报

发表于 2005-7-23 00:06:14 | 显示全部楼层

[转帖]XPlode4.1制作Windows集成补丁安装光盘方法

经典的软件,谢谢楼主
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|捐助支持|无忧启动 ( 闽ICP备05002490号-1|闽公网安备35020302032614号 )

GMT+8, 2026-4-23 16:12

Powered by Discuz! X5.0

© 2001-2026 Discuz! Team.

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