您的位置:首页 > 理论基础

用VB.NET实现设置计算机IP地址

2008-05-18 13:52 295 查看
Private Sub Button_Click()
        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("netsh interface ip set address " + " ""本地连接"" " + " static 192.168.0.108 255.255.255.0 192.168.0.1 1")
        p.St
4000
andardInput.WriteLine("netsh -c interface ip set dns name=" + " ""本地连接"" " + " source=static addr=220.189.127.107 register=PRIMARY")
        p.StandardInput.WriteLine("exit")
        Dim strMessage As String = p.StandardOutput.ReadToEnd()
        If (strMessage.IndexOf("确定") <> -1) Then
            MessageBox.Show("填写ip成功!")
        Else
            MessageBox.Show("填写ip失败!!")
        End If
        p.Close()
    End Sub
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息