123   1  /  3  页   跳转

帮忙写bat命令

帮忙写bat命令

1、把E:\a.rar解压缩到D:\a 并运行其中的setup.exe
2、运行E:\b.reg
3、打开网页www.xxx.com

谢谢
最后编辑2007-05-10 14:40:04
分享到:
gototop
 

第一个要它本身的DOS参数
2.只是运行的话start e:\*.reg
3.start www.*.com
gototop
 

引用:
【mehere8的贴子】1、把E:\a.rar解压缩到D:\a 并运行其中的setup.exe
2、运行E:\b.reg
3、打开网页www.xxx.com

谢谢
………………


::The first::
@echo off
copy c:\progra~1\winrar\rar.exe %windir%\
rar x E:\a.rar D:\a\
if exist D:\a\setup.exe (start D:\a\setup.exe) else (echo The setup is not exist.)
::The second::
pause
regedit /s E:\b.reg
::The third::
start iexplore.exe http://www.xxx.com


PS.原来论坛不支持Discuz!代码啊...哎..
gototop
 

谢谢
先试试
gototop
 

引用:
【lxmxn的贴子】

::The first::
@echo off
copy c:\progra~1\winrar\rar.exe %windir%\rar x E:\a.rar D:\a\
if exist D:\a\setup.exe (start D:\a\setup.exe) else (echo The setup is not exist.)

第三行的“x”什么意思?
gototop
 

rar 的解压命令参数
gototop
 

@echo off
"%windir%\..\program files\winrar\rar.exe x E:\a.rar" D:\a\
if exist D:\a\setup.exe (start D:\a\setup.exe)
regedit /s E:\b.reg
start "%windir%\..\program files\Internet Explorer\iexplore.exe" http://www.xxx.com

我改的,通用点吧
gototop
 

"%windir%\..\program files\winrar\rar.exe x E:\a.rar" D:\a\

楼上的引号括错了吧?

"%windir%\..\program files\winrar\rar.exe" x E:\a.rar D:\a\

另外,这句
start "%windir%\..\program files\Internet Explorer\iexplore.exe" http://www.xxx.com
并不通用.
gototop
 

1、运行几个程序怎么写  例如打开www.a.com www.b.com  用and吗?
2、删除D:\a\b文件夹与D:\a\b.exe语法不一样吗?
3、怎样查看一个程序的dos参数?
gototop
 

在命令行下运行程序 /?看看有没有说明
如果没有说明的话,只有反编译一下,
看看程序开头的时候是怎么调用 GetCommandLine 这个API的了
gototop
 
123   1  /  3  页   跳转
页面顶部
Powered by Discuz!NT