Does anyone know how to fix this problem? [PS] C:\Windows\System32>Get-ClientAccessServer -expand name Get-ClientAccessServer : A parameter cannot be found that matches parameter name 'expand'. At line:1 char:31 + Get-ClientAccessServer -expand <<<< name
Not sure exactly what you are trying to do - you just want to get the Name of the Client Access Server? If so I think you are meaning to pipe to select-object, which has an -expand parameter.
[PS] C:\Windows\System32>Get-ClientAccessServer | select -expand name
Not sure exactly what you are trying to do - you just want to get the Name of the Client Access Server? If so I think you are meaning to pipe to select-object, which has an -expand parameter.
[PS] C:\Windows\System32>Get-ClientAccessServer | select -expand name