An Azure service that provides a platform-managed, scalable, and highly available application delivery controller as a service.
Those warnings usually indicate that the required Azure PowerShell modules (Az.Accounts, Az.Network, Az.Compute, and Az.Resources) are currently loaded in your PowerShell session, so the installation script cannot update or reinstall them.
A few things to try:
Close all PowerShell, Windows Terminal, and Azure Cloud Shell sessions, then open a fresh PowerShell window as Administrator and rerun the script.
Check which versions are installed:
Get-InstalledModule Az*
If needed, uninstall and reinstall the affected modules:
Uninstall-Module Az -AllVersions -Force
Install-Module Az -AllowClobber -Force
Ensure you're using a supported version of PowerShell (PowerShell 7 is generally recommended for newer Az modules).
Also, can you share the exact installation command/script you're running? The warnings alone don't necessarily mean the AzureAppGWClone script failed to install, so the full output would help identify the root cause.