Devolutions Cloud administrators might want to disable the option to Force SSO on all users. This can be done using an application identity and a simple PowerShell script.
In Devolutions Cloud, create an application identity.
Assign the Manage system configuration permission to the newly created application identity.
Use the following PowerShell script to disable Force SSO on all users option in Devolutions Cloud:
$url = 'YOUR_HUB_URL'
$appSecret = 'INSERT_APP_SECRET';
$appKey = 'INSERT_APP_KEY';
Connect-HubAccount -Url $url -ApplicationKey $appKey -ApplicationSecret $appSecret
$psSystemSettings = Get-HubSystemSettings
#Enable Devolutions user login method
$psSystemSettings.AllowDevolutionsAccountLogin = $true
#Optional - Disable SSO option
$psSystemSettings.AllowSSOLogin = $false
Set-HubSystemSettings -PSSystemSettings $psSystemSettings
Write-Host "Authentication method updated"