Created
May 4, 2023 06:24
-
-
Save moiaune/9161c89c99935db9cfc150b67ce41c09 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$requiredModules = @("Az.Accounts", "Az.Resources") | |
foreach ($module in $requiredModules) { | |
$isLoaded = Get-Module -Name $module | |
if ($isLoaded) { | |
Write-Verbose -Message "$($module) module is loaded." | |
} else { | |
Write-Error -Message "$($module) module is not loaded, please install by 'Install-Module $($module)'." | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment