If a client has set -WAPIVersion to less than 1.5 and calls Get-IBObject using the -ObjectType parameter, the following error message is thrown.
AdmConProtoError: Paging is not supported for this WAPI version.
Apparently paging support was not added until WAPI version 1.5. And because Get-IBObject calls that aren't specifying a specific object reference attempt to use paging by default, this will throw an error.
Until we work around this limitation in code, the easiest fix is to only use WAPI version 1.5 or later.
If a client has set
-WAPIVersion
to less than 1.5 and callsGet-IBObject
using the-ObjectType
parameter, the following error message is thrown.Apparently paging support was not added until WAPI version 1.5. And because Get-IBObject calls that aren't specifying a specific object reference attempt to use paging by default, this will throw an error.
Until we work around this limitation in code, the easiest fix is to only use WAPI version 1.5 or later.