0

我正在尝试制作一个批处理脚本以在每次启动时在 LAN 和 WLAN 之间切换,但似乎我在某个地方遇到了问题。

这是我的脚本:

@Echo off


if errorlevel 1 goto LAN
if errorlevel 0 goto WLAN

:LAN

netsh interface set interface "Connexion réseau sans fil 2" disabled 

netsh interface set interface "Connexion au réseau local 3" enabled 

goto end

:WLAN

netsh interface set interface "Connexion au réseau local 3" disabled

netsh interface set interface "Connexion réseau sans fil 2" enabled
start chrome.exe

:END

当我启动这个脚本时,我得到了这个:

L'interface portant ce nom n'est pas enregistrée pour le routeur.

L'interface portant ce nom n'est pas enregistrée pour le routeur.

这意味着具有此名称的接口未在路由器上注册

可能这将是一个编码问题,因为您可以看到网络接口名称是法语...但我不知道...

4

2 回答 2

1

我在这里遇到了同样的问题,使用的是 pt_br Windows 版本。尝试使用“copy con”并在提示符下直接键入您的命令。按 Ctrl+Z 保存并退出。瞧!:-)

于 2013-05-29T14:02:16.627 回答
0

You may need to change the codepage with the CP command so that the French text is recognised correctly.

于 2013-05-30T01:40:42.007 回答