1-) Identificar el adaptador de red cuyo perfil necesitamos modificar:
PS C:\Windows\system32> Get-NetConnectionProfile Name : Unidentified network InterfaceAlias : vEthernet (Default Switch) InterfaceIndex : 10 NetworkCategory : Public IPv4Connectivity : NoTraffic IPv6Connectivity : NoTraffic Name : Network 18 InterfaceAlias : vEthernet (Ether-wifi) InterfaceIndex : 15 NetworkCategory : Private IPv4Connectivity : Internet IPv6Connectivity : NoTraffic2-) Utilizando el InterfaceIndex que obtuvimos en el paso anterior, modificamos al tipo de perfil deseado (Las opciones son Private, Public y Domain):
PS C:\Windows\system32> Set-NetConnectionProfile -InterfaceIndex 10 -NetworkCategory Private PS C:\Windows\system32> Get-NetConnectionProfile Name : Unidentified network InterfaceAlias : vEthernet (Default Switch) InterfaceIndex : 10 NetworkCategory : Private IPv4Connectivity : NoTraffic IPv6Connectivity : NoTraffic Name : Network 18 InterfaceAlias : vEthernet (Ether-wifi) InterfaceIndex : 15 NetworkCategory : Private IPv4Connectivity : Internet IPv6Connectivity : NoTraffic
Como alternativa, podría usarse el parametro SkipNetworkCheck al habilitar el PSRemoting para que se ignore el tipo de perfil establecido en el adaptador de red:
PS C:\Windows\system32> Enable-PSRemoting -Force -SkipNetworkCheck
0 comentarios:
Publicar un comentario