ICS através do powershell

0

Para habilitar o ICS através do powershell, usei o seguinte:

# Register the HNetCfg library (once)
regsvr32 hnetcfg.dll

# Create a NetSharingManager object
$m = New-Object -ComObject HNetCfg.HNetShare

# List connections
$m.EnumEveryConnection |% { $m.NetConnectionProps.Invoke($_) }

# Find connection
$c = $m.EnumEveryConnection |? { $m.NetConnectionProps.Invoke($_).Name -eq "Ethernet" }

# Get sharing configuration
$config = $m.INetSharingConfigurationForINetConnection.Invoke($c)

# See if sharing is enabled
Write-Output $config.SharingEnabled

# See the role of connection in sharing
# 0 - public, 1 - private
# Only meaningful if SharingEnabled is True
Write-Output $config.SharingType

# Enable sharing (0 - public, 1 - private)
$config.EnableSharing(0)

# Disable sharing
$config.DisableSharing() 

mas encontrando erros como:

Exception calling "Invoke" with "1" argument(s): "Cannot process argument because the value of argument "arguments" is
null. Change the value of argument "arguments" to a non-null value."
At C:\a.ps1:14 char:62
+ $config = $m.INetSharingConfigurationForINetConnection.Invoke <<<< ($c)
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : DotNetMethodException

You cannot call a method on a null-valued expression.
At C:\a.ps1:25 char:22
+ $config.EnableSharing <<<< (0)
    + CategoryInfo          : InvalidOperation: (EnableSharing:String) [], RuntimeException
    + FullyQualifiedErrorId : InvokeMethodOnNull

You cannot call a method on a null-valued expression.
At C:\a.ps1:28 char:23
+ $config.DisableSharing <<<< ()
    + CategoryInfo          : InvalidOperation: (DisableSharing:String) [], RuntimeException
    + FullyQualifiedErrorId : InvokeMethodOnNull

Como superar essa situação?

    
por anmol sharma 24.12.2015 / 20:19

1 resposta

0

Está dizendo que $c é Nulo (não definido) quando tenta usá-lo na linha 14.

Isso está fazendo com que $config não seja preenchido (por isso, permanece indefinido / nulo), levando ao segundo e terceiro erros.

Para corrigir isso, determine por que $c não está sendo preenchido.

    
por 24.12.2015 / 20:25