For the complete documentation index, see llms.txt. This page is also available as Markdown.

Disabilitare Force SSO su tutti gli utenti in Devolutions Cloud usando PowerShell

Gli amministratori di Devolutions Cloud potrebbero voler disabilitare l'opzione Force SSO su tutti gli utenti. Questa operazione può essere eseguita utilizzando un'identità applicativa e un semplice script PowerShell.

  1. In Devolutions Cloud, crei un'identità applicativa.

  2. Assegni l'autorizzazione Manage system configuration all'identità applicativa appena creata.

  3. Utilizzi il seguente script PowerShell per disabilitare l'opzione Force SSO on all users 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"

Ultimo aggiornamento

È stato utile?