I tried following commands to get a noprompt faster login experience but each time i find login popup. I even tried using the certificate initially but since that didn\'t pr
You can use PowerShell ISE..
Follow this script:
$password = ConvertTo-SecureString 'Password' -AsPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential ('Username', $password)
Connect-AzureRmAccount -Credential $Credential -Subscription 5a4dtert8-88bc-447c-bb20-b236terteb28e4 -Tenant 0d8trtec-5229-44ca-acc8-dbterte01b993b6
You can get auto generate the Connect-AzureRmAccount script using Power Shell ISE by
passing Subscription ID and Tenant with $credential variable..