Disable Force SSO on all users in Devolutions Hub Business using PowerShell

On this page

Devolutions Hub Business 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.

Steps

  1. In Devolutions Hub Business, create an application identity.

  2. Assign the Manage system configuration permission to the newly created application identity.

  3. Use the following PowerShell script to disable Force SSO on all users option in Devolutions Hub Business:

$url = 'YOUR_HUB_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"
Devolutions Forum logo Give us Feedback