Skip to content

Commit 2e0ef59

Browse files
Skip AVD signature checks using SkipAvdSignatureChecks
1 parent 3eb6a68 commit 2e0ef59

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

dll/RdpSettings.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,11 @@ static HRESULT Hook_ITSPropertySet_GetBoolProperty(ITSPropertySet* This, const c
103103
*propValue = 1;
104104
}
105105

106+
if (MsRdpEx_StringIEquals(propName, "SkipAvdSignatureChecks")) {
107+
// Workaround to force-disable AVD signature checks
108+
*propValue = 1;
109+
}
110+
106111
MsRdpEx_LogPrint(TRACE, "ITSPropertySet::GetBoolProperty(%s, %d)", propName, *propValue);
107112

108113
return hr;

0 commit comments

Comments
 (0)