We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be2f4ca commit ac68cfcCopy full SHA for ac68cfc
dll/RdpSettings.cpp
@@ -804,6 +804,13 @@ HRESULT CMsRdpExtendedSettings::ApplyRdpFile(void* rdpFilePtr)
804
value.vt = VT_BSTR;
805
pMsRdpExtendedSettings->put_CoreProperty(propName, &value);
806
}
807
+ else if (MsRdpEx_RdpFileEntry_IsMatch(entry, 's', "ClientDeviceName")) {
808
+ bstr_t propName = _com_util::ConvertStringToBSTR(entry->name);
809
+ bstr_t propValue = _com_util::ConvertStringToBSTR(entry->value);
810
+ value.bstrVal = propValue;
811
+ value.vt = VT_BSTR;
812
+ pMsRdpExtendedSettings->put_CoreProperty(propName, &value);
813
+ }
814
else if (MsRdpEx_RdpFileEntry_IsMatch(entry, 's', "ConnectionBarText")) {
815
bstr_t propName = _com_util::ConvertStringToBSTR(entry->name);
816
bstr_t propValue = _com_util::ConvertStringToBSTR(entry->value);
0 commit comments