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
We have tested clients which are just updated to RDP v10.12 and none of them can connect.
Error message: ValueError: 524305 is not a valid RDPVersion
ValueError: 524305 is not a valid RDPVersion
The text was updated successfully, but these errors were encountered:
Try modifying enum/rdp.py and adding RDP10_12 = 0x80011 as follows:
RDP10_12 = 0x80011
class RDPVersion(IntEnum): RDP4 = 0x80001 RDP5 = 0x80004 RDP10 = 0x80005 RDP10_1 = 0x80006 RDP10_2 = 0x80007 RDP10_3 = 0x80008 RDP10_4 = 0x80009 RDP10_5 = 0x8000A RDP10_6 = 0x8000B RDP10_7 = 0x8000C RDP10_8 = 0x8000d RDP10_9 = 0x8000e RDP10_10 = 0x8000f RDP10_11 = 0x80010 RDP10_12 = 0x80011
Sorry, something went wrong.
There is a working PR for this #477
No branches or pull requests
We have tested clients which are just updated to RDP v10.12 and none of them can connect.
Error message:
ValueError: 524305 is not a valid RDPVersion
The text was updated successfully, but these errors were encountered: