external help file: SitecoreInstallFramework-help.xml
online version:
schema: 2.0.0
---
Performs an AND operation on two or more values.
Invoke-AndConfigFunction [-Values] <PSObject[]> [<CommonParameters>]
Returns the result of performing and AND operation on two or more values.
The result is always a boolean value (true/false).
Objects are evaluated through standard PowerShell boolean coercion. String
values are trimmed before being evaluated.
PS C:\> Invoke-AndConfigFunction -Values 1,2,3
Returns true.
PS C:\> Invoke-AndConfigFunction -Values '1',' ','2'
Returns false.
The values to use in the AND operation.
Type: PSObject[]
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).