Questions tagged [runbook]

A runbook is a routine compilation of procedures and operations that the system administrator or operator carries out. System administrators in IT departments and NOCs use runbooks as a reference.

Runbooks can be in either electronic or in physical book form. Typically, a runbook contains procedures to begin, stop, supervise, and debug the system. It may also describe procedures for handling special requests and contingencies. An effective runbook allows other operators, with prerequisite expertise, to effectively manage and troubleshoot a system. Through runbook automation, these processes can be carried out using software tools in a predetermined manner.

Runbooks are typically created by technical writers working for top tier managed service providers. They include procedures for every anticipated scenario, and generally use step-by-step decision trees to determine the effective response to a particular scenario.

118 questions
0
votes
1 answer

Microsoft Azure : Updating Modules in the automation account

In Azure portal, When I tried to export the runbook in automation accounts to a different subscription, there was an error and when I tried reaching out the Microsoft they say the error was because I was using Old Modules in the Assests. How do I…
0
votes
1 answer

Add-AzureAccount in Azure-runbook fails with: The given key was not present in the dictionary

The two lines of code worked perfectly in one of my Azure-Powershell-Workflow runbook until recently. $azureCredential = Get-AutomationPSCredential –Name "" Add-AzureAccount -credential $azureCredential Now it fails with the…
participant
  • 2,923
  • 2
  • 23
  • 40
0
votes
2 answers

Azure Runbook load .Net assembly for application insight

I have requirement where I want to write some metrics to the application insight for monitoring a service at a regular interval. I though that I would write this PowerShell script and schedule it accordingly. Write-Output "Script…
0
votes
2 answers

ARMClient.exe not working in azure powershell workflow (hydrid)

I am trying to execute the ARMClient.exe from my Azure Powershell Workflow runbook on Hydrid worker. Its throwing me the folloing error: Cannot find the 'ARMClient.exe' command. If this command is defined as a workflow, ensure it is defined before…
0
votes
2 answers

Azure Startup run book stop working, not sure what happened?

The following script below worked for awhile, not sure why I keep getting this error: Select-AzureSubscription : The subscription name Visual Studio Ultimate with MSDN doesn't exist. Parameter name: name ...etc.. Get-AzureVM : No default…
Chaka
  • 1,709
  • 11
  • 33
  • 58
0
votes
1 answer

Why is my WebhookData null when invoking a Runbook from a Webhook?

I have created a runbook that inserts a record in a SQL DB. I then created a webhook to invoke the runbook. The data for the record to insert is in the request body as JSON. However, when my runbook gets invoked by the webhook my WebhookData is…
John Yost
  • 693
  • 5
  • 20
-1
votes
1 answer

Why is azure scale up runbook failing in Automation Account

I have an automation account with run as account set up. I am trying to use it to run a VM scaling runbook i have imported from the gallery in the portal (source here: enter link description here). I am getting the following error, and I can not…
-1
votes
1 answer

Azure Runbook | Sending attachments from my Azure Storage Account in Transactional Emails

I have an Azure Runbook script set up for transaction emails, the SMTP server details, & the from and to emails redacted for security. For some reason, PowerShell is not seeing the file with which I want to send as an attachment, can anyone see…
-1
votes
1 answer

How execute a program in a Azure Virtual Machine using Azure Functions, Runbooks or Azure Powershell?

I need to start an application / file sometimes a day on a Windows Virtual Machine on Azure and I don't want to make an RDP connection to do this whenever I need to run it. So, I would like to know if it is possible to create an Azure Function,…
Harry
  • 3
  • 1
-1
votes
1 answer

Archiving blobs from one container to another container using a runboook

I need some help with copying Blobs from one container in blob storage to another container. I have csv files in one container which i load into Azure database, after that these csv files are replaced with new files next day, however i want to…
AKG
  • 13
  • 3
  • 10
-1
votes
2 answers

How to run my python script automatically every 24 hours on Azure?

I have a python script (written in Jupyter notebook) and I would like to run this script in Azure. The python script basically gets data from API source (which updated every 24 hours) and updates the SQL database which is Azure. So this automated…
mavles
  • 103
  • 1
  • 7
-1
votes
2 answers

ARM Template complex parameters from Runbook Workflow

Have a question about ARM template deployment, specifically calling that deployment from Runbook Powershell workflow using New-AzureRmResourceGroupDeployment cmdlet. I am trying to use dynamic copy loop in in doing so I am using following formatted…
-2
votes
1 answer

New to Python. Which version of PyYAML do I need to install in my Python Azure runbook?

I have a basic Python script that I'm executing in an Python Azure Runbook. I need to install the PyYAML package but I don't know how to do it. I have installed other packages ok as when I download from PyPI they come with the name format…
1 2 3 4 5 6 7
8