2015-02-05 59 views
0

PowerShell $是什麼?符號的意思,它用於什麼?

我目前使用它在下面的代碼塊的上下文:

Invoke-Command -Session $session -ScriptBlock { param($proc, $arg) Start-Process $proc -ArgumentList $arg -Wait } -ArgumentList $processName, $processArgs 

if ($? -ne $true) 
{ 
} 

所以我假設,如果調用命令執行成功很拉一個布爾值,但我不知道。

謝謝!

回答

3

請參閱about_Automatic_Variables:

get-help about_Automatic_Variables 

$?
包含上次操作的執行狀態。它包含
如果上次操作成功則爲TRUE,如果失敗則爲FALSE。