Olívio Mouracoisasdatreta.hashnode.dev·Oct 3, 2024Powershell - Add users from groups to assign group with group exceptions# Ensure the Microsoft.Graph module is imported # Import-Module Microsoft.Graph # Authenticate using the managed identity Connect-MgGraph -Identity -NoWelcome #Connect-MgGraph -Scopes "User.Read.All", "Group.ReadWrite.All" -NoWelcome # Control vari...Powershell
Ondrej Sebeladoitpshway.com·Oct 2, 2024Automated Software Vulnerability NotificationToday, I’ll guide you through setting up an automation system that notifies your users about vulnerable software detected on their devices. This information will be sourced from the Microsoft Defender API. In this post, I’ll demonstrate how to create...2 likes·267 readsAzureAzure
Ondrej Sebeladoitpshway.com·Jun 12, 2024Managing Azure Automation Runtime Environments via PowerShellYou may have heard about a new (currently in preview) feature called Runtime Environment. The main features are: You can have multiple custom runtime environments that can be used across numerous Runbooks (a.k.a. one runtime in multiple runbooks) T...1 like·656 readsAzureAzure
Ondrej Sebeladoitpshway.com·Mar 9, 2024Create persistent Azure Automation Runbook variables using Azure Blob StorageBecause Azure Runbooks are invoked in temporary environments, you cannot save the Runbook results for later use in the local files. Which is one of the drawbacks compared to on-premises Schedules Tasks. But what if you need some output persistence? F...640 readsAzurePowershell
Ondrej Sebeladoitpshway.com·Mar 9, 2024Gradual update of all applications using WinGet and custom Azure ring groupsToday I will show you how to make the process of updating apps in your company as easy as possible 😎. We will use: WinGet to update the applications Winget-AutoUpdate tool to be more specific Intune to distribute Winget-AutoUpdate tool Custom A...8.1K readsIntune/SCCM/MDTPowershell
Ondrej Sebeladoitpshway.com·Mar 9, 2024How to create your own autopatch-like "ring" groups in Azure using Azure Automation and PowerShellI like the idea of Autopatch ring groups where you have one "root" group, whose members are distributed across several "ring" groups based on a given percentage proportion. And because I needed the same thing for my gradual applications update automa...788 readsAzureAzure
Ian Santillanievsantillan.hashnode.dev·Jul 27, 2020Mastering Runbook Execution in Azure AutomationAzure Automation provides a robust platform for automating cloud and on-premises processes using runbooks. Key aspects of runbook execution include: Job Creation: Starting a runbook creates a job, which is an instance of runbook execution. Executio...azure runbook