Unseal an entry.
Unprotect-DSSealedEntry -ID <guid> [<CommonParameters>]
Unseal an entry.
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
Unseal the entry 'InCaseOfEmergency', get its sensitive data, and reseal the entry. The entry is sealed because the seal state value in $entry has never been modified.
ID of the entry to unseal.
Type: System.Guid
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
Position: Named
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 Unprotect-DSSealedEntry -detailed". For technical information, type "Get-Help Unprotect-DSSealedEntry -full".