码迷,mamicode.com
首页 > Windows程序 > 详细

windows配置承载网络的一个批处理程序

时间:2015-05-14 17:52:17      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

@rem 这是windows中创建承载网络的相关命令
title wifi热点
@echo off

set ssid=abcde
set key=123456789

:begin
cls
echo --------------------------------------------------------
echo       默认ssid:%ssid%     默认key:%key%
echo --------------------------------------------------------
echo 1.配置    2.启动    3.停止    4.禁用    5.状态    0.退出
choice /C 123450

if errorlevel 6 goto exit
if errorlevel 5 goto status
if errorlevel 4 goto disallow
if errorlevel 3 goto stop
if errorlevel 2 goto start
if errorlevel 1 goto allow

:allow
netsh wlan set hostednetwork mode=allow ssid=%ssid% key=%key%
goto end

:start
netsh wlan start hostednetwork
goto end

:stop
netsh wlan stop hostednetwork
goto end

:disallow
netsh wlan set hostednetwork mode=disallow
goto end

:status
netsh wlan show hostednetwork
goto end

:end
pause
goto begin
:exit
pause

windows配置承载网络的一个批处理程序

标签:

原文地址:http://www.cnblogs.com/zhanghaha/p/4503636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!