SecretManagement.Windows.LAPS.Extension/public/Remove-Secret.ps1
function Remove-Secret { [CmdletBinding()] param ( [string] $Name, [string] $VaultName, [hashtable] $AdditionalParameters ) Write-Warning "It's not possible to remove secrets for Windows LAPS" } |