Чтобы включить ICS через powershell, я использовал следующее:

# 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() 

но встречаются такие ошибки как:

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

Как преодолеть эту ситуацию?

1 ответ1

0

Он говорит вам, что $c равен Null (не определено), когда он пытается использовать его в строке 14.

Это приводит к тому, что $config не заполняется (поэтому он остается неопределенным / нулевым), что приводит ко второй и третьей ошибкам.

Чтобы это исправить, определите, почему $c не заполняется.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .