I found it useful to clear Orchestrator Runbook logs by Folder. This allowed me to clear smaller chunks of logs from Orchestrator where in the […]
Continue readingCategory: Orchestrator
Search Orchestrator for Text Under an Activity’s Script
I had a client request that I search within all scripts within their PowerShell objects in Orchestrator for a string. They had over 1,000 Runbooks […]
Continue readingLinux VM Deployment from Orchestrator Using a VMM Template
I had to capture this in a blog as soon as possible so this article might be rough. I just successfully deployed a Linux VM […]
Continue readingUsing .NET C# and the Orchestrator Web Service
I needed to capture the blogs I used to create the helper class for the website I am building. This site will launch Orchestrator Runbooks […]
Continue readingOrchestrator – Matching on the New Line Character
There may be a bug in the way Orchestrator matches the new line character (\n). Sometimes it just does not find the new line! After a […]
Continue readingOrchestrator – Looping on a PowerShell Object
Looping can be a little tricky if you don’t know the rules Orchestrator uses: The Exit tab specifies the conditions that will determine if the loop […]
Continue readingOrchestrator – Check for Blank or Null
A good way to check if published data returned from an activity is blank or null is to match against the pattern ^$ (regex for […]
Continue readingOrchestrator – Fail a parent policy based on child status
Set the link from the triggered runbook to fail if the Child policy status equals failed or warning. Succeed if the Child policy status equals success. This […]
Continue readingOrchestrator – PowerShell error handling
We can use the Common Published Data “Error Summary Text” to capture the error from the PowerShell activity. Testing shows that if there are no […]
Continue reading