You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Executing: Invoke-Command -ComputerName name -ScriptBlock {Write-Verbose 'aaa' -Verbose}
also results in: VERBOSE: aaa
But executing: Start-RSJob -ScriptBlock {Invoke-Command -ComputerName name -ScriptBlock {Write-Verbose 'aaa' -Verbose}} | Receive-RSJob
does not produce any result, I have checked the 'Verbose' property of Get-RsJob and it is indeed empty.
Is this an expected behavior?
The text was updated successfully, but these errors were encountered:
Hi, I'll just outline the behavior instead of describing the situation..
Executing:
Start-RSJob -ScriptBlock {Write-Verbose 'aaa' -Verbose} | Receive-RSJob
results in:
VERBOSE: aaa
Executing:
Invoke-Command -ComputerName name -ScriptBlock {Write-Verbose 'aaa' -Verbose}
also results in:
VERBOSE: aaa
But executing:
Start-RSJob -ScriptBlock {Invoke-Command -ComputerName name -ScriptBlock {Write-Verbose 'aaa' -Verbose}} | Receive-RSJob
does not produce any result, I have checked the 'Verbose' property of Get-RsJob and it is indeed empty.
Is this an expected behavior?
The text was updated successfully, but these errors were encountered: