Tempo esgotado tentando adquirir o bloqueio de configuração de rede, proprietário atual = 'iphlpsvc.dll'

1

Estou recebendo o erro acima ao tentar configurar os comutadores virtuais do Hyper-V. Isso aconteceu não importa o tipo de switch que eu tente criar.

PS C:\Users\Martin> New-VMSwitch -Name “NewSwitch” -NetAdapterName “WiFi” -AllowManagementOS $True 
New-VMSwitch : Failed while creating virtual Ethernet switch.
Switch create failed, name = '326B5310-CEB9-4E87-AB36-DD2DD9602A73', friendly name = '': Operation times out (0x80041069).
Timed out trying to acquire network configuration lock, current owner = 'iphlpsvc.dll'.
The operation timed out.
At line:1 char:1
+ New-VMSwitch -Name “NewSwitch” -NetAdapterName “WiFi” -AllowManagementOS $True
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OperationTimeout: (Microsoft.HyperV.PowerShell.VMTask:VMTask) [New-VMSwitch], VirtualizationOperationFailedException
    + FullyQualifiedErrorId : OperationTimeout,Microsoft.HyperV.PowerShell.Commands.NewVMSwitchCommand

Qualquer ajuda seria muito apreciada, pois não encontrei nada on-line.

    
por MrHinsh - Martin Hinshelwood 12.06.2014 / 14:21

1 resposta

0

O arquivo referenciado é o serviço "IP Helper". Pare o serviço com net stop iphlpsvc e tente seu comando de comutação.

Nota: parar este serviço desativará o túnel Teredo 6to4, mas se você não usá-lo, não há nada com que se preocupar.

    
por 12.06.2014 / 14:56