- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
Enhanced Security Measures in Place: To ensure a safer experience, we’ve implemented additional, temporary security measures for all users.
09-29-2022 07:27 AM - edited 09-29-2022 08:21 AM
Hi all,
I recently integrated Azure MFA via SAML with GlobalProtect and it works flawless. The only little issue is a popup that always appears whenever the authentication process is about to be completed. I guess this is the browser communicating with the global protect app , necessary to complete the tunnel creation.
Any idea about how to stop this from happening? I am pretty sure that this is done via an URLAllowList registry entry but I dont know which extension I should approve. So I decided to click on the chek to 'Allow this entry ...' and look for the entry and simply create that entry via script. But unfortunately I cannot find the registry entry. I tried in several location for different browsers without success.An example for Chrome would be
https://admx.help/?Category=Chrome&Policy=Google.Policies.Chrome::URLAllowlist
Thanks
Please note you are posting a public message where community members and experts can provide assistance. Sharing private information such as serial numbers or company information is not recommended.
11-08-2023 11:16 AM
Did you ever figure this out?
11-10-2023 01:19 AM
we resolved it with a registry entry, only for edge at the moment. if you manage to implement the same for Firefox and Chrome, please let me know to take advantage of it 😉
$RegistryPath = 'HKLM:\SOFTWARE\Policies\Microsoft\Edge'
$Name = 'AutoLaunchProtocolsFromOrigins'
$type = 'String'
$Value = '[{\"allowed_origins\": [\"https://vpn2.xxx.yyy.zzz/\"],\"protocol\": \"globalprotectcallback\"}]'
New-ItemProperty -Path $RegistryPath -Name $Name -Value $Value -PropertyType $type -Force
05-17-2024 11:46 AM
$RegistryPath = 'HKLM:\SOFTWARE\Policies\Google\Chrome'
$Name = 'AutoLaunchProtocolsFromOrigins'
$Type = 'String'
$Value = '[{\"allowed_origins\": [\"https://vpn.xxxx.yyy.zzz/\"],\"protocol\": \"globalprotectcallback\"}]'
# Check if the registry path exists, and create it if it doesn't
if (-not (Test-Path -Path $RegistryPath)) {
New-Item -Path $RegistryPath -Force | Out-Null
}
# Create or update the registry property
New-ItemProperty -Path $RegistryPath -Name $Name -Value $Value -PropertyType $Type -Force
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!