這個問題似乎是與連接名稱。 如果運行
netsh interface ip set address "Wireless Network Connection" static 192.168.1.26 255.255.255.0 192.168.1.1
"Wireless Network Connection"
應該存在完全一樣的給定名稱爲一個接口。它就像您正在引用的別名。
如果你看看你的接口netsh interface ip show config
確實存在"Wireless Network Connection"
嗎?可能是"Wireless Network Connection 2"
之類的其他東西,然後你會得到確切的錯誤,因爲你已經發布。
編輯
根據您的評論。
記住要爲每一行添加正確的接口名稱,但您的最新問題是真的,在最後一行添加DNS服務器
netsh interface ip set address "Connection name goes here" static 192.168.1.26 255.255.255.0 192.168.1.1
netsh interface ip set dns "Connection name goes here" static 8.8.8.8
netsh interface ip add dnsserver "Connection name goes here" address=4.2.2.2 index=1
注意您還可以使用
netsh interface ipv4 add dnsserver "Connection name goes here" address=4.2.2.2 index=1
就index=1
而言,請記住根據要首先索引的DNS服務器進行設置。
'netsh接口IP添加/'不顯示'加dns'但'加dnsservers' – JosefZ
我得到什麼?與沒有wlan適配器的系統上的第一個命令非常相同的錯誤信息。 – LotPings