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

Get-DSEntry

Synopsis

Get entry(ies) from your Devolutions Server instance.

Syntax

GetAll (Default)

Get-DSEntry [[-VaultID] <guid>] [-All] [-SearchAllVaults] [-AsLegacyResponse] [<CommonParameters>]

GetById

Get-DSEntry [[-VaultID] <guid>] [-EntryId] <guid> [[-VaultPassword] <string>] [-AsRDMConnection]
 [-SearchAllVaults] [-AsLegacyResponse] [<CommonParameters>]

Filter

Get-DSEntry [[-VaultID] <guid>] [-FilterValue] <string> [[-FilterBy] <SearchItemType>]
 [[-FilterMatch] <SearchItemText>] [-SearchAllVaults] [-AsLegacyResponse] [<CommonParameters>]

GetPage

Get-DSEntry [[-VaultID] <guid>] [[-PageSize] <int>] [[-PageNumber] <int>] [[-FolderID] <guid>]
 [-SearchAllVaults] [-AsLegacyResponse] [<CommonParameters>]

Description

Using different parameter sets, returns either all entries (from one or all vaults), a specific entry by filter (Get-Help Get-DSEntry -Parameter FilterBy) or paginated results.

Examples

Example 1

Get the first page containing 25 entries directly in the root of the default vault.

Example 2

Get the entry by its ID. The search covers all vaults. The

Example 3

Get all entries of the specified vault.

Example 4

Get all entries whose name starts with "ABC" in all the vaults.

Parameters

-All

Get all entries.

-AsLegacyResponse

In versions prior to 2024.2, many DS cmdlets returned a ServerResponse object. Enabling this backward compatibility switch allows scripts developed for earlier versions to function correctly.

-AsRDMConnection

Return a ConnectionInfoEntity instead of a partial connection

-EntryId

ID of the desired entry

-FilterBy

Field on which the filter will be applied. It will be on the Name by default.

-FilterMatch

Determine the condition of the search. Default condition is Contains.

-FilterValue

Value used in the filter

-FolderID

Folder where the entries will be fetched. The default value will the root.

-PageNumber

Determine which page is fetched.

-PageSize

Number of entries in a page. Default value is 25 entries per page.

-SearchAllVaults

All vaults will bew considered for the search.

-VaultID

ID of the vault to be searched

-VaultPassword

Password of the vault

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 Get-DSEntry -detailed". For technical information, type "Get-Help Get-DSEntry -full".

Last updated

Was this helpful?