0

Hi everyone currently I am working on automating installation of certain application in one of our pool node in Azure Batch using application package.

For this example I am just trying to install google chrome in one our node but the node keeps getting stuck in waiting the startup task. The start up task is very simple as

cmd /c %AZ_BATCH_APP_PACKAGE_CHROME#95%\\ChromeSetup.exe -args -here

enter image description here

Fokko
  • 188
  • 1
  • 14

2 Answers2

1

Please make certain that your installer is able to install in a non-interactive mode. For Google Chrome, this may help.

fpark
  • 2,304
  • 2
  • 14
  • 21
0

It turns out the it requires you to elevate the user access level to admin. It was not highlighted in documentation when using application package in batch account.

Just add this in your json config when deploying batch account node.

enter image description here

  • Installing a program does not always require privilege elevation. – fpark Oct 29 '21 at 17:03
  • Yes agree, thats the case when I am testing on my local silent install work just fine. Unfortunately for azure batch this what works for me :) – Joshua Abad Nov 01 '21 at 00:48