时间:2021-05-20
要点1:cmd命令行的输入命令
netsh wlan set hostednetwork mode=allow ssid=用户名 key=密码
netsh wlan start hostednetwork
netsh waln stop hostednetwork
netsh interface ip set address name="本地连接" source=dhcp
要点2:在C#中调用cmd.exe命令行
复制代码 代码如下:
private void create(string str)
{
//process用于调用外部程序
System.Diagnostics.Process p = new System.Diagnostics.Process();
//调用cmd.exe
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();
//睡眠1s。
System.Threading.Thread.Sleep(1000);
//输入命令
p.StandardInput.WriteLine(str);
//一定要关闭。
p.StandardInput.WriteLine("exit");
}
详细的代码如下:
复制代码 代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace wifi01
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//“创建wifi热点”按钮
private void button1_Click(object sender, EventArgs e)
{
string str;
string userName = textBox1.Text;
string password = textBox2.Text;
if (password.Length >= 8 && userName != null)
{
// 命令行输入命令,用来新建wifi
str="netsh wlan set hostednetwork mode=allow ssid="+userName+" key="+password;
create(str);
MessageBox.Show("新建了wifi热点",
"新建成功",
MessageBoxButtons.OK,
MessageBoxIcon.Information);
label4.Text = "新建了wifi热点";
}
else
{
MessageBox.Show("你的账号为空或你的密码长度小于8",
"登陆失败",
MessageBoxButtons.OK,
MessageBoxIcon.Exclamation);
}
}
//"开启wifi"按钮
private void button2_Click(object sender, EventArgs e)
{
// 命令行输入命令,
string str = "netsh wlan start hostednetwork";
create(str);
label4.Text = "已启动wifi热点";
}
//“关闭wifi”按钮
private void button3_Click(object sender, EventArgs e)
{
// 命令行输入命令,
string str = "netsh wlan stop hostednetwork";
create(str);
label4.Text = "已关闭wifi热点";
}
//在cmd控制台输入命令,
private void create(string str)
{
//process用于调用外部程序
System.Diagnostics.Process p = new System.Diagnostics.Process();
//调用cmd.exe
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();
//睡眠1s。
System.Threading.Thread.Sleep(1000);
//输入命令
p.StandardInput.WriteLine(str);
//一定要关闭。
p.StandardInput.WriteLine("exit");
}
//自动IP连接 按钮
private void button4_Click(object sender, EventArgs e)
{
// 命令行输入命令,用来自动连接wifi:netsh interface ip set address name="本地连接" source=dhcp
string str="netsh interface ip set address name=\"本地连接\" source=dhcp";
string str1 = "锐捷是否提示你设置自动获取IP\n"+"或你想自动获取IP,请按确定";
DialogResult result = MessageBox.Show(str1,"自动连接IP",
MessageBoxButtons.OKCancel,MessageBoxIcon.Information);
if (result == DialogResult.OK)
{
create(str);
label4.Text = "锐捷自动获取IP";
}
}
}
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
MS的CMD命令行是一种重要的操作界面,一些在C#中不那么方便完成的功能,在CMD中几个简单的命令或许就可以轻松搞定,如果能在C#中能完成CMD窗口的功能,那一
本文实例讲述了C#读取命令行参数的方法。分享给大家供大家参考。具体如下:下面的代码用于从命令行读取参数,参数个数不定,程序将会输出用户在命令行输入的所有参数列表
前言python调用php代码实现思路:php文件可通过在terminal中使用php命令行进行调用,因此可使用python开启子进程执行命令行代码。函数所需的
本文实例讲述了mysql命令行脚本执行操作。分享给大家供大家参考,具体如下:命令行连接在工作中主要使用命令操作方式,要求熟练编写打开终端,运行命令mysql-u
在这篇文章中,我们将学习正确使用Node.js调用系统命令的方法,以避免常见的命令行注入漏洞。我们经常使用的调用命令的方法是最简单的child_process.