38.8k views
0 votes
What PowerShell cmdlet is used to configure a VM's virtual network settings?

a) Set-AzVMNetwork
b) Configure-AzVMNetwork
c) Set-AzureVMNetwork
d) Configure-AzureVMNetwork

User Shaena
by
7.0k points

1 Answer

3 votes

Final answer:

To configure a VM's virtual network settings in Azure, the correct PowerShell cmdlet is 'Set-AzVMNetwork'. It allows for setting network configurations like IP addresses and security groups, ensuring the VM is secure and properly connected within the network.

Step-by-step explanation:

The correct PowerShell cmdlet to configure a virtual machine's (VM) virtual network settings in Azure is Set-AzVMNetwork. This cmdlet is part of the Az module, which is the successor to the AzureRM module and is used for managing Azure resources. It is important to make sure you have the appropriate module installed and are authenticated to your Azure account before attempting to run any cmdlets.

When using Set-AzVMNetwork, you can configure settings such as static or dynamic IP addresses, network security groups, and subnet configurations for VMs in Azure. It is crucial to configure these settings correctly to ensure that the VM operates within the desired network parameters and is secure.

User Bluehorn
by
8.1k points