Hi
I am trying to add new scope option for windows dhcp server with powershell commands that accepts the multiple values but the parameter -MultiValued is not accepting the either of true/false as input
but in the DHCP Microsoft forums says that it accepts false/true
PS C:\Users\Administrator> Add-DhcpServerv4OptionDefinition -Name "option_93" -optionId 93 -Type "IPv4Address"
-MultiValued true
Add-DhcpServerv4OptionDefinition :
A positional parameter cannot be found that accepts argument 'true'.
At line:1 char:1
+ Add-DhcpServerv4OptionDefinition -Name "option_93" -optionId 93 -Type "IPv4Addre ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Add-DhcpServerv4OptionDefinition], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Add-DhcpServerv4OptionDefinition
can any one please help me how get this be done
Thanks
Teja