-
I ran a script to return the number of days that a list of 10,000 computers has been online. I sent the output to a CSV file, but when I opened it I was missing results from over 4,000 machines. I hav…
-
**Do you want to request a *feature* or report a *bug*?**
Bug
**What is the current behavior?**
```
Start-RsJob { $ErrorActionPreference = "Stop"; Write-Error "Break me!" }
Start-RsJob { Wr…
-
Issue with dashboard not dispalying data when large poshrsjobs are running to provide the data. This is my first go at setting up a dashboard using this module, and I absolutely love it. I've done som…
-
while reviewing code for #132 I'm found that $IsPipeline always resolves to $true
lines 246 to 267:
```
If ($PSBoundParameters.ContainsKey('InputObject')) {
$IsPipe…
-
Bug or Possible Lack of Documentation
When passing the 'VMware.VimAutomation.Core' module using the '-ModulesToImport' switch none of the VMWare commands are available in the job.
I get continuo…
-
**Do you want to request a *feature* or report a *bug*?**
Feature.
**What is the current behavior?**
`$foobar | Start-RSJob -Name "XYZ" -ScriptBlock {$_ = $_ + 1} | | Wait-RSJob -ShowProgress`
w…
-
I'm trying to hit a website untill I want to stop with 50 threads with various URLs. Right now I have to do 1..1000000 | Invoke-Parallel {} which I assume creates some enormous hashtable, enumerates i…
-
Jobs can't set it's state on powershell v2
``` powershell
PS C:\> import-module poshrsjob
PS C:\> (get-module poshrsjob).version
Major Minor Build Revision
----- ----- ----- --------
1 …
-
This works but it seems like terrible practice - should we detect/deny using $_ as a user defined variable?
(At PSCONF.EU and a customer's colleague is doing this in his code)
foreach ($_ in gps |…
-
**Do you want to request a *feature* or report a *bug*?** Feature (I think)
**What is the current behavior?** I want to get the file version info from a file on aprox 20,000 computers on my domain.…