PowerShell execute o comando somente se o sucesso anterior

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