disable ipv6 issue

This commit is contained in:
Michael H.G. Schmidt 2022-06-20 08:18:12 +02:00
parent 0bafa598cf
commit d515e9044f
2 changed files with 17 additions and 0 deletions

View File

@ -186,6 +186,9 @@ echo.
call disable-systemproxy.cmd
echo.
call disable-ipv6.cmd
echo.
powershell -command .\disable-soundscheme.ps1
echo.

14
scripts/disable-ipv6.cmd Normal file
View File

@ -0,0 +1,14 @@
@echo off
echo ####### %0 #######
echo disabling IPv6 ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6" ^
/v DisabledComponents /t REG_DWORD /d 255 /f 1>nul
echo.
echo +++ please reboot your machine +++
echo.
echo ####### %0 #######