Disable Force SSO on all users in Devolutions Cloud using PowerShell
$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"Last updated
Was this helpful?