external help file: SitecoreInstallFramework-help.xml
online version:
schema: 2.0.0
---
Returns the logical opposite of the given value.
Invoke-NotConfigFunction [-Value] <PSObject> [<CommonParameters>]
Using standard PowerShell coercion the given value is types as a boolean before
returning the logical opposite value.
Objects are evaluated through standard PowerShell boolean coercion. String
values are trimmed before being evaluated.
PS C:\> Invoke-NotConfigFunction -Value 1
Returns false.
PS C:\> Invoke-NotConfigFunction -Value ''
Returns true.
The value to be evaluated.
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).