Import vaults contained in a rdx file in the current data source
Import-RDMRepository [-Path] <string> [-Password <securestring>] [-Duplicate <DuplicateAction>]
[-KeepID] [-ForcePromptAnswer <DialogResult[]>] [<CommonParameters>]
Import vaults contained in a rdx file in the current data source. If the file is protected, the parameter Password must be used to unlock the data contained. By default, all entries will have their ID changed. This is to avoid unwanted behaviors, such as moving an entry if imported in the same database. The Duplicate parameter indicates the action (ignore, overwrite, add) to apply in presence of duplicated entries. A limitation of the command is the inability to map the imported vaults to a specific one. Each vault will be assigned to an existing one with the same ID or the same name, or a new one if none are found. This command is only available to administrators on advanced data sources. Because an application identity on a Hub data source cannot hold administrator privileges, its capabilities are more restricted. It must have the appropriate rights (Add Entries, Create Vault).
PS C:\> $pwd = Read-Host -AsSecureString;
Import-RDMRepository -Path myFile.rdx -Password $pwd
Import all vaults in 'myFile.rdx'. The protected file is unlocked with the parameter $pwd.
PS C:\> $filePath = 'C:\my\path\filename.rdx';
Export-RDMRepository -Name VaultA, VaultB, VaultC -Path $path -IncludeAttachments -IncludeCredentials -IncludeDocumentation;
Get-RDMDataSource -Name AnotherOne | Set-RDMCurrentDataSource;
Import-RDMSession -Path myFile.rdx -KeepID -Duplicate IgnoreAll
Export VaultA, VaultB, and VaultC of the current data source in the file specified by $path. Change the current data source to 'AnotherOne' and import all vaults recently exported. With the KeepID switch present, all imported entries will keep their ID. As long as the new data source does not use the same database, no unexpected behaviors will happen.
Action to apply to the imported entries in case of a duplicate. If the KeepID switch is not present, no duplicate will be found. By default, all duplicates will be ignored.
Type: Devolutions.RemoteDesktopManager.DuplicateAction
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
Switch to use with caution. It will automatically answer prompt asking yes/no, yes/no/cancel, or ok/cancel questions. In case of multiple prompts, multiple values can be passed to this parameter. Here are the accepted values:
Yes: Accept the prompt. Cover the OK and Automatic value.
No: Refuse the yes/no/cancel prompt. Cancel is the fallback option if there is not an option No.
Cancel: Cancel the yes/no/cancel prompt. No is the fallback option if there is not an option Cancel.
Type: System.Windows.Forms.DialogResult[]
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
Keep all imported connections' ID. This is can cause unwanted behaviors, such as moving an entry if imported in the same database.
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: ''
Unlock the data contained in the protected file.
Type: System.Security.SecureString
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
IsRequired: false
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
Path where the file containing the exported vaults will be saved. The extension must be '.rdx'.
Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: 0
IsRequired: true
ValueFromPipeline: false
ValueFromPipelineByPropertyName: false
ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
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.
For more information, type "Get-Help Import-RDMRepository -detailed". For technical information, type "Get-Help Import-RDMRepository -full".