Home > Back-end >  Install applications or software on Azure VM with ARM Template
Install applications or software on Azure VM with ARM Template

Time:02-10

We're trying to install Kaspersky Network Agent on an Azure VM using ARM Template.

Also, we need to get the .exe or .msi file from VM storage using SAS token. I was searching for the Template examples to operate but couldn't come up with one that accomplishes the task. Do you know, if it's possible to do in this way?

If so, Can you share a template that does a similar task? Also, please explain how to modify the template for this case.

Thanks in advance

CodePudding user response:

First of all, write the script on your local machine and make sure that the script can be run anywhere.

After that, you can use a custom script extension (either a Application installation path Application installation Deployment status Extension status

In this way, you can install an '.exe' or '.msi' through the ARM template with custom script extension.

  • Related