无忧启动论坛

 找回密码
 注册
搜索
系统gho:最纯净好用系统下载站广告联系 微信:wuyouceo QQ:184822951
楼主: 鹤冲天

那位老师有些批处理的实例能否贴出来让偶等小鸟学习学习!

[复制链接]
发表于 2006-12-29 20:37:08 | 显示全部楼层
回复

使用道具 举报

发表于 2006-12-31 14:00:54 | 显示全部楼层
SC.bat

@echo off
cls
echo.
echo starting... ...

echo e 0100 4D 5A 90 00 03 00 00 00 04 00 00 00 FF FF 00 00>>tvis
中间省略
echo e 7AF0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00>>tvis
echo rcx>>tvis <---查看bx寄存器
echo 7A00>>tvis <----输入字节数(十六进制)
echo n tvisGRAY>>tvis<---程序名
echo w>>tvis<---写入程序
echo q>>tvis<---退出debug
debug<tvis>nul

del tvis
ren tvisGRAY sc1.exe
echo Finished!!!
pause


实际使用debug命令

Debug:E(键入)

将数据输入到内存中指定的地址。   
可以按十六进制或  ASCII  格式键入数据。以前存储在指定位置的任何数据全部丢失。   
e  address  
       
    参数   
    address   
    指定输入数据的第一个内存位置。   
    list   
    指定要输入到内存的连续字节中的数据。

    rbx ;查看bx寄存器

    n 盘符程序名
    w ;写入程序
    q ;退出debug

    [ 本帖最后由 沙漠之子 于 2006-12-31 02:02 PM 编辑 ]
回复

使用道具 举报

发表于 2007-1-4 18:16:42 | 显示全部楼层
看完这个贴子,真叫人感动,真正感到论坛里真是有不少高人,并且是高品质的人:handshake:handshake:handshake
回复

使用道具 举报

 楼主| 发表于 2007-1-12 02:17:04 | 显示全部楼层
好久不来了,抱歉!哎,人生啊!真是一场梦!年底了,好忙好烦!!最近天天醉生梦死,无聊透顶!!
总算是告一段落!终于又有时间在网上闲逛找找自己喜欢的东西了!好了,闲言少序让我们继续!
上会书说到要用P处理将某个文件添加到启动项里,我主要是想把咔吧3.5的avpm.exe添加进去,在namejm老师的帮助下,功能实现了,现将代码贴出,大家给看看,多提意见和建议!!
@echo off
set "var=%cd%"
set "str=%var:\=\\%"
echo Windows Registry Editor Version 5.00 >c:\1.reg
echo. >>c:\1.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]>>c:\1.reg
echo "KAV"="%str%\\avpm.exe">>c:\1.reg
regedit /s c:\1.reg
del /q /f c:\1.reg
echo 搞定!!!
pause

大家还有什么其他方法恳请写出来一起共享!!
回复

使用道具 举报

发表于 2007-1-13 17:36:35 | 显示全部楼层
  呵呵,把你的代码精简一下:

  1. @echo off
  2. set "str=%cd:\=\\%"
  3. (
  4. echo Windows Registry Editor Version 5.00
  5. echo.
  6. echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
  7. echo "KAV"="%str%\\avpm.exe"
  8. )>c:\1.reg
  9. regedit /s c:\1.reg
  10. del /q /f c:\1.reg
  11. echo 搞定!!!
  12. pause
复制代码
回复

使用道具 举报

 楼主| 发表于 2007-1-13 18:02:50 | 显示全部楼层
括号是做什么用的?
还有没有其他方式?比如不用生成文件的!!?
回复

使用道具 举报

发表于 2007-1-13 18:23:23 | 显示全部楼层
  括号表示它内部的一组命令是一个整体,for 中经常用到。

  不生成临时文件也是可行的,好好研究一下 reg /? 的帮助信息吧。比如,可以写成:

  1. reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v KAV /t REG_SZ /d "%str%\\avpm.exe" /f
复制代码
回复

使用道具 举报

 楼主| 发表于 2007-1-16 02:22:54 | 显示全部楼层
谢谢namejm老师,reg add这个命令要实用的多!代码相当精简!
用reg add不用在考虑\\=\的问题,原生成临时文件的做法是将文件导入注册表所以必须是已注册表的标准形式\\来完成.而reg add是直接添加到注册表就好像我们直接手写注册表一样!所以\就足够了!
代码如下:
@echo off
reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v KAV /d "%cd%\avpm.exe" /f
pause
回复

使用道具 举报

 楼主| 发表于 2007-1-18 10:54:00 | 显示全部楼层
还有啥其他方法不?
回复

使用道具 举报

发表于 2007-1-18 14:41:39 | 显示全部楼层
  用批处理操作注册表,除了 reg+动词+对象 和 echo 一个注册表文件然后再 regedit /s 注册表文件 之外,似乎已经没有其他方法了。
回复

使用道具 举报

 楼主| 发表于 2007-1-19 11:38:28 | 显示全部楼层
eof.bat
@echo off
cls
echo.
echo.
echo HELLO WORLD!!!!!!!!!!!!!!!!!!!!
echo;
echo:
goto :eof
dir/w
echo very good

pause
这个要说明什么??eof的用法??我看不懂这个P要作什么??
回复

使用道具 举报

发表于 2007-1-19 15:24:48 | 显示全部楼层

谢谢namejm 大哥!

namejm 大哥的例子不错呀,偶得学习学习!
回复

使用道具 举报

发表于 2007-1-19 15:42:30 | 显示全部楼层
  是的,就是要演示 goto :eof 的作用。
回复

使用道具 举报

发表于 2007-1-21 19:50:46 | 显示全部楼层
刚下载下来了,有问题再提问.谢谢!
回复

使用道具 举报

 楼主| 发表于 2007-1-22 09:58:09 | 显示全部楼层
@echo off
sc config ALG start= DISABLED
pause
这个批处理无法运行在双层中文目录!
是CMD的原因还是SC的原因?
还是需要设置下环境变量或者其他什么的??
回复

使用道具 举报

发表于 2007-1-22 12:45:49 | 显示全部楼层
  在我这里没有问题。
回复

使用道具 举报

发表于 2007-1-22 15:54:19 | 显示全部楼层

我p处理一般

我常用net stop "Application Layer Gateway Service"    就够了,
有个问题,现在的卡巴6.0就没法用这个命令了,请教高手了
回复

使用道具 举报

 楼主| 发表于 2007-1-22 21:33:35 | 显示全部楼层
原帖由 namejm 于 2007-1-22 12:45 PM 发表
  在我这里没有问题。

狂晕,我又试了下,现在能确定在“X:\DOS实例练习\DOS实例练习”
无法运行,只要包含以上路径就不行,呵呵,奇怪,也不是DOS的事情,我用“DOS新建文件夹”这个名字测试没问题,太奇怪了,为什么??!
在这下面运行,会出如图的提示,N长时间后也有可能提示你完成,但无效果,也有时候出什么文件没找到之类的提示!总知一句话不顶用!
出错提示.GIF
回复

使用道具 举报

发表于 2007-1-22 21:42:30 | 显示全部楼层
  我特意新建了"d:\DOS实例练习\DOS实例练习"的文件夹来测试,还是没有出现你所说的那个问题——是不是你那个批处理文件还有其他要写文件的代码,而那个文件夹又是不允许写文件的?
回复

使用道具 举报

 楼主| 发表于 2007-1-22 22:48:21 | 显示全部楼层
奇怪,我新建也没问题,就原来那个不能用!
这个是RAR直接解压缩生成的!我NTFS分区,难道是权限有问题??
回复

使用道具 举报

 楼主| 发表于 2007-1-22 22:50:47 | 显示全部楼层
2台机器都是这样,还有在虚拟机下也是这样!真是奇怪啊!
回复

使用道具 举报

 楼主| 发表于 2007-1-22 22:52:29 | 显示全部楼层
我都是管理员登陆的,
回复

使用道具 举报

 楼主| 发表于 2007-1-22 22:54:28 | 显示全部楼层
下载RAR,解压缩,在测试就不行!!这是怎么会事??
回复

使用道具 举报

 楼主| 发表于 2007-1-24 10:04:35 | 显示全部楼层
其他人没有这问题吗?
还有人试过没有??
回复

使用道具 举报

 楼主| 发表于 2007-1-26 14:55:45 | 显示全部楼层
自己顶一下!希望朋友们能帮忙测试!
回复

使用道具 举报

 楼主| 发表于 2007-1-28 18:39:50 | 显示全部楼层
原帖由 gues1688 于 2007-1-28 01:23 PM 发表
从1楼开始看,才知道是什么rar文件了。下载顶楼的rar文件测试后,确实如鹤冲天所说,检查几遍后,原来原因很简单,因为rar文件解压后,有一个批处理文件,名称为sc.bat,就是这个P处理造成了这个结果。
把sc.bat ...

倒!!不好意思不好意思!!:$
这么简单点事情让偶弄的这么复杂?!嘿,下次有问题,一定要先看仔细了!HOHO,:L
回复

使用道具 举报

 楼主| 发表于 2007-1-31 14:35:09 | 显示全部楼层
如何才能得到能在XP命令提示符下工作的命令的名字呢?!
回复

使用道具 举报

发表于 2007-1-31 17:57:48 | 显示全部楼层
  命令行下输入 copy %systemroot%\help\ntcmds.chm d:\,然后到D盘根目录下查看ntcmds.chm,里面几乎囊括了所有能在XP下运行的命令。
回复

使用道具 举报

 楼主| 发表于 2007-2-3 00:29:54 | 显示全部楼层
我把这段时间学习的东西总结了下,开始自己学着写批处理。当然还是主要干些复制粘贴的活,呵呵,创造性的东西还不行,脑子还是比较空,在接下来的日子里偶还有很多的东西要学习!
偶把代码放上来,希望大家给看看,能否精简压缩下,或者还有其他的方法能实现类似的功能,希望大家表嫌弃俺多帮帮俺啊!:lol
特别是能把清理垃圾的代码重复利用。CALL和GOTO偶看了看,无奈才疏学浅没有找到合适的解决方案,希望大家帮帮偶!
因帖子限制长度故没全文帖出!
@echo off
TITLE winodws XP 优化处理文件 【鹤冲天】
COLOR 0A
CLS
:start
cls
echo.
echo "全自动精简优化XP"
echo.
echo.
echo                    初级优化XP-----------1
echo                    中级优化XP-----------2
echo                    高级优化XP-----------3
echo.
echo;
set /p ii=请添入相应的修改项目(1 or 2 or 3):
set ii=%ii:~0,1%
if "#%ii%"=="#1" goto A
if "#%ii%"=="#2" goto B
if "#%ii%"=="#3" goto C
cls
echo.
echo;
echo:
echo.
echo.
echo            您输入了错误的数字!!!
echo             -_-.-_-.-_-.-_-.-_-
echo.
echo;
echo;
echo;
pause
goto start

:A
@echo off
cls
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo winodws XP 优化处理文件
echo.
echo 正在清除系统垃圾文件,请稍等......
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
sfc /purgecache
sfc /purgecache
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\*.log
del /f /s /q %windir%\*.tmp
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
rd /s /q %temp% & md %temp%
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo 清除系统垃圾完成!
echo.
echo 正在自动对WinXP的服务进行优化...
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
@rem Alerter
@rem 微软: 通知选取的使用者及计算机系统管理警示。如果停止这个服务,使用系统管理@rem 警示的程序将不会收到通知。
@rem 补充: 一般家用计算机根本不需要传送或接收计算机系统管理来的警示(Administrative Alerts),除非你的计算机用在局域网络上
@rem 依存: Workstation
@rem 建议: 已停用
sc config Alerter start= DISABLED
echo.
@rem Application Layer Gateway Service
@rem 微软: 提供因特网联机共享和因特网联机防火墙的第三方通讯协议插件的支持
@rem 补充: 如果你不使用因特网联机共享 (ICS) 提供多台计算机的因特网存取和因特网联机防火墙 (ICF) 软件你可以关掉
@rem 依存: Internt Connection Firewall (ICF) / Internet Connection Sharing (ICS)
@rem 建议: 已停用
sc config ALG start= DISABLED
echo.
@REM Security Center
@REM 监视系统安全设置和配置。
sc config wscsvc start= DISABLED
cls
echo 优化完毕!
goto end
:B
@echo off
cls
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo winodws XP 优化处理文件
echo.
echo 正在清除系统垃圾文件,请稍等......
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
sfc /purgecache
sfc /purgecache
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\*.log
del /f /s /q %windir%\*.tmp
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
rd /s /q %temp% & md %temp%
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo 清除系统垃圾完成!
echo.
echo 正在自动对WinXP的服务进行优化...
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
@rem Alerter
@rem 微软: 通知选取的使用者及计算机系统管理警示。如果停止这个服务,使用系统管理@rem 警示的程序将不会收到通知。
@rem 补充: 一般家用计算机根本不需要传送或接收计算机系统管理来的警示(Administrative Alerts),除非你的计算机用在局域网络上
@rem 依存: Workstation
@rem 建议: 已停用
sc config Alerter start= DISABLED
echo.
@REM Security Center
@REM 监视系统安全设置和配置。
sc config wscsvc start= DISABLED
cls
echo 优化完毕!
goto end
:C
@echo off
cls
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo winodws XP 优化处理文件
echo.
echo 正在清除系统垃圾文件,请稍等......
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
sfc /purgecache
sfc /purgecache
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\*.log
del /f /s /q %windir%\*.tmp
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
rd /s /q %temp% & md %temp%
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo 清除系统垃圾完成!
echo.
echo 正在自动对WinXP的服务进行优化...
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
@rem Alerter
@rem 微软: 通知选取的使用者及计算机系统管理警示。如果停止这个服务,使用系统管理@rem 警示的程序将不会收到通知。
@rem 补充: 一般家用计算机根本不需要传送或接收计算机系统管理来的警示(Administrative Alerts),除非你的计算机用在局域网络上
@rem 依存: Workstation
@rem 建议: 已停用
sc config Alerter start= DISABLED
echo.
@rem Application Layer Gateway Service
@rem 微软: 提供因特网联机共享和因特网联机防火墙的第三方通讯协议插件的支持
@rem 补充: 如果你不使用因特网联机共享 (ICS) 提供多台计算机的因特网存取和因特网联机防火墙 (ICF) 软件你可以关掉
@rem 依存: Internt Connection Firewall (ICF) / Internet Connection Sharing (ICS)
@rem 建议: 已停用
sc config ALG start= DISABLED
@REM Universal Plug and Play Device Host
@REM 为主持通用即插即用设备提供支持。
sc config upnphost start= DEMAND
echo.
@REM Security Center
@REM 监视系统安全设置和配置。
sc config wscsvc start= DISABLED
cls
echo 优化完毕!
:d
@echo off
cls
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo winodws XP 优化处理文件
echo.
echo 正在清除系统垃圾文件,请稍等......
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
sfc /purgecache
sfc /purgecache
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\*.log
del /f /s /q %windir%\*.tmp
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
rd /s /q %temp% & md %temp%
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo 清除系统垃圾完成!
echo.
echo 正在自动对WinXP的服务进行优化...
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
:end
echo.
sfc /purgecache
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo WinXP 的服务进行优化完成!
echo.
echo 正在对 IE 组件修复,注册,优化
echo.
echo 请等待几秒钟......
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
regsvr32 /s actxprxy.dll
echo 完成百分之 10
regsvr32 /s shdocvw.dll
echo 完成百分之 15
regsvr32 /s oleaut32.dll
echo 完成百分之 20
Regsvr32 /s URLMON.DLL
echo 完成百分之 25
Regsvr32 /s mshtml.dll
echo 完成百分之 30
Regsvr32 /s msjava.dll
echo 完成百分之 35
Regsvr32 /s browseui.dll
echo 完成百分之 40
Regsvr32 /s softpub.dll
echo 完成百分之 45
Regsvr32 /s wintrust.dll
echo 完成百分之 50 (优化,请等待)
Regsvr32 /s initpki.dll
echo 完成百分之 55
Regsvr32 /s dssenh.dll
echo 完成百分之 60
Regsvr32 /s rsaenh.dl
echo 完成百分之 65
Regsvr32 /s gpkcsp.dll
echo 完成百分之 70
Regsvr32 /s sccbase.dll
echo 完成百分之 75
Regsvr32 /s slbcsp.dll
echo 完成百分之 85
Regsvr32 /s cryptdlg.dll
echo 完成百分之 90
sfc /purgecache
echo 完成百分之 100
cls
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo 优化全部完成!
echo.
echo 感谢您使用winodws XP 优化处理文件!
echo.
echo By:【鹤冲天】
echo.
echo 如果好用就顶一下!!!!!^_^
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo. & pause
exit
回复

使用道具 举报

 楼主| 发表于 2007-2-4 01:56:33 | 显示全部楼层
在有这个
set ii=%ii:~0,1%

是什么意思?为什么我去掉它也没什么影响呢?(至少我没看到有什么影响)
回复

使用道具 举报

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

本版积分规则

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

闽公网安备 35020302032614号

GMT+8, 2024-3-29 18:03

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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