|
李野
初级用户
 
积分 116
发帖 3
注册 2004-1-27
状态 离线
|
『楼 主』:
DOS内部命令改名
使用 LLM 解释/回答一下
刚找到一个很好的DOS论坛,我想问一下DOS的内部命令怎么改名呀,比如del命令改成ddd,是用ren命令吗?好象都看不到del,ren等文件名所以没办法改。
听说这样可以防范病毒攻击,但改了以后又会有不少问题,是吗?
谢谢赐教~~~~~~~
Just found a very good DOS forum. I want to ask how to rename the internal commands of DOS. For example, change the del command to ddd. Is it using the ren command? It seems that I can't see the file names like del, ren, so I can't change them.
I heard that this can prevent virus attacks, but there will be many problems after changing it, right?
Thanks for the advice~~~~~~~
|
|
2004-1-27 00:00 |
|
|
Kinglion
铂金会员
       痴迷DOS者
积分 5798
发帖 1924
注册 2003-6-20 来自 金獅電腦軟體工作室
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
DOS的内部命令全部包括在COMMAND.COM文件中,如何您要修改它们的名字,只能使用十六进制文件修改工具来修改,如软景PCTOOLS等.不过修改有一定的危险性,请注意!
The internal commands of DOS are all included in the COMMAND.COM file. If you want to modify their names, you can only use a hexadecimal file modification tool, such as PCTOOLS. However, there is a certain risk in modification, please be careful!
|

熟能生巧,巧能生精,一艺不精,终生无成,精亦求精,始有所成,臻于完美,永无止境!
金狮電腦軟體工作室愿竭诚为您服务!
QQ群:8393170(定期清理不发言者)
个人网站:http://www.520269.cn
电子邮件:doujiehui@vip.qq.com
微信公众号: doujiehui
|
|
2004-1-28 00:00 |
|
|
willsort
元老会员
         Batchinger
积分 4432
发帖 1512
注册 2002-10-18
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
Re 李野:
除此而外,尚有一个简单的方法,就是使用DOSKEY的宏命令:
doskey del=error
doskey ddd=del
另外,若在WIN窗口中使用,则命令名修改只对当前窗口有效,除非修改默认的DOS快捷方式。
Re Li Ye:
In addition, there is a simple method, which is to use the macro command of DOSKEY:
doskey del=error
doskey ddd=del
In addition, if you use it in the WIN window, the command name modification is only valid for the current window, unless you modify the default DOS shortcut.
|

※ Batchinger 致 Bat Fans:请访问 批处理编程的异类 ,欢迎交流与共享批处理编程心得! |
|
2004-1-28 00:00 |
|
|
iceboy
银牌会员
    
积分 1681
发帖 512
注册 2003-8-2
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
就用 WinHex 就可以改
打开 command.com
搜索 del
改称 ddd
ok 了 (长度最好相同, 否则有不少麻烦)
Just use WinHex. Open command.com. Search for del. Change it to ddd. Done. (It's best to have the same length, otherwise there will be a lot of troubles.)
|

Somehow somewhere I've got to choose.
No matter if it is win or lose. |
|
2004-1-28 00:00 |
|
|
李野
初级用户
 
积分 116
发帖 3
注册 2004-1-27
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
谢谢版主的关注,可我不会用winhex
是不是用搜索 查找文本
在里面输入ren
然后改了ren就是了?
Thanks to the moderator for your attention, but I don't know how to use winhex. Is it just to search, find the text, enter "ren" in it, and then change "ren"?
|
|
2004-2-1 00:00 |
|
|
mys
元老会员
        
积分 5170
发帖 1637
注册 2002-10-16 来自 广东佛山
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
基本上是,但你要看清楚是不是该处,改错了帮助信息是无效的。
Basically, but you need to see clearly if it's the right place. Correcting the help information is invalid.
|

我的网志
http://hzmys.blog.163.com/
我的网盘
firststep.qjwm.com
fsmys.ys168.com
ssmys.ys168.com
www.brsbox.com/fsmys
www.brsbox.com/ssmys
www.brsbox.com/ccdos
|
|
2004-2-1 00:00 |
|
|
oneyes
初级用户
 
积分 159
发帖 22
注册 2003-10-9 来自 福建
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
有什么危险啊,改过测试一下啊
What danger is there? Just modify and test it.
|
|
2004-2-1 00:00 |
|
|
willsort
元老会员
         Batchinger
积分 4432
发帖 1512
注册 2002-10-18
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
Re 李野:
我印象中只要修改一处就可以了,帮助文本中的单词串可以不用管它。所以只要找到几个内部命令集中的地点,然后修改对应的命令名就行了。若单词长度不等,会导致紧跟其后的命令入口丢失,一般会导致无法启动系统。
Re Li Ye:
I remember that only one place needs to be modified. The word strings in the help text can be ignored. So just find a few locations in the internal command set, and then modify the corresponding command names. If the word lengths are different, it will cause the command entry immediately following to be lost, which generally causes the system to fail to start.
|

※ Batchinger 致 Bat Fans:请访问 批处理编程的异类 ,欢迎交流与共享批处理编程心得! |
|
2004-2-2 00:00 |
|
|
Az
初级用户
 
积分 159
发帖 14
注册 2004-2-2
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
这样改啊..没实用性的说..FREEDOS可以啊..
It's like this to modify.. It's not practical to say.. FREEDOS is okay..
|
|
2004-2-3 00:00 |
|
|
伤心客
初级用户
 
积分 124
发帖 5
注册 2004-2-3
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
学校机房的许多机子在启动时按F8进不了DOS而是直接进入windows98了,这是什么回事呢?这与c盘的Autoexec Command 有关吗?
Many of the computers in the school computer lab can't enter DOS by pressing F8 during startup, but directly enter Windows 98. What's the matter with this? Does this have something to do with the Autoexec Command on the C drive?
|

想问你一下:学校机房的电脑(WINDOWS98操作系统),我启动之后无法进入DOS。我是想免费上机的。用
可我连DOS都进不去,我该怎办呢?
请不吝赐教!!!!!!
我的论坛 http://210.28.182.153/cx1/bbs/index1.asp
欢迎赐教!!!!!! |
|
2004-2-3 00:00 |
|
|
Az
初级用户
 
积分 159
发帖 14
注册 2004-2-2
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
恩,这是启动设置文件的问题,,好象是 IO.SYS 还是MSDOS.SYS 的设置...因为98下的DOS的这两个文件系统切换时会改名应用....
相关请在网上找相关资料... "WIN98安全性"...一般用google..
太久没用...
以上是开机你的情况可能的原因..
另,对于开机进入98后再入DOS,这部分如果不行..除了其他N/A的手段..主要就是注册表修改了,把切换的那个按钮关了...
Well, this is a problem with the boot configuration file. It seems to be the settings of IO.SYS or MSDOS.SYS... Because when switching between DOS in Windows 98, these two files are renamed and applied...
For related information, please find relevant materials on the Internet... "WIN98 security"... Generally use Google..
Haven't used it for too long...
The above are the possible reasons for your situation when booting..
Also, for entering DOS again after booting into Windows 98, if this part doesn't work.. In addition to other non-applicable means.. The main thing is to modify the registry, turn off the button for switching...
|
|
2004-2-6 00:00 |
|