Estas instruções no link provavelmente são o que você precisa:
To disable SLAAC in Windows first check what NIC you would like to disable auto configuration on with:
netsh interface ipv6 show interface
Then execute
netsh interface ipv6 set interface X routerdiscovery=disabled
where X is desired interface index from the show command output.
To disable privacy execute (command works globally for all interfaces):
netsh interface ipv6 set privacy state=disable store=persistent netsh interface ipv6 set global randomizeidentifiers=disabled store=persistent
No entanto, um aviso: se você desativar a escuta de anúncios do roteador, precisará configurar o gateway padrão do IPv6 (e talvez algumas outras configurações, como o tamanho da MTU) manualmente.