PowerShell Execute -Befehl nur, wenn früher erfolgreich erfolgreich ist

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