Hey all,
im going to hold this short.
I checked all possible Powershell commands for RDM and I didnt see any option to import a data source via powershell.
Did I miss the command or is that not possible?
Hello,
You are right, there is no cmdlet available to import Data Source configuration file (.rdd).
It is possible to create a new Data Source using the New-RDMDataSource and Set-RDMDataSource cmdlets.
Best regards,
Érica Poirier
Hello,
After a discussion with an engineer, we have submitted an internal ticket to create a new PowerShell cmdlet to import Data Source configuration file (.rdd). For your information, the internal ticket number is RDMW-5150. Once an update will be available, we will keep you posted.
Best regards,
Érica Poirier
Hello,
After a discussion with an engineer, we have submitted an internal ticket to create a new PowerShell cmdlet to import Data Source configuration file (.rdd). For your information, the internal ticket number is RDMW-5150. Once an update will be available, we will keep you posted.
Best regards,
Hey,
this is beautiful, thank you!
Is there any update on that topic ? and an example. Please
Hello Michael,
This improvement is still on the todo list of our Engineering Department. I have increased the priority of this ticket and will be in touch as soon as there will be a new development on this case.
Best regards,
James Lafleur
Hi,
The latest release (2022.1.3.0) now supports importing data source using the Import-RDMDataSource command.
Usage example
$ds = Import-RDMDataSource -Path “C://myfile.rdd“ Set-RDMDataSource $ds
or
Import-RDMDataSource -Path “C://myfile.rdd“ | Set-RDMDataSource
Jonathan Lafontaine