Export-RDMDataSource

Synopsis

Export the workspace configuration

Syntaxe

__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

Exemples

Exemple 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.

Exemple 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.

Paramètres

-Confirm

Vous demander une confirmation avant d'exécuter l'applet de commande.

Type: System.Management.Automation.SwitchParameter
DefaultValue: False
SupportsWildcards: false
Aliases:
- cf
ParameterSets:
- Name: (All)
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

-NomFichier

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

Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: 1
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

-InputObject

Workspace whose configuration will be exported

Type: RemoteDesktopManager.PowerShellModule.PSOutputObject.PSWrapper.PSDataSourceWrapper
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: 0
  IsRequired: true
  ValueFromPipeline: true
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

-NoClobber

NoClobber empêche qu'un fichier existant soit écrasé et affiche un message indiquant que le fichier existe déjà. Par défaut, si un fichier existe dans le chemin spécifié, il est écrasé.

Type: System.Management.Automation.SwitchParameter
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

-WhatIf

Montrer ce qui se produirait si l'applet de commande s'exécute. L'applet de commande n'est pas exécutée.

Type: System.Management.Automation.SwitchParameter
DefaultValue: False
SupportsWildcards: false
Aliases:
- wi
ParameterSets:
- Name: (All)
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

CommonParameters

Cette applet de commande prend en charge les paramètres communs : -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction et -WarningVariable. Pour plus d'informations, voir about_CommonParameters.

Entrées

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

Remarques

Pour plus d'informations, taper "Get-Help Export-RDMDataSource -detailed". Pour des informations techniques, taper "Get-Help Export-RDMDataSource -full".

Devolutions Forum logo Partagez vos commentaires