在iis中的IP地址和域名限制通过PowerShell

我在powershell很新。

如何通过powershell在IIS中更改ip address and domain restrictions

这里是我们如何从IIS手动执行此操作的屏幕截图。

在这里输入图像说明

目前我正在使用此代码来更改设置。

Set-WebConfigurationProperty /system.webserver/security/ipsecurity -Name allowUnlisted -Value "true" -Location "IIS:\Sites\123" -pspath IIS:\Sites\123

不知道这是否正确。

请帮忙。

编辑:此代码将切换访问未指定的客户端值,所以这是正确的。 使用它没有-PSPath,它会工作

 Set-WebConfigurationProperty /system.webserver/security/ipsecurity -Name allowUnlisted -Value "true" -Location "IIS:\Sites\123"