shell-things/Windows/IPv6-no_privacy.bat

10 lines
397 B
Batchfile
Raw Normal View History

echo off
echo Disable IPv6 privacy extensions? Recommended for servers and other static devices.
pause
netsh interface ipv6 set global randomizeidentifiers=disabled store=active
netsh interface ipv6 set global randomizeidentifiers=disabled store=persistent
netsh interface ipv6 set privacy state=disabled store=active
netsh interface ipv6 set privacy state=disabled store=persistent
pause
2023-02-21 18:08:54 +01:00
echo on