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

Unprotect-DSSealedEntry

Sinopsis

Desprecintar una entrada.

Sintaxis

__AllParameterSets

Unprotect-DSSealedEntry -ID <guid> [<CommonParameters>]

Descripción

Desprecintar una entrada.

Ejemplos

PS C:\> $entry = Get-DSEntry -FilterBy Name -FilterMatch ExactExpression -FilterValue 'InCaseOfEmergency';
PS C:\> Unprotect-DSSealedEntry -ID $entry.ID;
PS C:\> $sensitiveData = Get-DSEntrySensitiveData -EntryID $entry.ID;
PS C:\> Update-DSEntryBase -FromRDMConnection $entry

Desprecinte la entrada 'InCaseOfEmergency', obtenga sus datos sensibles y vuelva a precintar la entrada. La entrada está precintada porque el valor del estado de precinto en $entry nunca se ha modificado.

Parámetros

-ID

ID de la entrada que se va a desprecintar.

CommonParameters

Este cmdlet admite los parámetros comunes: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction y -WarningVariable. Para más información, consulte about_CommonParameters.

Notas

Para más información, escriba "Get-Help Unprotect-DSSealedEntry -detailed". Para información técnica, escriba "Get-Help Unprotect-DSSealedEntry -full".

Última actualización

¿Te fue útil?