|
terse
银牌会员
    
积分 2404
发帖 946
注册 2005-9-8
状态 离线
|
『楼 主』:
请高手帮忙看一下DOS下运行批处理问题!
使用 LLM 解释/回答一下
我的U盘GHO目录里有个GHOST批处理,其中有段选择盘符后就可以搜索GHO文件的处理码,进入U盘GHO目录里手动运行GHOST批处理后在搜不到GHO文件后会自动返回选择界面,但是如果我在U盘根目录下的MENU.bat文件里 CALL 运行GHO目录的GHOST批处理的话,就会在搜索不到GHO文件的时候出来个空的文件选择,这不是我想要的,我想的就是如果没有就返回选择界面!上面图是选择界面,下面的是不应该出来的,我想要的是如果没有搜索到GHO文件就回到上面图的界面的!进GHO目录运行的话下面的图就是和上图一样!
Last edited by terse on 2007-2-1 at 08:37 AM ]
There is a GHOST batch script in the GHO directory of my USB flash drive. There is a section of code that selects the drive letter and then searches for GHO files. When I manually run the GHOST batch script in the USB flash drive's GHO directory, after not finding the GHO files, it automatically returns to the selection interface. But if I CALL and run the GHOST batch script in the GHO directory from the MENU.bat file in the root directory of the USB flash drive, when it doesn't find the GHO files, an empty file selection comes out. That's not what I want. I want to return to the selection interface if no GHO files are found! The above picture is the selection interface, and the following one is the one that shouldn't come out. I want to go back to the above picture interface if no GHO files are searched! When running in the GHO directory, the following picture is the same as the above one!
Last edited by terse on 2007-2-1 at 08:37 AM ]
|
|
2007-2-1 08:30 |
|
|
Climbing
铂金会员
       网络独行侠
积分 6962
发帖 2753
注册 2003-4-16 来自 河北保定
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
一看就是用wbat做的菜单,你直接从上级目录call目标的批处理,有可能目标批处理生成的需要用到的临时文件不在需要的目录下,看一下对方的批处理是如何编写的吧。这绝对属于批处理编写有问题。
两种运行情况的唯一区别就是当前目录不同。
It looks like it's a menu made with wbat. You directly call the batch file from the upper directory. It's possible that the temporary files needed by the target batch file are not in the required directory. Take a look at how the other party's batch file is written. This definitely belongs to a problem in batch file writing. The only difference between the two running situations is the current directory.
|

偶只喜欢回答那些标题和描述都很清晰的帖子!
如想解决问题,请认真学习“这个帖子”和“这个帖子”并努力遵守,如果可能,请告诉更多的人!
|
|
2007-2-1 22:31 |
|
|
terse
银牌会员
    
积分 2404
发帖 946
注册 2005-9-8
状态 离线
|
『第 3 楼』:
使用 LLM 解释/回答一下
是的 是用wbat做的菜单 至于目录问题我想也就是TEMP目录 我在U盘的根目录创建一个也不行!(用cd gho 正常的)
我贴上那段搜索码 帮看一下 总是遇见Climbing的帮助 在时空论坛的也是你吧 谢了!
:rec2
echo :d_list " 选择备份文件的所在盘 "[x]>%temp%\tmp.txt
func -a9 >>%temp%\tmp.txt
call w.bat list (+white on +blue) @%temp%\tmp.txt:d_list
if errorlevel 100 goto rec1
if "%wbat%"=="" goto rec1
set gpath=%wbat%:\
echo 正在搜索 %gpath% 备份文件 ...
echo :m_dir " 选择需要恢复的备份文件 " [x]>%temp%\tmp.txt
dir %gpath%ghost\*.gho /b /s >>%temp%\tmp.txt
call w.bat list (+white on +blue) @%temp%\tmp.txt:m_dir
if errorlevel 100 goto rec2
if "%wbat%"=="" goto rec2
set gfile=%wbat%
Yes, it's made with wbat for the menu. As for the directory issue, I think it's just the TEMP directory. I created one in the root directory of the USB drive and it didn't work! (Using cd gho is normal)
I'll paste that search code and have a look. I always come across Climbing's help. You must be the one on the Time and Space Forum too. Thanks!
:rec2
echo :d_list " 选择备份文件的所在盘 ">%temp%\tmp.txt
func -a9 >>%temp%\tmp.txt
call w.bat list (+white on +blue) @%temp%\tmp.txt:d_list
if errorlevel 100 goto rec1
if "%wbat%"=="" goto rec1
set gpath=%wbat%:\
echo 正在搜索 %gpath% 备份文件 ...
echo :m_dir " 选择需要恢复的备份文件 " >%temp%\tmp.txt
dir %gpath%ghost\*.gho /b /s >>%temp%\tmp.txt
call w.bat list (+white on +blue) @%temp%\tmp.txt:m_dir
if errorlevel 100 goto rec2
if "%wbat%"=="" goto rec2
set gfile=%wbat%
|
|
2007-2-2 04:54 |
|
|
terse
银牌会员
    
积分 2404
发帖 946
注册 2005-9-8
状态 离线
|
|
2007-2-5 02:03 |
|
|
llztt1
中级用户
  
积分 214
发帖 94
注册 2007-1-11
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
func -a9 >>%temp%\tmp.txt
能得出所有盘符么??
不错的啊,可否共享一下FUNC这个程序或批处理??
func -a9 >>%temp%\tmp.txt
Can all drive letters be obtained?
Not bad. Can you share the FUNC program or batch?
|
|
2007-2-5 12:09 |
|
|
llztt1
中级用户
  
积分 214
发帖 94
注册 2007-1-11
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
哦,对于这个自动搜索.GHO的批处理有些怀疑实用性。。
1、现在估计没几个人还用FAT32吧,为了实现这个批处理,得加载NTFSDOS,生成必要信息文件后再退出NTFSDOS,对于NTFSDOS对中文支持很差,如果路径中有中文。。。IFSDRV中文支持不错,不过我用了WEN老大的修改版,如果读取过NTFS区数据后就不能正常退出了。。
2、一般备份文件是隐藏属性的,DIR /S倒是可以搜索隐藏属性文件,可惜如果文件在隐藏目录中,就无法搜到了,所以这样看来实用性大打折扣。
当然如果非有人说我就用FAT32或用NTFS时就用英文路径和文件名,而且就不隐藏备份文件,那倒好了。
不好意思这里跑题了哈,呵呵,只是我现在也在计划做个启动盘,包含单机GHOST批处理、加载网卡驱动网络GHOST批处理等等,最后考虑再三放弃了全盘搜索功能。。
Oh, I have some doubts about the practicality of this batch processing for automatically searching.GHO.
1. Now it's estimated that few people still use FAT32. To implement this batch processing, you need to load NTFSDOS, generate the necessary information files and then exit NTFSDOS. NTFSDOS has very poor support for Chinese. If there are Chinese characters in the path... IFSDRV has good support for Chinese, but I used the modified version by Elder Wen. If you read data from the NTFS partition, it can't exit normally.
2. Generally, backup files have the hidden attribute. DIR /S can search for hidden attribute files, but unfortunately, if the file is in a hidden directory, it can't be found. So in this way, the practicality is greatly reduced.
Of course, if someone says that I just use FAT32 or use English paths and filenames when using NTFS and don't hide backup files, then it's fine.
I'm sorry to go off - topic here, heh heh. It's just that I'm also planning to make a boot disk, including the standalone GHOST batch processing, the network GHOST batch processing with loaded network card drivers, etc. In the end, after thinking it over, I gave up the full - disk search function.
|
|
2007-2-5 12:26 |
|
|
terse
银牌会员
    
积分 2404
发帖 946
注册 2005-9-8
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
Originally posted by llztt1 at 2007-2-5 12:09:
func -a9 >>%temp%\tmp.txt
能得出所有盘符么??
不错的啊,可否共享一下FUNC这个程序或批处理??
http://terse.ys168.com/
这里传不了 我传到那了
RE:llztt1
没别的用途 只是喜欢瞎捣鼓 我上班空的时候看看 也不帮别人整机器 有时候朋友的机器看一下 呵呵!希望你的做出后 看一下?如何呢?
Last edited by terse on 2007-2-5 at 02:00 PM ]
Originally posted by llztt1 at 2007-2-5 12:09:
func -a9 >>%temp%\tmp.txt
Can it get all drive letters??
Not bad, can you share the FUNC program or batch?
http://terse.ys168.com/
Can't upload here. I uploaded it there.
RE: llztt1
No other uses, just like to tinker around. I look at it when I'm free at work. I don't fix machines for others. Sometimes I take a look at friends' machines. Hehe! Hope you can take a look after you make it? How about that?
Last edited by terse on 2007-2-5 at 02:00 PM ]
|
|
2007-2-5 13:55 |
|
|
llztt1
中级用户
  
积分 214
发帖 94
注册 2007-1-11
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
回头修改一下MAXDOS的BAT,MAXDOS做的不错了,修改一下更合理些,譬如单机GHOST、PACKT网卡驱动》》生成WATTCP文件》》生成GHOST命令行》》选择GHOST版本启动GHOST,再做几个调用这些BAT的BAT,譬如实现无选择界面按默认参数运行。。
哈哈,你发的这个FUNC真如其名功能够多。。
Usage:FUNC <option>
PKMASTER 2003-03-14 Email:bootcd@163.com
Option:
These functions returns errorlevel 1~26 (count) or 255 (error):
-a<style> style=6 or 9 ; Print Drives Letters
These functions returns errorlevel 0 (succeed) or 255 (failed):
-e[drive] drive=A to Z ; Eject CDROM drive (Default first CDROM)
-l[drive] drive=A to Z ; Load CDROM drive (Default first CDROM)
-x[drive] drive=A to Z ; Auto Eject/Load CDROM (Default first CDROM)
-j Find MENU.INI in CDROM Drives
-v Reset video mode to 80x25 normal text mode
-m Initialize mouse and set cursor in the center of screen
-n Initialize mouse and set cursor in the (0,0) of screen
-r Reboot computer
-s Shutdown computer
These functions returns errorlevel 0 (true) or 100 (false):
-d<drive> drive=A to Z ; Check whether the drive is a CDROM or not
-i<var> Check whether the var(MaxLen=8) is a numeric or not
-f<var> Check whether the var(MaxLen=8) is a correct filename or not
-w<seconds> seconds=0 to 9999 ; Wait some seconds. Returns keycode
?<string> Print string without newline
回头修改一下MAXDOS的BAT,MAXDOS做的不错了,修改一下更合理些,譬如单机GHOST、PACKT网卡驱动》》生成WATTCP文件》》生成GHOST命令行》》选择GHOST版本启动GHOST,再做几个调用这些BAT的BAT,譬如实现无选择界面按默认参数运行。。
哈哈,你发的这个FUNC真如其名功能够多。。
Usage:FUNC <option>
PKMASTER 2003-03-14 Email:bootcd@163.com
Option:
These functions returns errorlevel 1~26 (count) or 255 (error):
-a<style> style=6 or 9 ; Print Drives Letters
These functions returns errorlevel 0 (succeed) or 255 (failed):
-e drive=A to Z ; Eject CDROM drive (Default first CDROM)
-l drive=A to Z ; Load CDROM drive (Default first CDROM)
-x drive=A to Z ; Auto Eject/Load CDROM (Default first CDROM)
-j Find MENU.INI in CDROM Drives
-v Reset video mode to 80x25 normal text mode
-m Initialize mouse and set cursor in the center of screen
-n Initialize mouse and set cursor in the (0,0) of screen
-r Reboot computer
-s Shutdown computer
These functions returns errorlevel 0 (true) or 100 (false):
-d<drive> drive=A to Z ; Check whether the drive is a CDROM or not
-i<var> Check whether the var(MaxLen=8) is a numeric or not
-f<var> Check whether the var(MaxLen=8) is a correct filename or not
-w<seconds> seconds=0 to 9999 ; Wait some seconds. Returns keycode
?<string> Print string without newline
Go back and modify the BAT of MAXDOS. MAXDOS has done a good job, and it can be modified to be more reasonable. For example, single-machine GHOST, PACKT network card driver >> generate WATTCP file >> generate GHOST command line >> select GHOST version to start GHOST, and make a few more BATS that call these BATS, such as realizing running with default parameters without the selection interface..
Haha, the FUNC you sent is really as its name implies, with many functions..
Usage: FUNC <option>
PKMASTER 2003-03-14 Email:bootcd@163.com
Option:
These functions return errorlevel 1~26 (count) or 255 (error):
-a<style> style=6 or 9 ; Print Drives Letters
These functions return errorlevel 0 (succeed) or 255 (failed):
-e drive=A to Z ; Eject CDROM drive (Default first CDROM)
-l drive=A to Z ; Load CDROM drive (Default first CDROM)
-x drive=A to Z ; Auto Eject/Load CDROM (Default first CDROM)
-j Find MENU.INI in CDROM Drives
-v Reset video mode to 80x25 normal text mode
-m Initialize mouse and set cursor in the center of screen
-n Initialize mouse and set cursor in the (0,0) of screen
-r Reboot computer
-s Shutdown computer
These functions return errorlevel 0 (true) or 100 (false):
-d<drive> drive=A to Z ; Check whether the drive is a CDROM or not
-i<var> Check whether the var(MaxLen=8) is a numeric or not
-f<var> Check whether the var(MaxLen=8) is a correct filename or not
-w<seconds> seconds=0 to 9999 ; Wait some seconds. Returns keycode
?<string> Print string without newline
|
|
2007-2-5 14:52 |
|
|
0451lym
高级用户
   
积分 760
发帖 357
注册 2005-10-10
状态 离线
|
『第 9 楼』:
使用 LLM 解释/回答一下
Originally posted by llztt1 at 2007-2-5 12:26:
哦,对于这个自动搜索.GHO的批处理有些怀疑实用性。。
...
呵呵,为什么?
你的怀疑不是不对,不过我在3个月前动了不少的脑筋,想了不少的办法,现在早就可以全盘自动搜索,全盘自动还原(不论是什么NTFS)都可以!
不过我的代码就不放出来了,说来很简单........
1、必须自动多硬盘搜索
2、必须能转化为X:Y\ 的形式
Originally posted by llztt1 at 2007-2-5 12:26:
Oh, I have some doubts about the practicality of this batch processing that automatically searches for.GHO.
...
Hehe, why?
Your doubt is not incorrect, but I spent a lot of thought three months ago, thought of many methods, and now I can already search the entire disk automatically and restore the entire disk automatically (no matter what NTFS is)!
But I won't release my code. It's quite simple...
1. Must automatically search multiple hard drives
2. Must be able to be converted to the form of X:Y\
|
|
2007-2-6 10:54 |
|
|
llztt1
中级用户
  
积分 214
发帖 94
注册 2007-1-11
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
呵呵,倒是愿闻其祥,怎么不再深入说一下?
1、你的具体搜索命令用的DIR /S否??如果是,怎么解决搜索在隐藏目录下的隐藏文件的问题??还有DOS访问NTFS区用的哪个驱动命令??
2、X:Y\形式,针对什么来说的哦??呵呵,不解
从另个角度考虑,譬如我们在WINDOWS下搜索某个文件,如果硬盘数据比较多,那搜索的时间可就长了,遇见搜个10分钟很正常。。
Hehe,I'm willing to hear the details. Why not go into more depth?
1. What specific search command did you use, DIR /S? If so, how to solve the problem of searching for hidden files in hidden directories? Also, which driver command is used for DOS to access the NTFS partition?
2. The X:Y\ form, what is it aimed at? Hehe, I don't understand.
Considering from another angle, for example, when we search for a certain file in WINDOWS, if there is a lot of hard disk data, the search time can be long. It's normal to encounter a search taking 10 minutes.
|
|
2007-2-6 11:40 |
|
|
0451lym
高级用户
   
积分 760
发帖 357
注册 2005-10-10
状态 离线
|
『第 11 楼』:
使用 LLM 解释/回答一下
Originally posted by llztt1 at 2007-2-6 11:40:
呵呵,倒是愿闻其祥,怎么不再深入说一下?
1、你的具体搜索命令用的DIR /S否??如果是,怎么解决搜索在隐藏目录下的隐藏文件的问题??还有DO ...
呵呵,第1点是用的一个外部命令DIRT,可以解决你的第1个问题
第2点是重点
把盘符变成GHOST识别的1:2或者是1:4或者是2:1的形式!
既然挂上NT驱动可以找到文件,那么就好办了!(中间不用卸掉NT驱动)
例如:
找到的是C:\A.GHO
那么可以用两一个外部命令去试探的找1.2:\A.GHO
找不到在找1.3:\A.GHO等等
找到后就可以用变量引入命令中执行即可!
第2个命令自己找找吧,老运动员都知道是什么命令的!
Originally posted by llztt1 at 2007-2-6 11:40:
Hehe, I'd like to hear the details. Why don't you go into more depth?
1、What specific search command did you use, DIR /S? If so, how to solve the problem of searching for hidden files in hidden directories? Also, DO...
Hehe, the first point uses an external command DIRT, which can solve your first problem.
The second point is the key.
Change the drive letter to the form recognized by GHOST, such as 1:2 or 1:4 or 2:1!
Since the NT driver can be mounted to find the file, then it's easy! (Don't unmount the NT driver in the middle)
For example:
The found file is C:\A.GHO
Then you can use another external command to tentatively find 1.2:\A.GHO
If not found, then find 1.3:\A.GHO, etc.
Once found, you can use the variable introduction command to execute it!
Find the second command yourself; old athletes all know what command it is!
|
|
2007-2-6 12:00 |
|
|
0451lym
高级用户
   
积分 760
发帖 357
注册 2005-10-10
状态 离线
|
『第 12 楼』:
使用 LLM 解释/回答一下
因为DIRT可以设置搜索目录的深度,所以时间是可以限制的,一般不会把镜像文件放到2层目录以下(不排除少数人).因此时间不是问题.而且还可以设置变量来修改搜索目录的层数,这样默认是快速搜索,这样少数人可以自己去修改自己搜索的深层目录!
啊,跟绕口令似的!呵呵
Because DIRT can set the depth of the search directory, so time can be limited. Generally, the image files are not placed below the second-level directory (there are exceptions for a few people). Therefore, time is not an issue. Moreover, variables can be set to modify the number of layers of the search directory, so the default is a quick search, and then a few people can modify the deep directory for their own search!
Ah, it's like a tongue twister! Hehe
|
|
2007-2-6 12:05 |
|
|
0451lym
高级用户
   
积分 760
发帖 357
注册 2005-10-10
状态 离线
|
『第 13 楼』:
使用 LLM 解释/回答一下
:AUTOEXEC " 我的镜像恢复系统 → 06.12.03"
※※※※※※※※※※※※※※※※※※※※※※
※ ※
※ [! 加 载 光 驱 驱 动 ] ※
※ ※
※ [! 加 载 ^NTFS 驱 动 ] ※
※ ※
※※※※※※※※※※※※※※※※※※※※※※
"TAB"键=跳转 "空格键"=选中 "Esc"键=刷新
[Y →系统桌面←] [N →DOS命令行←]
::
:BF_0 " 我的镜像恢复系统 → 备份 %FQ% 盘!" [x]
[X 向导]
第 %S1% 硬盘 → 第 %S2% 分区
备份到
第 [$D1,1] 硬盘 → 第 [$D2,1] 分区
警告:"确定立即备份"将覆盖同名镜像备份,无法恢复!
___________________________________________________________
"TAB"键=跳转 "F1~F2"=覆盖 "←"键=删除
[ Y →确定立即备份← ] [? Esc→返回系统桌面← ]
::
:BF_1 " 我的镜像恢复系统 → 备份 %FQ% 盘 → 向导Ⅰ" [x]
镜像备份到
[ A. 第 1 硬盘 ] [ B. 第 2 硬盘 ]
[ 第 &1 分区 ] [ 第 &2 分区 ] [ 第 &3 分区 ]
[ 第 &4 分区 ] [ 第 &5 分区 ] [ 第 &6 分区 ]
提示:镜像备份到第 %D1% 硬盘 → 第 %D2% 分区! [S. 手动设置]
___________________________________________________________
[ F → 返回上级菜单← ] [? Esc→返回系统桌面← ]
::
:BF_2 " 我的镜像恢复系统 → 备份 %FQ% 盘 → 向导Ⅱ" [x]
确认 %FQ% 盘位置
[ A. 第 1 硬盘 ] [ B. 第 2 硬盘 ]
[ 第 &1 分区 ] [ 第 &2 分区 ] [ 第 &3 分区 ]
提示:第 %S1% 硬盘 → 第 %S2% 分区为 %FQ% 盘!
提示:镜像备份到第 %D1% 硬盘 → 第 %D2% 分区! [Y. 确定更改]
___________________________________________________________
[ F → 返回上级菜单← ] [? Esc→返回系统桌面← ]
::
:GJBF_0 " 我的镜像恢复系统 → 高级备份!" [x]
第[$S1,1]硬盘第[$S2,1]分区
备份到
第 [$D1,1]硬盘第 [$D2,1]分区:\[$WJ,30,U, ].gho [ ※显示默认名称 ]
若填写镜像名称须符合8.3格式,并注意镜像路径是否存在!
____________________________________________________________
压缩: [$YS,1] 级 (低压缩速度快1↓~~↑9高压缩速度慢)
分卷: [$FJ,4,U,] MB ("0"表示不分卷,CD刻录镜像建议为"600"MB)
[ ※填写密码保护 ] 密码:(%M%) [ ※取消密码保护 ]
警告:"确定立即备份"将覆盖同名镜像备份,无法恢复!
____________________________________________________________
TAB键=跳转 F1~F2=覆盖 "←"键=删除
[ Y →确定立即备份← ] [? Esc→返回系统桌面← ]
::
:GJBF_1 " 填写密码保护"[x]
输入密码: [$MM,10,P! ]
确认密码: [$MM1,10,P! ]
提示: 1. Alt+F2 = 拼音输入.
Alt+F6 = 英文输入.
2. 最多允许输入10个字符.
3. ESC键 = 取消密码保护.
[ ※确定 ]
::
:GJBF_2 " 密码错误 !"[x]
密码两次输入不一致!
[ 确定 ]
::
:HF_0 " 我的镜像恢复系统 → 恢复 %FQ% 盘!" [x]
我要恢复
第 %S1% 硬盘 → 第 %S2% 分区
[X 选择镜像]
第 [$D1,1] 硬盘 → 第 [$D2,1] 分区:[$WJ,30,U, ].gho
警告:系统上若有重要数据请自行处理,镜像还原后系统将归档!
___________________________________________________________
"TAB"键=跳转 "F1~F2"=覆盖 "←"键=删除
[ Y →确定立即恢复← ] [? Esc→返回系统桌面← ]
::
:HF_1 " 我的镜像恢复系统 → 恢复 %FQ% 盘 → 选择镜像" [x]
请按序号来选择镜像
__________________
[ 1]%WJ1%
[ 2]%WJ2%
[ 3]%WJ3%
[ 4]%WJ4%
[ 5]%WJ5%
[ 6]%WJ6%
[ 7]%WJ7%
[ 8]%WJ8%
[ 9]%WJ9%
[1&0]%WJ10%
提示:加载 NTFS 驱动后,可支持 NTFS 分区搜索!
___________________________________________________________
[ F → 返回上级菜单← ] [? Esc→返回系统桌面← ]
::
:HF_2 " 我的镜像恢复系统 → 恢复 %FQ% 盘!" [x]
"%WJ%"
恢复到
第 %S1% 硬盘 → 第 %S2% 分区
警告:系统上若有重要数据请自行处理,镜像还原后系统将归档!
___________________________________________________________
"Esc"=返回系统桌面
[ F → 返回上级菜单← ] [ Y →确定立即恢复← ]
::
:HF_3 " 镜像搜索结果!"[x]
没有搜索到 GHO 镜像!
[ 确定 ]
::
:AUTOEXEC " My Image Recovery System → 06.12.03"
※※※※※※※※※※※※※※※※※※※※※※
※ ※
※ ※
※ ※
※ ※
※ ※
※※※※※※※※※※※※※※※※※※※※※※
"TAB" key = jump "Spacebar" = select "Esc" key = refresh
::
:BF_0 " My Image Recovery System → Backup %FQ% Disk!"
Hard disk %S1% → Partition %S2%
Backup to
Hard disk → Partition
Warning: "Confirm immediate backup" will overwrite the same-named image backup and cannot be restored!
___________________________________________________________
"TAB" key = jump "F1~F2" = overwrite "←" key = delete
::
:BF_1 " My Image Recovery System → Backup %FQ% Disk → Wizard Ⅰ"
Image backup to
Tip: Image backup to hard disk %D1% → partition %D2%!
___________________________________________________________
::
:BF_2 " My Image Recovery System → Backup %FQ% Disk → Wizard Ⅱ"
Confirm %FQ% disk location
Tip: Hard disk %S1% → partition %S2% is %FQ% disk!
Tip: Image backup to hard disk %D1% → partition %D2%!
___________________________________________________________
::
:GJBF_0 " My Image Recovery System → Advanced Backup!"
Hard disk partition
Backup to
Hard disk partition :\.gho
If filling in the image name, it must comply with the 8.3 format, and pay attention to whether the image path exists!
____________________________________________________________
Compression: level (Low compression, fast 1↓~~↑9 high compression, slow speed)
Volume: MB ("0" means no volume, CD burning image is recommended to be "600" MB)
Password: (%M%)
Warning: "Confirm immediate backup" will overwrite the same-named image backup and cannot be restored!
____________________________________________________________
TAB key = jump F1~F2 = overwrite "←" key = delete
::
:GJBF_1 " Fill in password protection"
Enter password:
Confirm password:
Tip: 1. Alt+F2 = Pinyin input.
Alt+F6 = English input.
2. Up to 10 characters are allowed.
3. ESC key = Cancel password protection.
::
:GJBF_2 " Password error !"
Passwords do not match twice!
::
:HF_0 " My Image Recovery System → Restore %FQ% Disk!"
I want to restore
Hard disk %S1% → Partition %S2%
Hard disk → Partition : .gho
Warning: Please handle important data on the system by yourself. After image restoration, the system will be archived!
___________________________________________________________
"TAB" key = jump "F1~F2" = overwrite "←" key = delete
::
:HF_1 " My Image Recovery System → Restore %FQ% Disk → Select image"
Please select the image by number
__________________
%WJ1%
%WJ2%
%WJ3%
%WJ4%
%WJ5%
%WJ6%
%WJ7%
%WJ8%
%WJ9%
%WJ10%
Tip: After loading the NTFS driver, NTFS partition search is supported!
___________________________________________________________
::
:HF_2 " My Image Recovery System → Restore %FQ% Disk!"
"%WJ%"
Restore to
Hard disk %S1% → Partition %S2%
Warning: Please handle important data on the system by yourself. After image restoration, the system will be archived!
___________________________________________________________
"Esc"=Return to System Desktop
::
:HF_3 " Image search result!"
No GHO image found!
|
|
2007-2-6 12:07 |
|
|
0451lym
高级用户
   
积分 760
发帖 357
注册 2005-10-10
状态 离线
|
『第 14 楼』:
使用 LLM 解释/回答一下
这是我其中的一部分,你看看就知道了,我不是骗人的了.现写是写不出这么多的!
所以,多考虑考虑,多想一想吧.
我为什么不放出代码,是因为现在所有的GHOST恢复软件都没有这个功能,呵呵!丰收的喜悦还是留给多思考的人吧!
This is part of mine, you can see it and know that I'm not lying. I can't write out so much right now! So, think more about it, think more! Why I don't release the code is because none of the current GHOST recovery software has this function, hehe! The joy of harvest is still left to those who think more!)
|
|
2007-2-6 12:11 |
|
|
llztt1
中级用户
  
积分 214
发帖 94
注册 2007-1-11
状态 离线
|
『第 15 楼』:
使用 LLM 解释/回答一下
试验了一下DIRT,比较强悍的说,能搜索中文目录,隐藏目录下的文件,加上限制搜索子目录深度功能,确实很带劲。。
楼上是喜欢动脑筋搞研究的,不知有兴趣把BART的网络启动盘整合到7.1中,BART的盘使用了他那个模板,那批处理还真是难搞,我在看MAXDOS的网刻盘,不过MAXDOS的加载网卡驱动有3个驱动限制在CONFIG.SYS里了,不带劲,BART的盘就没有这限制,自动加载网卡驱动+生成MSNET的必要文件都是在批处理中完成的。。
如果通过简单添加个集成多网卡驱动的目录和批处理,就能在纯DOS下通过这个批处理实现自动加载网卡驱动,就好了
I tried DIRT, which is quite powerful. It can search Chinese directories, hide files in hidden directories, and with the function of limiting the depth of searching subdirectories, it's really awesome.
The person above likes to use their brains for research. I wonder if you're interested in integrating BART's network boot disk into 7.1. BART's disk uses his template, and that batch processing is really difficult. I'm looking at MAXDOS's network disk imaging disk, but MAXDOS has 3 network card drivers restricted in CONFIG.SYS when loading, which isn't cool. BART's disk has no such restrictions, and automatically loading the network card driver + generating the necessary files for MSNET are all done in the batch processing.
If we can simply add a directory and batch processing that integrates multiple network card drivers, and then can realize automatic loading of the network card driver through this batch processing in pure DOS, that would be great.
|
|
2007-2-6 13:56 |
|
|