We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With standard PS jobs, you can do the following:
$job = Start-Job ... receive-job $job
If you do the same with PoshRSJobs:
$job = Start-RSJob ... receive-RSJob $job
the following error is produced by receive-rsjob:
Receive-RSJob : A positional parameter cannot be found that accepts argument 'PoshRS.PowerShell.RSJob'.
Additionally if you try the following
receive-rsjob -job $job
no output is received. This works however:
$job | receive-rsjob
as does this:
receive-rsjob -ID $job.id
The text was updated successfully, but these errors were encountered:
I thought that I had this working... I'll see what's going on and get it updated.
Sorry, something went wrong.
Various bug fixes/feature requests
ace867b
#64 #66 #67 #61 #63 fixed
The latest update should resolve this. Can you test and verify for me?
Will do
This is fixed.
proxb
No branches or pull requests
With standard PS jobs, you can do the following:
If you do the same with PoshRSJobs:
the following error is produced by receive-rsjob:
Additionally if you try the following
no output is received. This works however:
as does this:
The text was updated successfully, but these errors were encountered: