mirror of
https://github.com/kimmknight/remoteapptool.git
synced 2024-11-09 12:18:20 +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:
parent
bbce209a94
commit
f7a343e216
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user