-
Getting the following error:
``` powershell
An error occurred while enumerating through a collection: Collection was modified; enumeration operation may not execute..
At C:\Users\matt\Documents\Windo…
-
for now
`1..25 | Start-RSJob -throttle 5` can work as expected
and
`1..25 | foreach { $_ | Start-RSJob -throttle 5 }` is not
because latest creates it own RunspaceID for each new job
Will be better …
-
Reference https://github.com/PowerShell/PowerShell/issues/2045
proxb updated
8 years ago
-
Install-Module : A parameter cannot be found that matches parameter name 'Name'.
At line:1 char:16
- Install-Module -Name PoshRSJob
- ~~~~~
- CategoryInfo : InvalidArgument: …
-
**[object]$InputObject** property would be the object which is piped to the job. The purpose is to be able to identify which RSJob is handling which piped object.
-
Hello team,
Havign the folllowing code which raises and exception. The issue is that it is extremely hard to trace the error code, the line or the funtion once it was run with Invok-Parallel.
``` p…
-
I had weird spurious errors today on 1.7.2.7.
Exception calling "EndInvoke" with "1" argument(s): "The property 'Arguments' cannot be found on this object. Verify
that the property exists."
At line:1…
-
I've tried this on both PS v2 and v3 with the same result.
Both examples on the home page result in Completed jobs that show there is more data to retrieve even when there is not. When a job is Comp…
-
In the latest build, Start-RsJob gives me the following error each time it runs _except_ for the first time:
```
Exception setting "RunspacePool": "Object reference not set to an instance of an objec…
-
My code so far works on Server 2008 R2, but when I tried it on Server 2012 R2 I got completely different results.
PoshRSJob version (same on both servers): 1.5.7.7
**PowerShell Version Server 2008 …