PowerShell exécuter la commande uniquement si le succès a réussi

# if the first echo success, do the second echo
echo "hello" ; if ($?) { echo "world !" }
Sorann