ignore
[mirrors/Programs.git] / windows-batch / enable_ipv6.bat
1 @echo off
2
3 echo Enabling IPv6 over Teredo tunnel support...
4 echo You will need at least Windows XP with SP2 for this!
5 %SystemRoot%\system32\netsh interface ipv6 install
6 %SystemRoot%\system32\netsh interface ipv6 set teredo client
7
8 echo Now you can check your settings...
9 %SystemRoot%\system32\ipconfig
10
11 echo Done!
12 echo If failed, you will need at least Windows XP with SP2 for this!
13 pause
14
15 rem DISABLE:
16 rem %SystemRoot%\system32\netsh interface ipv6 uninstall
17
This page took 0.262514 seconds and 4 git commands to generate.