bat代碼實(shí)現(xiàn)一鍵斷網(wǎng)聯(lián)網(wǎng)(激活某些特殊軟件時,需要臨時斷開網(wǎng)絡(luò))
[重要通告]如您遇疑難雜癥,本站支持知識付費(fèi)業(yè)務(wù),掃右邊二維碼加博主微信,可節(jié)省您寶貴時間哦!
我們在安裝某些特殊或者特定軟件的時候,可能就會需要斷開網(wǎng)絡(luò),很多時候我們需要關(guān)閉本地連接,然后開啟,會感覺有些麻煩,就有了這個bat小助手需要臨時斷開網(wǎng)絡(luò),等處理完后,又要恢復(fù)網(wǎng)絡(luò),所以有了這個小玩意兒;
BAT版,功能與上面的一致
@echo off
for /f "tokens=2,4" %%i in ('netsh interface show interface') do (
set state=%%i
set name=%%j
)echo 當(dāng)前:%name% %state%
if %state%==已連接 (
netsh interface set interface %name% disable
echo 連接已斷開
) else (
netsh interface set interface %name% enable
echo 連接已恢復(fù)
)pause
Python版,需電腦有python環(huán)境
import os
def interface_name():
ls = []
for i in os.popen('netsh interface show interface'):
if i := i.strip():
ls.append(i.split())
return ls[-1][-1], ls[-1][-3]i_name, i_state = interface_name()
# print(interface_name())
if i_state == '已連接':
os.popen(f'netsh interface set interface {i_name} disable')
print('連接已斷開')if i_state == '已斷開連接':
os.popen(f'netsh interface set interface {i_name} enable')
print('連接已恢復(fù)')
一鍵斷網(wǎng)聯(lián)網(wǎng)下載地址如下-回復(fù)可見:
(溫馨提示:發(fā)表評論請勾選 在此瀏覽器中保存我的顯示名稱、郵箱地址和網(wǎng)站地址,以便下次評論時使用。)
問題未解決?付費(fèi)解決問題加Q或微信 2589053300 (即Q號又微信號)右上方掃一掃可加博主微信
所寫所說,是心之所感,思之所悟,行之所得;文當(dāng)無敷衍,落筆求簡潔。 以所舍,求所獲;有所依,方所成!
看看線,多謝了!