for each parallel
The way we do this in a workflow is by returning the data from the workflow and then crating the file.workflow somewf{…. foreach -parallel(...){ #output objects } } somewf | ConvertTo-Html … | Out-File...
View Articlefor each parallel
but this will create 3000 files , it would not help ..I need the output in one file
View Articlefor each parallel
Have you tried my proposal of creating files with random names, such that they are not overwritten anymore?
View Articlefor each parallel
yes that's correct , I need help in capturing the output for parallel block . I do see the desired output in an array in $result , but i am not able to figure out to pipe it to html
View Articlefor each parallel
Hi Prasoon the html block doesnot work for parallel , I still get only one result on the output .The one originally on the script also works for linear, i donot know how to get this working for...
View Articlefor each parallel
He wants to use parallel processing of his foreach loop. Your solution is linear, you can not use a shared variable in parallel jobs, since each is running in its own scope.
View Articlefor each parallel
You can do below.$Table = "<Table border=1 cellpadding=0 cellspacing=0><TR bgcolor=gray...
View Articlefor each parallel
Hi,I think, this is quite simple. You are always pipeing the output to file C:\Single.htm, so all jobs write to this file and overwrite the content. This way, you always get the results of the last...
View Articlefor each parallel
hi all i fail to understand what mistake i have committed on the script .i get only one result on the output even when i have multiple urls on the input fileplease advise Workflow check_site {...
View Article