A Microsoft desktop and app virtualization service that runs on Azure. Previously known as Windows Virtual Desktop.
Hello @Malendraswami Hiremath ,
It sounds like your SAP logon page in Chrome is really slow on Azure Virtual Desktop (AVD) compared to your Citrix setup. Usually when something performs fine in Citrix but lags in AVD, the culprit is network path or proxy settings rather than UFT itself. Here’s a quick trouble-shoot plan you can try:
Measure network latency & path
- RDP into one of your AVD session hosts and run:
Test-NetConnection -ComputerName <your-sap-server> -Port 443
ping <your-sap-server>
tracert <your-sap-server>
- Compare the results to what you see from your Citrix servers. If your round-trip times are much higher from AVD, you’ve found your bottleneck.
Check proxy or web gateway settings in Chrome
- Open Chrome’s Settings → System → “Open your computer’s proxy settings” and verify you’re not accidentally routing through a slower proxy in Azure.
- Mirror the exact proxy configuration you use in Citrix.
Review your Azure ↔ on-prem connectivity
- If your SAP system is on-prem, make sure your AVD VNet has a Site-to-Site VPN or ExpressRoute circuit to your datacenter rather than hair-pining traffic over the public internet.
- If you already have ExpressRoute, validate your NSG/UDR routes aren’t forcing SAP traffic back out to the internet.
Optimize session host placement & sizing
- Ensure your session hosts live in the Azure region closest to your SAP backend.
- Confirm you have sufficient CPU/memory on the VM SKU for browser-based workloads.
RDP client performance tweaks
- In your Remote Desktop client’s Experience tab, disable features you don’t need (e.g. audio, visual styles).
- Consider enabling UDP transport in the Windows 10/11 RDP client for better interactivity.
If after those steps the page is still slow, it’ll help to get more details:
• Which Azure region are you hosting your session hosts in? • How is your AVD VNet connected to your SAP network (ExpressRoute, VPN, public)? • Do you see the same delay if you RDP directly into the session host and launch Chrome locally? • Are there any corporate web proxies or firewalls in the path? • What VM size and OS image are you using for your session hosts?
Once we know more about your network topology and session host configuration, we can narrow down the fix.
Reference list • Azure network connectivity troubleshooting: https://learn.microsoft.com/azure/network-watcher/connection-troubleshoot-overview • Azure Virtual Desktop troubleshooting guide: https://learn.microsoft.com/troubleshoot/azure/virtual-desktop/welcome-virtual-desktop • Support policy for Citrix services on Azure (for Citrix-specific questions): https://docs.microsoft.com/troubleshoot/azure/virtual-machines/support-policy-citrix-services
Was this helpful?