Max Kozlov
Max Kozlov
Your script use `Format-Table | Out-String`, so it's may be Format-Table problem. Afaik, all of out-host-like cmdlets inherit the dimensions from the parent window. Some time ago I wrote generic...
Tests are different. "Normal" run gets the same width with the console running, the rsjob test gives a 122-character result. Regardless of the current font. This value is different from...
Once more: 1. RSJob do nothing with "console" and `$Host.UI.RawUI.MaxWindowSize -eq $null` inside runspace. 2. data streams doesnt have any width, data streams contains objects, not textual strings eveny it...
there is a method of runspace creathion that uses host ``` powershell static System.Management.Automation.Runspaces.RunspacePool CreateRunspacePool(int minRunspaces, int maxRunspaces, System.Management.Automation.Host.PSHost host) ``` but for this method you should use your own...
`Get-Command -Module BitsTransfer` Without RSJob :) or `$urllist | Start-RSJob { any-command-to-download $_ }`
your example ``` powershell ForEach ( $i in $item ) { $Item | Start-RSJob { command $_[$i] } } ``` gave me a headache :) seems you want to write...
I saw this and checked all installed libraries. "Browser request" / "Browser request finished" log messages indicate that browser is operating normally. but I think redirection with **root_url** might be...
there is no type accelerator `[oracleDb]` in the powershell by default so you got it somewhere. Add it in the same way to your script :) This can be `import-module`...
The `Start-RSJob` have `-ModulesToImport` parameter, use it for your module. The `Start-RSJobs`'s scriptblock itself has no method call restrictions, but it runs in a new runspace and has no imported...
you can skip import-module inside scriptblock but add HrXTicketClass to -Import parameter. it is equivalent to import-module inside and your variant doesn't work? what error you get?