Azure – Migrate your AzureRM scripts to Az PowerShell
As you know, you have multiple ways to manage your Azure environment; through the portal (https://portal.azure.com), Cloud Shell (...
1 min read
cubesys : Jan 11, 2021 12:00:00 AM
You may now know Azure Sentinel, the cloud native SIEM (Security Information and Event Management) solution from Microsoft.
Well, if you are using and managing Azure Sentinel you will be happy to know that a PowerShell module is now available to manage Azure Sentinel, in addition of the Azure portal.
Before you deploy this module, you need to ensure:
If you don’t have Az.Accounts or Azure PowerShell module you can install it using the below command
Install-Module –Name Az.Accounts
Then you can install the Az.SecurityInsights module using the command
Install-Module -Name Az.SecurityInsights –AllowClobber
Then after authenticating against Azure using Connect-AzAccount you can manage your Azure Sentinel by investigating/assigning incident, configuring connectors and so on.
If you have more than one Azure subscription you may have to set the Azure context first.
All Az.SecurityInsights commands can be listed with the command
Get-Command -Module Az.SecurityInsigths
At the time of writing the below commands are available
As you know, you have multiple ways to manage your Azure environment; through the portal (https://portal.azure.com), Cloud Shell (...
As you know, Azure Security Center (ASC) is your one stop shop helping you maintain and improve your secure posture in Azure (including your...
As you know, you can manage your Azure resources using either the web portal (https://portal.azure.com) or command line tools (Azure PowerShell or...