Home > OS >  Azure Batch Pool Stuck on Start Up Task
Azure Batch Pool Stuck on Start Up Task

Time:10-28

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

CodePudding user response:

Please make certain that your installer is able to install in a non-interactive mode. For Google Chrome, enter image description here

  • Related