
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check Logged-In Azure Account Using PowerShell
To check the logged-in Azure user account in the console using PowerShell, you can check the context of the Azure and for that Get-AZContext command is used.
Example
Get-AzContext
Output
If you are already logged in with multiple user accounts then there may be chances that there are multiple contexts available, to list all the available context, use the below command,
Example
Get-AzContext -ListAvailable
Output
You can choose the context using the Select-AZContext command.
Advertisements