关于VB.NET中调用CMD执行处理理 30

现在想做个VB.NET的程序把批处理命令一行行放到代码里执行比如用户点了一下这个按钮就打开一个CMD窗口显示批处理命令执行的进度就像网上“清理系统垃圾文件”的BAT一样把... 现在想做个VB.NET的程序 把批处理命令一行行放到代码里执行 比如 用户点了一下这个按钮 就打开一个CMD窗口显示批处理命令执行的进度 就像网上“清理系统垃圾文件”的BAT一样 把BAT里的代码封装到控件里调用CMD执行 我上网找了下方法 有说用
Dim p As New Process
p.StartInfo.FileName = "cmd.exe "
p.StartInfo.UseShellExecute = False
p.StartInfo.RedirectStandardInput = True
p.StartInfo.RedirectStandardOutput = True
p.StartInfo.RedirectStandardError = True
p.StartInfo.CreateNoWindow = True
p.Start()
p.StandardInput.WriteLine("ipconfig /all")
Dim strRst As String = p.StandardOutput.ReadToEnd()
的 但是执行了不显示CMD窗口 并且我不知道执行结果 我以前用VB的时候 可以用print #1,函数把一条条批处理命令封装到按钮里点一下就弹出CMD窗口执行批处理命令 请问在VB.NET里怎么做 我用的开发环境是Visual Studio2008 请各位大大给个方法小弟在线等 最好写出详细的过程和函数 我初学VB的
展开
 我来答
百度网友bdb9803
2012-02-02 · TA获得超过1.1万个赞
知道大有可为答主
回答量:1.1万
采纳率:53%
帮助的人:9972万
展开全部
调用c:\1.bat,可以这样:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Shell("cmd.exe /c call c:\1.bat", AppWinStyle.NormalFocus)
End Sub
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
UvUv555555
2014-01-29 · TA获得超过702个赞
知道小有建树答主
回答量:192
采纳率:0%
帮助的人:89.1万
展开全部
Dim p As New Process
p.StartInfo.FileName = "cmd.exe "
p.StartInfo.UseShellExecute = False
p.StartInfo.RedirectStandardInput = True
p.StartInfo.RedirectStandardOutput = True
p.StartInfo.RedirectStandardError = True
p.StartInfo.CreateNoWindow = True
p.Start()
p.WaitForExit()
p.StandardInput.WriteLine("ipconfig /all")
Dim strRst As String = p.StandardOutput.ReadToEnd()

加了个WaitForExit

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式