shared-bootstrap/Install-AzPowerShellModules.ps1 (8 lines of code) (raw):
param(
[string]$toolsPath,
[string]$logFilePath,
[string]$moduleName = "Az"
)
Write-Output "- Installing Az PowerShell Module..."
Install-Module $moduleName -SkipPublisherCheck -Force
Write-Output "- Finished Installing Az PowerShell Module..."