Comment supprimer un commutateur Ethernet virtuel Hyper-V

Un commutateur de machine virtuelle périmé dans Hyper-V n'est plus utilisé et lorsque j'essaie de le supprimer, il échoue toujours avec le message suivant:

PS C:> Get-VMSwitch nat

Name SwitchType NetAdapterInterfaceDescription
---- ---------- ------------------------------
nat  Private


PS C:> Get-VMSwitch nat | Remove-VMSwitch -Force
Remove-VMSwitch : Failed while removing virtual Ethernet switch.
Switch delete failed, switch = 'acf82f05-c07c-4b35-8588-921498456027':    General access denied error (0x80070005).
At line:1 char:20
+ Get-VMSwitch nat | Remove-VMSwitch -Force
+                    ~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo          : PermissionDenied: (:) [Remove-VMSwitch], VirtualizationException
+ FullyQualifiedErrorId : AccessDenied,Microsoft.HyperV.PowerShell.Commands.RemoveVMSwitch

La tentative de suppression dans l'interface graphique ne fonctionne pas non plus:

GUI

demandé sur