mirror of
https://github.com/kimmknight/remoteapptool.git
synced 2024-11-09 20:28: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.Enabled = False
|
||||||
GroupBoxSignRDP.Text += " (requires rdpsign.exe)"
|
GroupBoxSignRDP.Text += " (requires rdpsign.exe)"
|
||||||
GroupBoxSignRDP.Tag = "noexe"
|
GroupBoxSignRDP.Tag = "noexe"
|
||||||
|
CheckBoxSignRDPEnabled.Checked = False
|
||||||
|
CheckBoxCreateSignedAndUnsigned.Checked = False
|
||||||
|
CertificateComboBox.Text = ""
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If Not RemoteApp.FileTypeAssociations Is Nothing Then _
|
If Not RemoteApp.FileTypeAssociations Is Nothing Then _
|
||||||
@ -143,6 +146,9 @@ Public Class RemoteAppCreateClientConnection
|
|||||||
ElseIf Not GroupBoxSignRDP.Tag = "noexe" Then
|
ElseIf Not GroupBoxSignRDP.Tag = "noexe" Then
|
||||||
GroupBoxSignRDP.Text += " (No certificates found)"
|
GroupBoxSignRDP.Text += " (No certificates found)"
|
||||||
GroupBoxSignRDP.Enabled = False
|
GroupBoxSignRDP.Enabled = False
|
||||||
|
CheckBoxSignRDPEnabled.Checked = False
|
||||||
|
CheckBoxCreateSignedAndUnsigned.Checked = False
|
||||||
|
CertificateComboBox.Text = ""
|
||||||
End If
|
End If
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
Loading…
Reference in New Issue
Block a user