我需要一個行腳本,做這樣的事情:PowerShell命令
if (results from PowerShell command not empty) do something
PowerShell命令基本上是
powershell -command "GetInstalledFoo"
我試圖if (powershell -command "GetInstalledFoo" != "") echo "yes"
,但得到的錯誤-command was unexpected at this time.
這可能實現嗎?該命令最終將作爲cmd /k
的命令運行。