写错了,那个是获取数据库服务器的。下面这些可以
Dim p As new Process()
p.StartInfo.FileName = "cmd.exe"
p.StartInfo.UseShellExecute = False '关闭Shell的使用
p.StartInfo.RedirectStandardInput = True '重定向标准输入
p.StartInfo.RedirectStandardOutput = True '重定向标准输出
p.StartInfo.RedirectStandardError = True '重定向错误输出
p.StartInfo.CreateNoWindow = True '设置不显示窗口
p.Start()
p.StandardInput.WriteLine("net view")
p.StandardInput.WriteLine("exit")
Dim strRst As String = p.StandardOutput.ReadToEnd()
msgbox(strrst)
Dim ary() As String = strrst.replace(chr(10), "").Split(chr(13))
For Each s As String In ary
If s.StartsWith("\\") Then
msgbox(s)
End If
Next
http://www.cnblogs.com/luoht/archive/2009/12/18/1627431.html