win7無線網共用批處理

來源:互聯網
上載者:User
@echo offecho 請確認你是以管理員的方式運行本程式的:startpauseclsecho                *********************************************echo                *                wifi control               *echo                *        0    start wif                     *echo                *        1    creat wif                     *echo                *        2    stop wifi                     *echo                *        3    show information              *echo                *        4    exit                          *echo                *********************************************set /p iit= please input your choice:if "%iit%" equ "1" (     netsh wlan set hostednetwork mode=allow ssid=IT05 key=12345678 //注意這裡自己設定ssid和key,key的位元有要求的,至少8位     if %errorlevel% neq 0 (             echo failed!             goto end     )     echo please ensure your network is sharing ! //設定你的網,需要它共用到你建立的無限虛擬網     echo if so, press any key to continue !     echo else please go and set it and then come back here to go on !     pause     netsh wlan start hostednetwork     if %errorlevel% neq 0 (             echo failed!             goto end     )     echo success start !     )if "%iit%" equ "0"  (     netsh wlan start hostednetwork     if %errorlevel% neq 0 (             echo failed to start wifi !             goto end      )      )if "%iit%" equ "2"  (     netsh wlan set hostednetwork mode=disallow      if %errorlevel% neq 0 (             echo failed!             goto end     )     netsh wlan stop hostednetwork      if %errorlevel% neq 0 (             echo failed!             goto end     )     echo success stop !     )if "%iit%" equ "3" (     netsh wlan show hostednetwork      if %errorlevel% neq 0 (             echo failed!             goto end     )     )if "%iit%" lss "4" goto startif "%iit%" gtr "4" goto start:endecho . > nul

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.