web browsers https

avatar
d01
Disabled

Hi is it possible to turn off force https option with power shell?

All Comments (1)

avatar

Hello,

Yes it is possible to turn off the Force HTTPS property of a Web Browser entry with PowerShell.
Here is a sample.

$session = Get-RDMSession -Name "YourSessionNameHere"
$session.Web.ForceHttps = $false
Set-RDMSession $session -Refresh
Best regards,

Érica Poirier