PowerShell

Shell program
  1. PowerShell Az.Automation module allows you to manage Azure Automation resources. This includes creating and managing automation accounts, runbooks, jobs, and other resources.

    Creating an Automation Account

    To create an Azure Automation account, you can use the New-AzAutomationAccount cmdlet. This cmdlet creates an Automation account in a specified resource group.

    Example:

    New-AzAutomationAccount -Name "ContosoAutomationAccount" -Location "East US" -ResourceGroupName "ResourceGroup01"
    Copied!

    This command creates a new automation account named ContosoAutomationAccount in the East US region.

    Managing Runbooks

    Runbooks are scripts that perform tasks in Azure Automation. You can create, publish, and start runbooks using PowerShell.

    Example:

    # Create a new runbook
    New-AzAutomationRunbook -AutomationAccountName "ContosoAutomationAccount" -Name "MyRunbook" -Type PowerShell -ResourceGroupName "ResourceGroup01"

    # Publish the runbook
    Publish-AzAutomationRunbook -AutomationAccountName "ContosoAutomationAccount" -Name "MyRunbook" -ResourceGroupName "ResourceGroup01"

    # Start the runbook
    Start-AzAutomationRunbook -AutomationAccountName "ContosoAutomationAccount" -Name "MyRunbook" -ResourceGroupName "ResourceGroup01"
    Copied!
  1. Automate Administration with PowerShell - learn.microsoft.com

    Overview

    This course provides students with the fundamental knowledge and skills to use PowerShell for administering and automating administration of Windows servers. This course provides students the skills to identify and build the command t…

    Course Syllabus

    You can prepare in instructor-led training or self-paced study

  2. 5 Best PowerShell Courses for 2026: Automate Scripts and Tasks

    • See More

    Feb 27, 2026 · Here is a guide with the best PowerShell courses, a command-line shell and scripting language used for automating tasks and managing system configurations.

  3. PowerShell: Scripting & Automation Fundamentals - Udemy

    Up to24%cash back
     · PowerShell is one of the most powerful tools for scripting and automation across Windows, Linux, and macOS. This course is a practical, in-depth guide to PowerShell scripting …

  4. Apply PowerShell Scripting for Automation and Projects

    Up to1%cash back
     · This module guides learners through developing a complete PowerShell application, enhancing script functionality incrementally, and implementing automation using task …