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

Export-RDMDataSource

Synopsis

Export the workspace configuration

Syntax

__AllParameterSets

Export-RDMDataSource [-InputObject] <PSDataSourceWrapper> [[-Filename] <string>] [-NoClobber]
 [-WhatIf] [-Confirm] [<CommonParameters>]

Description

Export the workspace configuration to an RDD file. The RDD file contains only the configuration information and does not include the workspace content. To prevent overwriting an existing file, use the -NoClobber parameter

Examples

Example 1

PS C:\> Export-RDMDataSource -InputObject 'MyWorkspace' -Filename 'C:\my\path\MyWorkspace.rdd' -NoClobber

Export the configuration of the workspace 'MyWorkspace' in the file 'C:\my\path\MyWorkspace.rdd' if this one does not exists.

Example 2

PS C:\> Get-RDMDataSource | Export-RDMDataSource -Filename 'C:\my\path\'

Export the configurations of all workspaces to the directory 'C:\my\path'. Each file will be named after its corresponding workspace.

Parameters

-Confirm

Prompts you for confirmation before running the cmdlet.

-Filename

RDD file to create. By default, it will use the workspace name.

-InputObject

Workspace whose configuration will be exported

-NoClobber

NoClobber prevents an existing file from being overwritten and displays a message that the file already exists. By default, if a file exists in the specified path, it is overwritten.

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

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.

Inputs

RemoteDesktopManager.PowerShellModule.PSOutputObject.PSWrapper.PSDataSourceWrapper

The workspace configuration to export can be specified by its name, its ID, or by the PSDataSource object obtained from Get-RDMDataSource

Notes

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

Last updated

Was this helpful?