Answered by:
Azure online powershell module

Question
-
Hi Experts
I am new to azure, I have 3 subscriptions. How can i connect to azure power shell module. i have a created a new virtual machine in Subscription A. my requirement is to enable Accelerated Networking for that VM created on Subscription A. how do i connect to azure powershell module and enable accelerated networking. experts guide me with the syntax.
Tuesday, March 31, 2020 9:59 PM
Answers
-
Connect-AzAccount
Get-AzSubscription
review the output, identify the subscription you want to connect to, and run
Get-AzSubscription -SubscriptionName "<enter your subscription here>"|Select-AzSubscription
hth
Marcin
- Edited by Marcin PolichtMVP Tuesday, March 31, 2020 10:21 PM
- Proposed as answer by BharathN-MSFTMicrosoft employee Wednesday, April 1, 2020 3:15 AM
- Marked as answer by Risingflight Saturday, May 2, 2020 2:58 AM
Tuesday, March 31, 2020 10:21 PM -
Thank you Marcin for helping on the thread.
For broader community, sharing the related thread which has already been answered by Marcin to Enable Accelerated Networking
- Marked as answer by Risingflight Saturday, May 2, 2020 2:58 AM
Wednesday, April 1, 2020 3:15 AM
All replies
-
Connect-AzAccount
Get-AzSubscription
review the output, identify the subscription you want to connect to, and run
Get-AzSubscription -SubscriptionName "<enter your subscription here>"|Select-AzSubscription
hth
Marcin
- Edited by Marcin PolichtMVP Tuesday, March 31, 2020 10:21 PM
- Proposed as answer by BharathN-MSFTMicrosoft employee Wednesday, April 1, 2020 3:15 AM
- Marked as answer by Risingflight Saturday, May 2, 2020 2:58 AM
Tuesday, March 31, 2020 10:21 PM -
Thank you Marcin for helping on the thread.
For broader community, sharing the related thread which has already been answered by Marcin to Enable Accelerated Networking
- Marked as answer by Risingflight Saturday, May 2, 2020 2:58 AM
Wednesday, April 1, 2020 3:15 AM -
Thanks
Which module do i need to install to access powershell module if i use the below will it install all modules.
find-module az | Install-Module
Thursday, April 2, 2020 11:19 AM