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