Désactiver l'authentification SSO forcée pour tous les utilisateurs dans Devolutions Cloud avec Powe
$url = 'YOUR_DEVOLUTIONS_CLOUD_URL'
$appSecret = 'INSERT_APP_SECRET';
$appKey = 'INSERT_APP_KEY';
Connect-HubAccount -Url $url -ApplicationKey $appKey -ApplicationSecret $appSecret
$psSystemSettings = Get-HubSystemSettings
$psSystemSettings.ForceSSOLogin = $false
Set-HubSystemSettings -PSSystemSettings $psSystemSettings
Write-Host "Force SSO has been disabled"Mis à jour
Ce contenu vous a-t-il été utile ?