mirror of
https://github.com/kimmknight/remoteapptool.git
synced 2025-08-09 20:24:05 +00:00
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:
@@ -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
|
||||
|
Reference in New Issue
Block a user