Hello,
How to change the content "Other (Custom)" in "dataEntry" Session with Powershell RDM cmdLet ?
Is it possible to change the "$session.DataEntry.ConnectionTypeInfos.data" Property ? and how ?
best regards,
thibaut Proust (French)
Hi,
It's not possible to do it the current version. We made a fix that will be available in the next RDM version.
Here's a code snippet on how you will be able to do it in the next RDM version.$session = Get-RDMSession | Where-Object {$_.name -eq "Other" }$newOtherValue = New-Object -TypeName Devolutions.RemoteDesktopManager.Business.DataEntryOtherValue$newOtherValue.Name = "NewName"$newOtherValue.Value = "NewValue"$otherValues = $session.DataEntry.OtherValues$otherValues += $newOtherValue$session.DataEntry.OtherValues = $otherValuesSet-RDMSession -Session $sessionUpdate-RDMUI Best regards,
Olivier Désalliers
Hi,
We've released a new beta version with the fix in it. Could you try it to see if everything works for you?
Best regards,
Olivier Désalliers
I'm going to try
thank you
it works.
Thank you :)