<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Split-Job 0.92</title>
	<atom:link href="http://jansveld.net/powershell/?feed=rss2&#038;p=10" rel="self" type="application/rss+xml" />
	<link>http://jansveld.net/powershell/?p=10</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Wed, 07 Aug 2013 07:55:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6.1</generator>
	<item>
		<title>By: Laerte Junior</title>
		<link>http://jansveld.net/powershell/?p=10#comment-529</link>
		<dc:creator>Laerte Junior</dc:creator>
		<pubDate>Thu, 05 Jul 2012 21:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.jansveld.net/powershell/?p=7#comment-529</guid>
		<description><![CDATA[Hi, I am trying to do this :
$param2 = &quot;Something&quot;
&quot;Server1&quot;,&quot;Server2&quot;,&quot;Server3&quot; &#124; Split-Job { MyFunction -Param2 $param2}
Where param1 in Myfunction is the server that accepts ppipeline, but the $param2 is not going to the Myfunction.
How can I solve this ?]]></description>
		<content:encoded><![CDATA[<p>Hi, I am trying to do this :<br />
$param2 = &#8220;Something&#8221;<br />
&#8220;Server1&#8243;,&#8221;Server2&#8243;,&#8221;Server3&#8243; | Split-Job { MyFunction -Param2 $param2}<br />
Where param1 in Myfunction is the server that accepts ppipeline, but the $param2 is not going to the Myfunction.<br />
How can I solve this ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Practical PowerShell &#187; Split-Job 0.93</title>
		<link>http://jansveld.net/powershell/?p=10#comment-528</link>
		<dc:creator>Practical PowerShell &#187; Split-Job 0.93</dc:creator>
		<pubDate>Mon, 22 Dec 2008 20:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.jansveld.net/powershell/?p=7#comment-528</guid>
		<description><![CDATA[[...] I use this script myself a lot and I hope this is useful for some of you as well.  Please see the previous version for more information about the concept and usage of [...] ]]></description>
		<content:encoded><![CDATA[<p>[...] I use this script myself a lot and I hope this is useful for some of you as well.  Please see the previous version for more information about the concept and usage of [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Mills</title>
		<link>http://jansveld.net/powershell/?p=10#comment-527</link>
		<dc:creator>Stephen Mills</dc:creator>
		<pubDate>Mon, 11 Aug 2008 18:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.jansveld.net/powershell/?p=7#comment-527</guid>
		<description><![CDATA[Thanks for putting this thing together.  It&#039;s saving me time and makes Powershell more enjoyable.

It turns out I don&#039;t really use the UseProfile option, but I do use the Variable option.  I bumped into some other things that made it so I had to add things to my scriptblock that were already in my environment.

One of them was snapins.  I was trying to use some cmdlets from the Powershell Community Extensions and I had to add the snapin manually since it didn&#039;t exist in the runspace by default.

The other was a function.  I was changing a script to use Split-Job and it had a function declared in the script.  Since there was no way of accessing that function inside the Split-Job scriptblock, I had to create the function in the scriptblock.

I think it would be great if it were possible to add more functionality like the $Variable parameter for the other environmental objects.  One for Function, Snapin, and Environment in addition to the 2 you already have (Variable and Alias).  This would almost totally eliminate the need for $UseProfile and still have it fast to load if you don&#039;t need anything special.]]></description>
		<content:encoded><![CDATA[<p>Thanks for putting this thing together.  It&#8217;s saving me time and makes Powershell more enjoyable.</p>
<p>It turns out I don&#8217;t really use the UseProfile option, but I do use the Variable option.  I bumped into some other things that made it so I had to add things to my scriptblock that were already in my environment.</p>
<p>One of them was snapins.  I was trying to use some cmdlets from the Powershell Community Extensions and I had to add the snapin manually since it didn&#8217;t exist in the runspace by default.</p>
<p>The other was a function.  I was changing a script to use Split-Job and it had a function declared in the script.  Since there was no way of accessing that function inside the Split-Job scriptblock, I had to create the function in the scriptblock.</p>
<p>I think it would be great if it were possible to add more functionality like the $Variable parameter for the other environmental objects.  One for Function, Snapin, and Environment in addition to the 2 you already have (Variable and Alias).  This would almost totally eliminate the need for $UseProfile and still have it fast to load if you don&#8217;t need anything special.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Mills</title>
		<link>http://jansveld.net/powershell/?p=10#comment-526</link>
		<dc:creator>Stephen Mills</dc:creator>
		<pubDate>Thu, 03 Jul 2008 22:55:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jansveld.net/powershell/?p=7#comment-526</guid>
		<description><![CDATA[Very nice update.  It fixed 3 problems I had (empty queues was one of them).  I&#039;ll look at the other stuff and see if I like it.

I did one other change to give a better indication of progress.  I changed the write-progess part to include a little more information.  It gives me a better idea of the number of items in the Queue.  That way you see if it&#039;s slow because the scriptblock is slow or slow because it has 2000 objects to process.  

Write-Progress &#039;Split-Job&#039; `
	&quot;Queues: $($Pipelines.Count) QueueLength: $($QueueLength) Completed: $($QueueLength-$Queue.Count- $Pipelines.count) Pending: $($QueueLength- ($QueueLength-$Queue.Count))&quot; `
	-PercentComplete (100 - [Int]($Queue.Count)/$QueueLength*100)

Thanks for the work you&#039;ve done on this.  It makes Powershell much faster when you have a lot of systems to work on.]]></description>
		<content:encoded><![CDATA[<p>Very nice update.  It fixed 3 problems I had (empty queues was one of them).  I&#8217;ll look at the other stuff and see if I like it.</p>
<p>I did one other change to give a better indication of progress.  I changed the write-progess part to include a little more information.  It gives me a better idea of the number of items in the Queue.  That way you see if it&#8217;s slow because the scriptblock is slow or slow because it has 2000 objects to process.  </p>
<p>Write-Progress &#8216;Split-Job&#8217; `<br />
	&#8220;Queues: $($Pipelines.Count) QueueLength: $($QueueLength) Completed: $($QueueLength-$Queue.Count- $Pipelines.count) Pending: $($QueueLength- ($QueueLength-$Queue.Count))&#8221; `<br />
	-PercentComplete (100 &#8211; [Int]($Queue.Count)/$QueueLength*100)</p>
<p>Thanks for the work you&#8217;ve done on this.  It makes Powershell much faster when you have a lot of systems to work on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Practical PowerShell &#187; Split-Job: make your PC work harder</title>
		<link>http://jansveld.net/powershell/?p=10#comment-525</link>
		<dc:creator>Practical PowerShell &#187; Split-Job: make your PC work harder</dc:creator>
		<pubDate>Fri, 20 Jun 2008 01:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jansveld.net/powershell/?p=7#comment-525</guid>
		<description><![CDATA[[...] [UPDATE] The latest version can be found here: http://www.jansveld.net/powershell/2008/06/split-job-092/ [...] ]]></description>
		<content:encoded><![CDATA[<p>[...] [UPDATE] The latest version can be found here: <a href="http://www.jansveld.net/powershell/2008/06/split-job-092/" rel="nofollow">http://www.jansveld.net/powershell/2008/06/split-job-092/</a> [...] </p>
]]></content:encoded>
	</item>
</channel>
</rss>
