윈도우 8.1 Wi-Fi / 유선 Ethernet 어댑터의 IP 주소를 할당하거나 DHCP로 다시 돌려 놓는 배치 파일. 초등학교 시절을 떠올리며 choice 구문을 살펴봤다.
1. Wi-Fi”라는 이름의 무선 어댑터의
IP 주소, 서브넷 마스크, 게이트웨이를 변경한 뒤,
DNS를 원하는 대로 바꾸는 구문:
netsh interface ip set address “Wi-Fi” static 192.168.0.31 255.255.255.0 192.168.0.1
netsh interface ip set dns “Wi-Fi” static 192.168.0.5
2. 유선 Ethernet 어댑터를 DHCP로 돌리는 구문:
netsh interface ip set dns “Local Area Connection” dhcp
netsh interface ip set wins “Local Area Connection” dhcp
netsh interface ip set address “Local Area Connection” dhcp
ipconfig /renew
http://1drv.ms/1onzNoa 에서 자세한 내용을 보거나 다운로드할 수 있다.