Skip to content

Commit

Permalink
Fixed issue: If RDP Signing was ticked (and saved), it stayed ticked …
Browse files Browse the repository at this point in the history
…even when RDP signing was not available (eg. no certs on system) causing an error during RDP creation.
  • Loading branch information
kimmknight committed Nov 13, 2019
1 parent bbce209 commit f7a343e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions remoteapp-tool/RemoteAppCreateClientConnection.vb
Original file line number Diff line number Diff line change
Expand Up @@ -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 _
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f7a343e

Please sign in to comment.