We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User reported installer would not succeed. This was due to
HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\DisabledComponents
being set to 0xFFFFFF and not 0xFF.
Currently the code checks for the value to be set to 255. Per MS the min/max are
Min Value: 0x00 Max Value: 0xFF (IPv6 disabled)
see: https://docs.microsoft.com/en-us/troubleshoot/windows-server/networking/configure-ipv6-in-windows but clearly the registry allows the user to set it higher.
Account for this
The text was updated successfully, but these errors were encountered:
fixed with 1.2.12
Sorry, something went wrong.
dovholuknf
No branches or pull requests
User reported installer would not succeed. This was due to
being set to 0xFFFFFF and not 0xFF.
Currently the code checks for the value to be set to 255. Per MS the min/max are
see: https://docs.microsoft.com/en-us/troubleshoot/windows-server/networking/configure-ipv6-in-windows
but clearly the registry allows the user to set it higher.
Account for this
The text was updated successfully, but these errors were encountered: