Questions tagged [hybrid-runbook-worker]
10 questions
2
votes
1 answer
Execute bash commands on Azure Linux VM using azure automation
I need to install software on Azure VM with Ubuntu image. One way of manually doing it is ssh into the terminal using putty or other command-line tool and executing the installation bash command. Another way of doing it was by automating this by…

roccmol09
- 33
- 1
- 7
2
votes
0 answers
Unable to resolve automation account when running an Azure Automation Runbook on an on-premise Hybrid Runbook Worker
I've recently started using Azure Automation to execute runbooks. Due to my company's hybrid on-premise + cloud strategy, we have scenarios where we need to run the Runbooks on-premise. I recently started one Automation Account through the portal,…

Alex Marshall
- 10,162
- 15
- 72
- 117
1
vote
1 answer
Azure Runbook job getting restarted when run on Hybrid runbook worker group
I have an automation account configured with a Hybrid Runbook Worker, suddenly all jobs are getting restarted after every 15 mins 3 times and eventually gets suspended with the error:
Job was suspended. For additional troubleshooting, check the…

javed khan
- 11
- 3
0
votes
0 answers
How to Deploy an agent-based Windows User Hybrid Runbook Worker in Azure Automation account?
i am not able to Deploy an agent-based Windows User Hybrid Runbook Worker in Azure Automation?
i am not able to Deploy an agent-based Windows User Hybrid Runbook Worker in Azure Automation?
0
votes
0 answers
Can not run browser automation with head on hybrid worker using Azure Automation
When I start the runbook with the following test code, it is completed and shows the result but I cannot see the browser UI while it is running.
from time import sleep
from selenium import webdriver
from selenium.webdriver import ChromeOptions
from…

hyhr
- 91
- 1
- 3
0
votes
1 answer
vCenter logon failing using Get-VICredentialStoreItem from Azure automation runbooking with hybrid worker
We are using Azure automation runbook using hybrid worker and trying to collect information from on-prem vcenter environment. We are using Get-VICredentialStoreItem to logon to vcenter but logon itself using stored credentials is failing from…

A A
- 21
- 4
0
votes
1 answer
Calling child runbook results in The term '.\RunbookName.ps1' is not recognized as the name of a cmdlet, function, script file, or operable program
I am trying to do POC on working with child runbooks. As part of this POC I created a simple runbook Child.ps1 with below content:
Param(
[string]$FolderPath
)
$path = $FolderPath
if(! (Test-Path $path))
{
New-Item -Type dir -Path $path
…

Pankaj Vohra
- 155
- 2
- 8
0
votes
1 answer
Proper use of for Inlinescript in PowerShell Workflow
I have an Azure Automation Powershell Workflow Runbook, that I wish to run on a Hybrid Runbook Worker server, as part of an Azure Site Recovery failover post-action step.
At the high level the runbook utilizes Azure Run AS connection to gather the…

Chief
- 130
- 10
-1
votes
1 answer
Sync Azure Analysis Server model in Azure using Sync-AzAnalysisServicesInstance
We are using Hybrid worker groups and we have a Group Name that is pointing to one of our Remote Server,
Now I want to Sync my Azure analysis server model using the powershell script, Is anyone having the powershell script to connect and
sync my…

Raj P
- 1
- 2
-1
votes
1 answer
Add-hybridrunbookworker "argument group cannot be null"
I'm trying to use the Add-HybridRunbookWorker cmdlet to create a hybrid worker as instructed by the OMS Hybrid worker solution.
The issue is that I'm getting
Invalid argument specified. Argument group cannot be null.
Documentation only mentions…

Sean
- 1
- 1