分类: Windows平台
2014-06-13 15:08:23
原文地址:window7笔记本共享wifi 作者:vaqeteart
2014,新年,第一篇,就以我在新公司中总结的一个文档做为开始吧,今天是收获的一年~
window7笔记本共享wifi:
笔记本脸上网后,假设是通过有线网络连接,我们还可通过建立热点的方式,将该笔记本的联网功能以无线的方式共享。
1.打开你的笔记本的无线网卡“开关”。
2.以管理员身份运行cmd:快捷键win+R→输入"cmd”→回车。
或进入C:\Windows\System32,右键单击cmd.exe即可看见“以管理员运行cmd”相关的选项。
3.命令提示符中输入:netsh wlan set hostednetwork mode=allow ssid=myname key=mypass
这样就初步启用和设定了虚拟WiFi网卡,在Control Panel\Network and Internet\Network and Sharing Center->local area connection->properities->sharing->Allow other ....to connect through this compuer's internet connect->中,会多出一个连接(假设为"new connection")。
PS:此命令有三个参数。
mode:是否启用虚拟WiFi网卡,改为disallow则为禁用;
ssid:无线网络名称,最好用英文(以binglanPC为例);
key:无线网络密码,8个以上字符(本文以binglanWiFi为例)。
4.设置共享连接:Control Panel\Network and Internet\Network and Sharing Center->local area connection->properities->sharing->Allow other ....to connect through this compuer's internet connect->"new connection"->ok
5.命令行运行:netsh wlan start hostednetwork
这样,便可通过手机等无线客户端扫描到之前建立的"myname"热点,并且连接。start是启动,stop是关闭连接。
6.如果想去掉共享wifi连接,在cmd输入:netsh wlan set hostednetwork mode=disallow
如果电脑休眠或重启,可能会自动断开连接,这个时候,resume电脑之后,运行netsh wlan start hostednetwork会再次启动wifi共享。