mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-10-31 23:49:25 +01:00
10 lines
397 B
Batchfile
10 lines
397 B
Batchfile
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
|
|
echo on
|