Internal.Common.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#requires -Version 5 #requires -Modules @{ ModuleName='AzureRM.Profile'; ModuleVersion='3.1.0' } function PreventUnloggedExecution { try { $context = Get-AzureRmContext -ErrorAction Stop if (($context.Tenant.Id -eq $null) -or ($context.Subscription.Id -eq $null)) { throw 'Run Login-AzureRmAccount to login.' } } catch { throw } } |