Powershell - Exemples d'opérateurs divers

Les scripts suivants illustrent les divers opérateurs.

> $location = Get-Location
 
> $location -is 'System.Management.Automation.PathInfo'
 True
 
> $location -isNot 'System.Management.Automation.PathInfo'
 True
 
> $i = 1
 
> $i++
 
> $i
 2