Azure Batch Pool Stuck on Start Up Task

833 views Asked by At

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

2

There are 2 answers

1
fpark On

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

2
Joshua Abad On

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