Kaseya VSA Agent Download Shortcut

On-premise users of Kaseya VSA can use the built-in download page (https://your.vsa.url/dl.asp) to list agent packages for each client. The only problem is that makes your client list is public. Not ideal.

Cloud users face a different dilemma in that they sometimes have a long tenant ID to deal with, and no built-in download page.

This solution solves both problems. It’s a single page written in PHP. You can host it with your company website, or anywhere else public. It provides a quick and clean way for you or your client to download the agent. The only requirement is a client ID which matches an organization in VSA. I have mine set up at https://skyroot.ca/go

You’ll need to customize the 3 variables at the top of the php file to match your environment. This is tested and works for both on-prem and cloud.

    $vsaurl = "https://serverus02.techstogether.com";    //VSA Server URL
    $vsatenant = "";                                     //Tenant ID if on cloud (LONG NUMBER)
    $vsaorgroot = "root";                                //Default group

Upon clicking Download, the URL is generated and you’re sent straight to the auto-download page for that agent.

If you have any questions, or if this helped, feel free to get in touch!

–C

Leave a Comment