LAN과 WLAN 간 전환을위한 배치 파일을 만들었습니다. LAN 연결을 활성화하고 WLAN이 활성화 된 경우 WLAN 연결을 비활성화합니다.
배치 파일은 Windows 7에서 테스트되었습니다. 파일을 WLAN-LAN.bat
불러서 관리자 권한 프롬프트로 시작하십시오.
@Echo off
Echo De Netwerkinstellingen worden omgezet van WLan naar LAN of Vice Versa !
Echo Even Geduld svp .................................................
net start dot3svc
netsh lan show interfaces >NUL
if errorlevel 1 goto LAN
if errorlevel 0 goto WLAN
:LAN
netsh interface set interface "Draadloze netwerkverbinding" disabled >NUL
sc start dot3svc >NUL
netsh interface set interface "LAN-verbinding" enabled >NUL
goto end
:WLAN
sc start dot3svc >NUL
netsh interface set interface "LAN-verbinding" disabled >NUL
sc stop dot3svc >NUL
netsh interface set interface "Draadloze netwerkverbinding" enabled >NUL
:end
시스템의 네트워크 인터페이스와 일치하도록 네트워크 인터페이스의 이름을 변경해야합니다. 따옴표 사이에서 이름을 바꾸십시오 : "...".
또한 유선 자동 구성 서비스를 자동으로 설정해야합니다. 주석의 텍스트는 원하는대로 변경할 수 있습니다.