For the complete documentation index, see llms.txt. This page is also available as Markdown.

Import-RDMDataSource

Synopsis

Import RDM workspace from a file

Syntax

__AllParameterSets

Import-RDMDataSource -Path <string> [<CommonParameters>]

Description

Import RDM workspace from a file

Examples

Example 1

PS C:\> Import-RDMDataSource -Path "C:\MyFile.rdd" | Set-RDMDataSource

Import the workspace from a configuration and save it

Example 2

PS C:\> $ds = Import-RDMDataSource -Path "C:\MyFile.rdd"; $ds.Name = "ANewName"; Set-RDMDataSource -DataSource $ds

Import the workspace from a configuration file, rename it "ANewName" and save it

Parameters

-Path

Path where the file is loaded. Must end with .rdd

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Notes

For more information, type "Get-Help Import-RDMDataSource -detailed". For technical information, type "Get-Help Import-RDMDataSource -full".

Last updated

Was this helpful?