Create Pull Request
| Date | Scan | Status | Result |
|---|---|---|---|
| 2026-02-20 00:00 | #402 | in_progress |
Biased
|
| 2026-02-19 00:00 | #398 | in_progress |
Biased
|
| 2026-02-18 00:00 | #394 | in_progress |
Biased
|
| 2026-02-17 00:00 | #390 | in_progress |
Biased
|
| 2026-02-16 00:00 | #386 | in_progress |
Biased
|
| 2026-02-15 00:00 | #382 | in_progress |
Biased
|
| 2026-02-14 00:00 | #378 | in_progress |
Biased
|
| 2026-01-14 00:00 | #250 | in_progress |
Biased
|
| 2026-01-13 00:00 | #246 | completed |
Biased
|
| 2026-01-12 00:00 | #243 | cancelled |
Biased
|
| 2026-01-11 00:00 | #240 | completed |
Biased
|
| 2026-01-10 00:00 | #237 | completed |
Biased
|
| 2026-01-09 00:34 | #234 | completed |
Biased
|
| 2026-01-08 00:53 | #231 | completed |
Clean
|
| 2026-01-06 18:15 | #225 | cancelled |
Clean
|
| 2025-08-17 00:01 | #83 | cancelled |
Clean
|
| 2025-07-13 21:37 | #48 | completed |
Biased
|
Import-DscResource -ModuleName "<ModuleName>" -ModuleVersion "<version>"
$globalNum = 0
function Set-GlobalNum {
param(
[int] $num
)
$globalNum = $num
}
function Get-GlobalNumTimesTwo {
$output = $globalNum * 2
$output
}
You can also use the same cmdlet to import a module from the PowerShell Gallery directly. Make sure to grab `ModuleName` and `ModuleVersion` from the [PowerShell Gallery](https://www.powershellgallery.com).
Import-DscResource -ModuleName "<ModuleName>" -ModuleVersion "<version>"
### Import modules from the PowerShell Gallery You can import [PowerShell Gallery](https://www.powershellgallery.com) modules either directly from the Gallery or from your Automation account. To import a module directly from the PowerShell Gallery: 1. Go to [https://www.powershellgallery.com](https://www.powershellgallery.com) and search for the module to import. 2. Under **Installation Options**, on the **Azure Automation** tab, select **Deploy to Azure Automation**. This action opens the Azure portal. 3. On the Import page, select your Automation account, and select **OK**.  To import a PowerShell Gallery module directly from your Automation account: 1. In the portal, search for and select **Automation Accounts**. 1. On the **Automation Accounts** page, select your Automation account from the list. 1. Under **Shared Resources**, select **Modules**. 1. Select **Browse gallery**, and then search the Gallery for a module. 1. Select the module to import, and select **Import**. 1. Select **OK** to start the import process.  ## Delete modules If you have problems with a module, or you need to roll back to a previous version of a module, you can delete it from your Automation account. You can't delete the original versions of the [default modules](#default-modules) that are imported when you create an Automation account. If the module to delete is a newer version of one of the [default modules](#default-modules), it rolls back to the version that was installed with your Automation account. Otherwise, any module you delete from your Automation account is removed. ### Delete modules in the Azure portal To remove a module in the Azure portal: 1. In the portal, search for and select **Automation Accounts**. 1. On the **Automation Accounts** page, select your Automation account from the list. 1. Under **Shared Resources**, select **Modules**. 1. Select the module you want to remove. 1. On the Module page, select **Delete**. If this module is one of the [default modules](#default-modules), it rolls back to the version that existed when the Automation account was created. ### Delete modules by using PowerShell To remove a module through PowerShell, run the following command: