Fixed issue: If RDP Signing was ticked (and saved), it stayed ticked even when RDP signing was not available (eg. no certs on system) causing an error during RDP creation.

This commit is contained in:
Kim 2019-11-14 00:00:49 +11:00
parent bbce209a94
commit f7a343e216

View File

@ -38,6 +38,9 @@ Public Class RemoteAppCreateClientConnection
GroupBoxSignRDP.Enabled = False
GroupBoxSignRDP.Text += " (requires rdpsign.exe)"
GroupBoxSignRDP.Tag = "noexe"
CheckBoxSignRDPEnabled.Checked = False
CheckBoxCreateSignedAndUnsigned.Checked = False
CertificateComboBox.Text = ""
End If
If Not RemoteApp.FileTypeAssociations Is Nothing Then _
@ -143,6 +146,9 @@ Public Class RemoteAppCreateClientConnection
ElseIf Not GroupBoxSignRDP.Tag = "noexe" Then
GroupBoxSignRDP.Text += " (No certificates found)"
GroupBoxSignRDP.Enabled = False
CheckBoxSignRDPEnabled.Checked = False
CheckBoxCreateSignedAndUnsigned.Checked = False
CertificateComboBox.Text = ""
End If
End Sub