标题: 怎么自动关闭命令窗口?
[打印本页]
作者: cyp201555
时间: 2006-8-3 14:51
标题: 怎么自动关闭命令窗口?
@echo off
net use \\200.200.200.121 88 /user:admin
explorer \\200.200.200.121
exit
上面的程序运行以后,能够打开200.200.200.121局域网的电脑,但同时cmd命令窗口也出现,不能自动关闭。怎么能运行程序的同时,cmd窗口能自动关闭。
作者: zh159
时间: 2006-8-3 15:18
start explorer \\200.200.200.121
作者: zouzhxi
时间: 2006-9-22 22:37
[quote]Originally posted by [i]cyp201555[/i] at 2006-8-3 14:51:
@echo off
net use \\200.200.200.121 88 /user:admin
explorer \\200.200.200.121
exit
上面的程序运行以后,能够打开200.200.200.121局域网的电脑,但同时cmd命令窗口也出 ... [/quote]
@echo off
net use \\200.200.200.121 88 /user:admin
explorer \\200.200.200.121 & exit
只要稍稍改一下..就行了....这样也行....