我正在尝试使用以下代码为选项 6 DNS 服务器设置两个 IP 地址:
$serverIpAddress = '11.12.13.14'
$subnet = '11.12.43.33'
$value = '11.12.74.21,11.12.74.22'
netsh dhcp Server $serverIpAddress Scope $subnet set optionvalue 6 IPADDRESS "$value"
但出现此错误:
DHCP Server Scope Set OptionValue failed.
Parameter(s) passed are either incomplete or invalid.
我怎样才能解决这个问题?
编辑:事实证明,我可以通过使用两个独立的变量来使其工作:
$serverIpAddress = '11.12.13.14'
$subnet = '11.12.43.33'
$value1 = '11.12.74.21'
$value2 = '11.12.74.22'
netsh dhcp Server $serverIpAddress Scope $subnet set optionvalue 6 IPADDRESS $value1 $value2
我怎样才能使它与一个变量一起工作?