k9fr4n
k9fr4n
a workaround is to use the lifecycle to ignore change about initial_password ` lifecycle { ignore_changes = [initial_password] } `
just create a powershell script like 'check_default_arg_value.ps1' with this content: ``` [CmdletBinding()] param( [Parameter(Mandatory=$false)]$Arg1, [Parameter(Mandatory=$false)]$Arg2 ) Write-Host $Arg1 Write-Host $Arg2 ``` declare the script in snclient.ini like: ``` check_default_arg_value =...
Hi I have the same behavior on Windows 2016: before service restart:  after: 
the problem seems not to be resolved in the release 0.23  
> already done, that's the 0.24. where we can find the 0.24 release ?
hello I confirm that the memory leak is still present I saw it on Windows Server 2016 and 2019 I have a suspicion about "wrapped scripts"... before:  after: 
Hi memory leak is still present in version 0.25 I notice that the memory issue seems not to be present when using just the builtin check command. Snclient's memory increases...
yes, mainly powershell scripts
after analysis, I see that the memory leak is located on the default checks I use the check_tasksched via an alias and each time this check is used, the memory...
after reflection, I wanted to talk about the "cn" attribute like: ` resource "ad_user" "toto" { principal_name = "[email protected]" sam_account_name = "toto" email_address = "[email protected]" given_name = "Toto" surname =...