Login to Azure account - RM

azure powershell 5 years, 9 months ago
$azureAccountName = "abc@xyz.com" $azurePassword = ConvertTo-SecureString "password" -AsPlainText -Force $psCred = New-Object System.Management.Automation.PSCredential($azureAccountName, $azurePassword) Login-AzureRmAccount -Credential $psCred
958
Posted By