Some PowerShell commands will truncate text data during output to the screen. For example, 'Get-AzContext' command will truncate 'Name' column. However, we need to know the full text from the 'Name' column in order to switch to the given context.
One of the solutions is to add '| format-table -wrap' option:
Get-AzContext | format-table -wrap
No comments:
Post a Comment