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

Search-DSEntry

Synopsis

Search an entry in the DVLS instance

Syntax

InputObject (Default)

Search-DSEntry [[-InputObject] <MultiVaultSearchItemData[]>] [-ExcludeVault <guid[]>]
 [-IncludeVault <guid[]>] [-IncludePAMVaults] [-IncludeUserVault] [-AsLegacyResponse]
 [<CommonParameters>]
Search-DSEntry [-By] <SearchItemType> -Value <string> [-Match <SearchItemText>]
 [-ExcludeVault <guid[]>] [-IncludeVault <guid[]>] [-IncludePAMVaults] [-IncludeUserVault]
 [-AsLegacyResponse] [<CommonParameters>]

Description

Search an entry in the DVLS instance. There are two way to execute a search. This cmdlet allows a simple search with a single criterion using three parameters: By, Match, and Value. For a more complex search or ease of use, criteria can be created with the cmdlet New-DSSearchCriteria. The InputObject will accept an array of those criteria. By default, all vaults are searched, except the User vault and the PAM vaults. For those two vaults, each will be included by using the corresponding parameter: IncludeUserVault and IncludePAMVaults. It is also possible to search only a subset of vaults by using one of IncludeVault and ExcludeVault.

Examples

Example 1

Search in the two vaults identified by the IDs stored in $pamvaultAID and $pamVaultBID for an entry whose name named 'SomeValue'

Example 2

Search all entries whose name starts with ThePrefix in all vaults, excluding the User vault and the PAM vaults.

Example 3

Search all PAM entries whose username contains AUsername created in the last 30 days. Only the PAM vaults will be searched.

Example 4

Search all PAM entries whose username contains AUsername created in the last 30 days. Only the PAM vaults will be searched.

Parameters

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

-By

Field on which the expression will be applied

-ExcludeVault

Vaults to be excluded from the search.

-IncludePAMVaults

Include the PAM Vaults

-IncludeUserVault

Include the user vault

-IncludeVault

Vaults to be searched. If not specified, all of them will be searched except the PAM Vaults and User vault. For the PAM vaults or User vault, use the corresponding switch.

-InputObject

Search criteria created from New-DSSearchCriteria

-Match

Condition the expression must respect. By default, the condition is 'Contains'.

-Value

String value

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

Devolutions.RemoteDesktopManager.Business.MultiVaultSearchItemData

Array of criteria created by New-DSSearchCriteria calls.

Notes

For more information, type "Get-Help Search-DSEntry -detailed". For technical information, type "Get-Help Search-DSEntry -full".

Last updated

Was this helpful?