Skip to content

Commit ac68cfc

Browse files
Marc-André Moreauawakecoding
Marc-André Moreau
authored andcommitted
add ClientDeviceName .RDP file option
1 parent be2f4ca commit ac68cfc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dll/RdpSettings.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -804,6 +804,13 @@ HRESULT CMsRdpExtendedSettings::ApplyRdpFile(void* rdpFilePtr)
804804
value.vt = VT_BSTR;
805805
pMsRdpExtendedSettings->put_CoreProperty(propName, &value);
806806
}
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+
}
807814
else if (MsRdpEx_RdpFileEntry_IsMatch(entry, 's', "ConnectionBarText")) {
808815
bstr_t propName = _com_util::ConvertStringToBSTR(entry->name);
809816
bstr_t propValue = _com_util::ConvertStringToBSTR(entry->value);

0 commit comments

Comments
 (0)