La première tâche consiste à désactiver toutes les suites de chiffrement existantes :PowerShell Copier foreach ($suite in (Get-TLSCipherSuite).Name) { if (-not([string]::IsNullOrWhiteSpace($suite))) { Disable-TlsCipherSuite -Name $suite -ErrorAction SilentlyContinue } } ...