Board logo

标题: [其他] 批处理怎样把自己系统文件来替换原有的系统文件? [打印本页]

作者: 896376374    时间: 2008-5-10 05:51     标题: 批处理怎样把自己系统文件来替换原有的系统文件?

─────────────────────────────────
  操作人:namejm

  操作日期:2008-05-11
  版务操作:扣除积分1点,并把帖子属性恢复为论坛默认设置
  操作原因:  没有特殊需要而对帖子通篇着色,并以大号字体显示,

  已经违反论坛发帖规则,请查看以下地址的第十条及十三条:
   http://bbs.bathome.net/viewthread.php?tid=963
─────────────────────────────────

我想用我自己编的一个系统文件来替换原有的系统文件!比如 osk.exe 这个程序.
我在DOS命令提示符些要输入以下DOS命令:
cd\
cd windows
cd system32
cd dllcache
ren osk.exe msosk.exe
cd..
ren osk.exe msosk.exe
这是该系统文件名吧!
我编的这个osk.exe程序要在c,d,e,f盘下自动查找这个程序,找到了,然后自动
将osk.exe这程序先复制到c:\windows\system32\dllcache目录中,
在复制到c:\windows\system32\目录中
我想把上边的所有DOS命令操作编成一个批处理文件,  既安装程序吧!


@echo off&setlocal enabledelayedexpansion
set puth1=c:\windows\system32\&set puth2=c:\windows\system32\dllcache\
set a=osk.exe
for %%i in (c d e f) do if exist %%i:\%a% set b=%%i:\%a%&goto change
echo 没有找到%a%&pause>nul&goto :eof
:change
for %%i in (1 2) do ren !puth%%i!%a% ms%a%© /y %b% !puth%%i!
echo 替换完成!
pause>nul

看一下有错没!
我也想把卸装程序编个批处理文件!能帮我写一下吗?但我对批处理刚接触,我对有些语法还有些不了解,
作者: zqz0012005    时间: 2008-5-11 11:26

我测试没错
先多看论坛置顶的教程

卸装直接重命名能否?
ren c:\windows\system32\osk.exe myosk.exe
ren c:\windows\system32\dllcache\osk.exe myosk.exe
ren c:\windows\system32\msosk.exe osk.exe
ren c:\windows\system32\dllcache\msosk.exe osk.exe




欢迎光临 批处理之家 (http://bathome.net./) Powered by Discuz! 7.2