PowerShell ejecutar el comando solo si el anterior exitoso

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