Modules
Modules copied to clipboard
Uservoice is no longer used at Microsoft. Old link results in 404.
See also: PowerShell/PowerShell#11546
As discussed in #100, Windows PowerShell defaults to the Windows-1252 file encoding, so the UTF-8 BOM may be needed to avoid encoding issues in PowerShell files. https://docs.microsoft.com/powershell/scripting/dev-cross-plat/vscode/understanding-file-encoding
Since SecretManagement has moved repositories to https://github.com/PowerShell/SecretManagement all the relevant issues should be migrated there and a stub should be added to the readme indicating SecretManagement is archived here and...
Use case : Programmatically accessing Azure DEVOps is through the use of Personal Access Tokens (PAT). The PAT has to be base64 encoded when constructing the auth. header. Can the...
# Cmdlets referring to the same thing have different parameter names For instance, **Using Vault** Get-Secret, Get-SecretInfo, Set-Secret, Test-SecretVault, Remove-Secret **Using Name** Unregister-SecretVault, Test-SecretVault, Get-SecretVault Both **Vault** and **Name** reference...
# Summary of the new feature/enhancement As a PowerShell developer I want to set the persistence on secrets so I can align with the security requirements of my application. #...
# Additional optional vault parameters to support hooks : - After a secret is received, before it is returned to the user - Before a secret is set and sent...
# Add a cmdlet to get expected registration setting for a certain provider. Currently, when you register an external vault, you have to use the `-VaultParameters` settings, which is great...
# Register-SecretVault - Non terminating if vault exists It could be useful if vault already existing was not a terminating error when calling `Register-SecretVault`. To achieve that currently, I have...