PowerShell выполнить команду только в случае успеха

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