Login to Azure account - RM

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