Is there a way to display the full settings of a specific Hyper-V vSwitch using Powershell? I'm trying to configure port-mirroring from the vSwitch to the Destination vNIC on a VM and so I've set the vSwitch as the mirror Source but I want to be able to check that the setting has been applied.
OS is Windows Server 2012 R2
Thanks
Get-Command | Where-Object {$_.Source -eq 'Hyper-V'}, this will list you all commands related to sourceHyper-V(and you can, of course, change Hyper-V to whatever you like to know)Get-Command -Module 'Hyper-V'.