Can I get “&&” or “-and” to work in PowerShell?

后端 未结 12 893
南笙
南笙 2020-11-29 17:33

&& is notoriously hard to search for on Google Search, but the best I\'ve found is this article which says to use -and.

Unfortunatel

12条回答
  •  时光取名叫无心
    2020-11-29 18:34

    We can try this command instead of using && method:

    try {hostname; if ($lastexitcode -eq 0) {ipconfig /all | findstr /i bios}} catch {echo err} finally {}
    

提交回复
热议问题