<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>BSonPoSH</title>
	
	<link>http://bsonposh.com</link>
	<description>The "Power" of SHELL</description>
	<lastBuildDate>Sat, 28 Jan 2012 18:23:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BsOnPosh" /><feedburner:info uri="bsonposh" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>40.81315</geo:lat><geo:long>-74.215763</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-sa/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-sa/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><item>
		<title>Hyper-V and PowerShell : VMName to OSName mapping</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/n3M4jLj_Xxs/1113</link>
		<comments>http://bsonposh.com/archives/1113#comments</comments>
		<pubDate>Sat, 28 Jan 2012 18:15:05 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[192]]></category>
		<category><![CDATA[Bd]]></category>
		<category><![CDATA[Challenges]]></category>
		<category><![CDATA[Computersystem]]></category>
		<category><![CDATA[Hash Table]]></category>
		<category><![CDATA[Hypervisor]]></category>
		<category><![CDATA[Mapping]]></category>
		<category><![CDATA[Object Creation]]></category>
		<category><![CDATA[R2]]></category>
		<category><![CDATA[Service Pack 1]]></category>
		<category><![CDATA[Splunk]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Xml]]></category>

		<guid isPermaLink="false">http://bsonposh.com/?p=1113</guid>
		<description><![CDATA[I have been working on creating a Hyper-V app for Splunk that will allow Splunk users to associate Hypervisor data with products like XenDesktop, XenApp, and Exchange. One of the challenges I came across is mapping the Hypervisor VM name to the OS FQDN. Thanks to Artem Function function Get-VMDetails &#123; &#160; &#160; Param&#40; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on creating a Hyper-V app for <a title="Splunk" href="http://www.splunk.com" target="_blank">Splunk</a> that will allow Splunk users to associate Hypervisor data with products like XenDesktop, XenApp, and Exchange. One of the challenges I came across is mapping the Hypervisor VM name to the OS FQDN.</p>
<p>Thanks to <a title="Artem Pronichkin" href="http://pronichkin.com/blog/Lists/Posts/AllPosts.aspx" target="_blank">Artem</a></p>
<p><strong>Function</strong></p>
<hr />
<div class="dean_ch" style="white-space: wrap;"><span class="kw1">function</span> <span class="re0">Get-<span class="re1">VMDetails</span></span><br />
<span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="kw1">Param</span><span class="br0">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#91;</span>Parameter<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#93;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re3">$ComputerName</span> = <span class="re3">$Env</span>:ComputerName, </p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#91;</span>Parameter<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#93;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re3">$VMName</span></p>
<p>&nbsp; &nbsp; <span class="br0">&#41;</span></p>
<p>&nbsp; &nbsp; <span class="co1"># Creating HASH Table for object creation</span><br />
&nbsp; &nbsp; <span class="re3">$MyObj</span> = @<span class="br0">&#123;</span><span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; <span class="co1"># Getting VM Object</span><br />
&nbsp; &nbsp; <span class="re3">$Vm</span> = <span class="re0">Get-<span class="re1">WmiObject</span></span> <span class="re2">-Namespace</span> root\virtualization <span class="re2">-Query</span> <span class="st0">&quot;Select * From Msvm_ComputerSystem Where ElementName=&#8217;$VMName&#8217;&quot;</span> <span class="re2">-ComputerName</span> <span class="re3">$ComputerName</span></p>
<p>&nbsp; &nbsp; <span class="co1"># Getting VM Details</span><br />
&nbsp; &nbsp; <span class="re3">$Kvp</span> = <span class="re0">Get-<span class="re1">WmiObject</span></span> <span class="re2">-Namespace</span> root\virtualization <span class="re2">-Query</span> <span class="st0">&quot;Associators of {$Vm} Where AssocClass=Msvm_SystemDevice ResultClass=Msvm_KvpExchangeComponent&quot;</span> <span class="re2">-ComputerName</span> <span class="re3">$ComputerName</span></p>
<p>&nbsp; &nbsp; <span class="co1"># Converting XML to Object</span><br />
&nbsp; &nbsp; <span class="kw1">foreach</span><span class="br0">&#40;</span><span class="re3">$CimXml</span> <span class="kw1">in</span> <span class="re3">$Kvp</span>.<span class="me1">GuestIntrinsicExchangeItems</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; <span class="br0">&#123;</span></p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; <span class="re3">$XML</span> = <span class="br0">&#91;</span><a href="http://www.google.com/search?q=<span class="kw4">xml</span>+site:msdn.microsoft.com&#8221;><span class="kw3">XML</span></a><span class="br0">&#93;</span><span class="re3">$CimXml</span></p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span><span class="br0">&#40;</span><span class="re3">$XML</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">foreach</span> <span class="br0">&#40;</span><span class="re3">$CimProperty</span> <span class="kw1">in</span> <span class="re3">$XML</span>.<span class="me1">SelectNodes</span><span class="br0">&#40;</span><span class="st0">&quot;/INSTANCE/PROPERTY&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">switch</span> <span class="re2">-exact</span> <span class="br0">&#40;</span><span class="re3">$CimProperty</span>.<span class="me1">Name</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Data&quot;</span> &nbsp; &nbsp; &nbsp;<span class="br0">&#123;</span> <span class="re3">$Value</span> = <span class="re3">$CimProperty</span>.<span class="me1">VALUE</span> <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Name&quot;</span> &nbsp; &nbsp; &nbsp;<span class="br0">&#123;</span> <span class="re3">$Name</span> &nbsp;= <span class="re3">$CimProperty</span>.<span class="me1">VALUE</span> <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="re3">$MyObj</span>.<span class="me1">add</span><span class="br0">&#40;</span><span class="re3">$Name</span>,<span class="re3">$Value</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; <span class="br0">&#125;</span></p>
<p>&nbsp; &nbsp; <span class="co1"># Outputting Object</span><br />
&nbsp; &nbsp; <span class="re0">New-<span class="re1">Object</span></span> <span class="re2">-TypeName</span> PSCustomObject <span class="re2">-Property</span> <span class="re3">$MyObj</span><br />
<span class="br0">&#125;</span></div>
<p><strong>Output looks like</strong></p>
<hr />
<div class="dean_ch" style="white-space: wrap;">RDPAddressIPv6 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :<br />
OSName &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : Windows Server <span class="nu0">2008</span> R2<br />
EnterpriseOSMajorVersion &nbsp; : <span class="nu0">6</span><br />
ServicePackMinor &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span class="nu0">0</span><br />
ProductType &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: <span class="nu0">3</span><br />
OSPlatformId &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span class="nu0">2</span><br />
SuiteMask &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: <span class="nu0">18</span><br />
CSDVersion &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : Service Pack <span class="nu0">1</span><br />
OSVersion &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: <span class="nu0">6.1</span><span class="nu0">.7601</span><br />
FullyQualifiedDomainName &nbsp; : bd-xa60<span class="nu0">-01</span>.<span class="kw4">home</span>.<span class="me1">lab</span><br />
OSMinorVersion &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span class="nu0">1</span><br />
NetworkAddressIPv6 &nbsp; &nbsp; &nbsp; &nbsp; : fe80::78e4:e94b:b5c0:be0b%<span class="nu0">12</span><br />
OSBuildNumber &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: <span class="nu0">7601</span><br />
ProcessorArchitecture &nbsp; &nbsp; &nbsp;: <span class="nu0">9</span><br />
RDPAddressIPv4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; :<br />
ServicePackMajor &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : <span class="nu0">1</span><br />
NetworkAddressIPv4 &nbsp; &nbsp; &nbsp; &nbsp; : <span class="nu0">192.168</span><span class="nu0">.0</span><span class="nu0">.105</span><br />
OSEditionId &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: <span class="nu0">10</span><br />
IntegrationServicesVersion : <span class="nu0">6.1</span><span class="nu0">.7601</span><span class="nu0">.17514</span></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=n3M4jLj_Xxs:wWSd6zgBnb8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=n3M4jLj_Xxs:wWSd6zgBnb8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=n3M4jLj_Xxs:wWSd6zgBnb8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=n3M4jLj_Xxs:wWSd6zgBnb8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=n3M4jLj_Xxs:wWSd6zgBnb8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=n3M4jLj_Xxs:wWSd6zgBnb8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=n3M4jLj_Xxs:wWSd6zgBnb8:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/n3M4jLj_Xxs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1113/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1113</feedburner:origLink></item>
		<item>
		<title>PowerShell cmdlets for Splunk!</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/zaYjXRjlxzg/1107</link>
		<comments>http://bsonposh.com/archives/1107#comments</comments>
		<pubDate>Wed, 24 Aug 2011 16:43:07 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[Splunk]]></category>
		<category><![CDATA[C Program]]></category>
		<category><![CDATA[Com Dev]]></category>
		<category><![CDATA[Connection Time]]></category>
		<category><![CDATA[Cookbook]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Developer Portal]]></category>
		<category><![CDATA[Developers]]></category>
		<category><![CDATA[Devinfo]]></category>
		<category><![CDATA[Grid View]]></category>
		<category><![CDATA[Hosts]]></category>
		<category><![CDATA[Httpport]]></category>
		<category><![CDATA[Internals]]></category>
		<category><![CDATA[Launcher]]></category>
		<category><![CDATA[Matching Patterns]]></category>
		<category><![CDATA[Resource Kit]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Server Classes]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Splunk Base]]></category>
		<category><![CDATA[True C]]></category>

		<guid isPermaLink="false">http://bsonposh.com/?p=1107</guid>
		<description><![CDATA[Project https://github.com/splunk/splunk-reskit-powershell Splunk PowerShell Resource Kit The Splunk PowerShell Resource Kit enables IT administrators to manage their Splunk topology, configure Splunk internals, and engage the Splunk search engine from their PowerShell session. Example Uses PS &#62; Get-Splunkd ComputerName MgmtPort HTTPPort SessionTimeout MinFreeSpace EnableWeb EnableWebSSL Splunk_Home &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8211; &#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8211; YETICLIENT 8089 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Project</strong></p>
<p><a title="https://github.com/splunk/splunk-reskit-powershell  " href="https://github.com/splunk/splunk-reskit-powershell  " target="_blank">https://github.com/splunk/splunk-reskit-powershell</a></p>
<p><strong>Splunk PowerShell Resource Kit</strong></p>
<p>The Splunk PowerShell Resource Kit enables IT administrators to manage their Splunk topology, configure Splunk internals, and engage the Splunk search engine from their PowerShell session.</p>
<p><strong>Example Uses</strong><br />
PS &gt; Get-Splunkd</p>
<p>ComputerName MgmtPort HTTPPort SessionTimeout MinFreeSpace EnableWeb EnableWebSSL Splunk_Home<br />
&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8211; &#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8211;<br />
YETICLIENT   8089     8000     1h             2000         True      True         C:\Program Files\Splunk</p>
<p>PS &gt; Get-SplunkdUser</p>
<p>ComputerName UserName FullName      Email                Type   DefaultApp Roles<br />
&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8211; &#8212;&#8212;&#8211;      &#8212;&#8211;                &#8212;-   &#8212;&#8212;&#8212;- &#8212;&#8211;<br />
127.0.0.1    admin    Administrator changeme@example.com Splunk launcher   admin</p>
<p><strong>Here are a few of the tasks enabled by the Resource Kit:</strong></p>
<ul>
<li>Determine or change the status of Splunk services across a set of Splunk servers in parallel.</li>
<li>Force one or more Splunk servers to reload their configuration, in parallel.</li>
<li>Deploy multiple Splunk forwarders to all active hosts in a Windows domain.</li>
<li>Retrieve a list of Splunk server classes, optionally filtered by last deployment client connection time, associated applications, or matching patterns.</li>
<li>Issue a Splunk search and format the retrieved events as a table, a list, or in a windowed grid view.</li>
</ul>
<p><strong>Documentation</strong><br />
Most of the documentation leaves in the &#8220;Splunk PowerShell Resource Kit Cookbook&#8221;, which we highly recommend you read. You can find it here: <a title="Splunk PowerShell Resource Kit.docx" href="https://github.com/splunk/splunk-reskit-powershell/blob/master/Docs/Splunk%20PowerShell%20Resource%20Kit.docx" target="_blank">Splunk PowerShell Resource Kit</a></p>
<p><strong>Resources</strong></p>
<p>You can find anything having to do with developing on Splunk at the Splunk developer portal:<br />
You can also find full reference documentation of the REST API: <a title="REST API Reference" href="http://docs.splunk.com/Documentation/Splunk/latest/RESTAPI" target="_blank">API Reference</a></p>
<p><strong>Community</strong></p>
<p>Email: Stay connected with other developers building on Splunk: devinfo@splunk.com<br />
Issues: <a title="https://github.com/splunk/splunk-reskit-powershell/issues" href="https://github.com/splunk/splunk-reskit-powershell/issues" target="_blank">https://github.com/splunk/splunk-reskit-powershell/issues</a><br />
Answers: Check out this tag on Splunk answers for: <a title="http://splunk-base.splunk.com/tags/powershell/" href="http://splunk-base.splunk.com/tags/powershell/" target="_blank">http://splunk-base.splunk.com/tags/powershell/</a><br />
Blog: <a title="http://blogs.splunk.com/dev/" href="http://blogs.splunk.com/dev/" target="_blank">http://blogs.splunk.com/dev/</a><br />
Twitter: <a title="http://twitter.com/#!/splunkdev" href="http://twitter.com/#!/splunkdev" target="_blank">@splunkdev</a></p>
<p><strong>Support</strong></p>
<p>Resource Kits in Preview will not be Splunk supported. Once the PowerShell Resource Kit an Open Beta we will provide more detail on support.</p>
<p>Issues should be filed here: <a title="https://github.com/splunk/splunk-reskit-powershell/issues" href="https://github.com/splunk/splunk-reskit-powershell/issues" target="_blank">https://github.com/splunk/splunk-reskit-powershell/issues</a></p>
<p><strong>Contact Us</strong></p>
<p>You can reach the Dev Platform team at devinfo@splunk.com</p>
<p><strong>License</strong></p>
<p>The Splunk PowerShell Resource Kit is licensed under the Apache License 2.0. Details can be found in the file LICENSE.</p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=zaYjXRjlxzg:WhHkrODlB-k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=zaYjXRjlxzg:WhHkrODlB-k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=zaYjXRjlxzg:WhHkrODlB-k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=zaYjXRjlxzg:WhHkrODlB-k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=zaYjXRjlxzg:WhHkrODlB-k:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=zaYjXRjlxzg:WhHkrODlB-k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=zaYjXRjlxzg:WhHkrODlB-k:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/zaYjXRjlxzg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1107/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1107</feedburner:origLink></item>
		<item>
		<title>The 2011 Scripting Games</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/4MhneaDeP1U/1105</link>
		<comments>http://bsonposh.com/archives/1105#comments</comments>
		<pubDate>Sun, 03 Apr 2011 16:50:31 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[April 4]]></category>
		<category><![CDATA[Daily Basis]]></category>
		<category><![CDATA[Dozens]]></category>
		<category><![CDATA[Driven Problem]]></category>
		<category><![CDATA[Hundreds Of Thousands]]></category>
		<category><![CDATA[Leaderboards]]></category>
		<category><![CDATA[Mvp]]></category>
		<category><![CDATA[Nbsp]]></category>
		<category><![CDATA[Participants]]></category>
		<category><![CDATA[Prize Drawings]]></category>
		<category><![CDATA[Real World]]></category>
		<category><![CDATA[Scenarios]]></category>
		<category><![CDATA[Script Repository]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Seven Days]]></category>
		<category><![CDATA[Spectators]]></category>
		<category><![CDATA[Step Tutorials]]></category>
		<category><![CDATA[Suspense]]></category>
		<category><![CDATA[World Games]]></category>

		<guid isPermaLink="false">http://bsonposh.com/?p=1105</guid>
		<description><![CDATA[The 2011 Scripting Games begin on April 4, 2011 and run through April 15, 2011. What is the Scripting Games, you may ask? Well simply put, the Scripting Games are the premier learning event of the year for IT Pro’s and others who wish to master Windows PowerShell. Comprising 10 events, a registered contestant has [...]]]></description>
			<content:encoded><![CDATA[<p>The 2011 Scripting Games begin on April 4, 2011 and run through April 15, 2011. What is the Scripting Games, you may ask? Well simply put, the Scripting Games are the premier learning event of the year for IT Pro’s and others who wish to master Windows PowerShell. Comprising 10 events, a registered contestant has seven days to create a solution to a scenario driven problem and post their code to a MVP maintained script repository for evaluation by a panel of internationally recognized judges. Daily leaderboards and prize drawings help to maintain the suspense throughout the two-week international event.</p>
<p>&nbsp;</p>
<p>During the 2011 Scripting Games hundreds of contestants will submit thousands of scripts that will be reviewed by dozens of judges. Hundreds of thousands of spectators from all around the world will view the games themselves. Last year, participants from more than 100 countries participated in the Scripting Games. With an emphasis on real world scripting scenarios and problems, the scripts will be of immediate value to both the participants and to the spectators.</p>
<p>&nbsp;</p>
<p>Preparation for the 2011 Scripting Games is already underway, with a learning guide, step-by-step tutorials, videos and other resources being generated on a daily basis. The <a href="http://blogs.technet.com/b/heyscriptingguy/archive/2011/02/19/2011-scripting-games-all-links-on-one-page.aspx" target="_blank">2011 Scripting Games all in one page</a> is the portal for the games themselves. The <a href="http://blogs.technet.com/b/heyscriptingguy/archive/2010/04/05/2010-scripting-games-all-links-on-one-page.aspx" target="_blank">2010 Scripting Games all in one page</a> is still available, as are the events from the <a href="http://blogs.technet.com/b/heyscriptingguy/archive/tags/2009+summer+scripting+games/" target="_blank">2009 Scripting Games</a>.</p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=4MhneaDeP1U:gkucHt3hcq0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=4MhneaDeP1U:gkucHt3hcq0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=4MhneaDeP1U:gkucHt3hcq0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=4MhneaDeP1U:gkucHt3hcq0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=4MhneaDeP1U:gkucHt3hcq0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=4MhneaDeP1U:gkucHt3hcq0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=4MhneaDeP1U:gkucHt3hcq0:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/4MhneaDeP1U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1105/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1105</feedburner:origLink></item>
		<item>
		<title>Its been awhile… what have you been up to?</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/cafAcvKtUHo/1101</link>
		<comments>http://bsonposh.com/archives/1101#comments</comments>
		<pubDate>Wed, 01 Dec 2010 03:33:30 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Busy At Work]]></category>
		<category><![CDATA[Ctp]]></category>
		<category><![CDATA[Exploits]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Mvp]]></category>
		<category><![CDATA[Users Group]]></category>

		<guid isPermaLink="false">http://bsonposh.com/?p=1101</guid>
		<description><![CDATA[Sorry I haven&#8217;t been blogging much. While I have been very busy at work my Powershell exploits have not been idle Here are some updates My MVP was renewed My CTP was renewed BSonPosh module is now in V2 and almost ready to release I am speaking at the NYC users group next month (Dec [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry I haven&#8217;t been blogging much. While I have been very busy at work my Powershell exploits have not been idle <img src='http://bsonposh.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here are some updates <img src='http://bsonposh.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li>My MVP was renewed</li>
<li>My CTP was renewed</li>
<li>BSonPosh module is now in V2 and almost ready to release</li>
<li>I am speaking at the NYC users group next month (Dec 13th) (<a href="http://powershellgroup.org/nyc">http://powershellgroup.org/nyc</a>)</li>
<li>Writing a monthly article here (<a href="http://searchwindowsserver.techtarget.com/feature/PowerShell-Scripting-School-20">http://searchwindowsserver.techtarget.com/feature/PowerShell-Scripting-School-20</a>)</li>
<li>Working on a podcast series for (<a href="http://www.dabcc.com/">http://www.dabcc.com/</a>) *This is going to be a fun one</li>
</ul>
<p>Anyway&#8230; I just wanted to give you a heads up on what was going on with me. Shortly I plan to have a weekly or monthly blog post covering my BSonPosh module which is up to ~140 cmdlets.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=cafAcvKtUHo:t6WyWSZ0WiM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=cafAcvKtUHo:t6WyWSZ0WiM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=cafAcvKtUHo:t6WyWSZ0WiM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=cafAcvKtUHo:t6WyWSZ0WiM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=cafAcvKtUHo:t6WyWSZ0WiM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=cafAcvKtUHo:t6WyWSZ0WiM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=cafAcvKtUHo:t6WyWSZ0WiM:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/cafAcvKtUHo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1101/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1101</feedburner:origLink></item>
		<item>
		<title>BriForum rocked!</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/JkpPXxmWDak/1099</link>
		<comments>http://bsonposh.com/archives/1099#comments</comments>
		<pubDate>Wed, 16 Jun 2010 21:57:24 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[Citrix]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Absolute Blast]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Sbc]]></category>
		<category><![CDATA[Server Based Computing]]></category>
		<category><![CDATA[Sessions]]></category>

		<guid isPermaLink="false">http://bsonposh.com/archives/1099</guid>
		<description><![CDATA[As I am sitting here on my way back to NJ from BrForum I am thinking about the week. All I can say is awesome. The content was only matched by the company. People often underestimate the value in conferences and often it is not the actual sessions. In the case of BriForum there is [...]]]></description>
			<content:encoded><![CDATA[<p>As I am sitting here on my way back to NJ from BrForum I am thinking about the week. All I can say is awesome. The content was only matched by the company. People often underestimate the value in conferences and often it is not the actual sessions. In the case of BriForum there is significant value in both. If you have never been to BriForum and you are in the SBC (server based computing) world you are missing out. </p>
<p>p.s. @ShawnBass, @JasonConger, @LauraWhalen, @JimMoyle. You guys rock and I had an absolute blast.   </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=JkpPXxmWDak:-HU13CeM4KU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=JkpPXxmWDak:-HU13CeM4KU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=JkpPXxmWDak:-HU13CeM4KU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=JkpPXxmWDak:-HU13CeM4KU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=JkpPXxmWDak:-HU13CeM4KU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=JkpPXxmWDak:-HU13CeM4KU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=JkpPXxmWDak:-HU13CeM4KU:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/JkpPXxmWDak" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1099/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1099</feedburner:origLink></item>
		<item>
		<title>BSonPosh v1 Powershell Module finally ships!</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/jS3PTHrOBuM/1096</link>
		<comments>http://bsonposh.com/archives/1096#comments</comments>
		<pubDate>Sun, 23 May 2010 00:41:23 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Airplane]]></category>
		<category><![CDATA[Finishing Touches]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Powershell Module]]></category>
		<category><![CDATA[Ships]]></category>
		<category><![CDATA[Zip File]]></category>

		<guid isPermaLink="false">http://bsonposh.com/?p=1096</guid>
		<description><![CDATA[Thanks to 12 hours of time in an airplane I was able to put the finishing touches on my BSonPosh Module. I have added help for all my cmdlets and created format files. Download Here: BSonPosh V1 [Update]:: I had to post an updated zip file as I was missing some KMS cmdlets. Thanks Jason [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to 12 hours of time in an airplane I was able to put the finishing touches on my BSonPosh Module.</p>
<p>I have added help for all my cmdlets and created format files.</p>
<p>Download Here: <a href="http://code.msdn.microsoft.com/bsonposh" target="_blank">BSonPosh V1</a></p>
<p>[Update]:: I had to post an updated zip file as I was missing some KMS cmdlets. Thanks Jason for pointing that out!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=jS3PTHrOBuM:eDDdeFehiE8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=jS3PTHrOBuM:eDDdeFehiE8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=jS3PTHrOBuM:eDDdeFehiE8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=jS3PTHrOBuM:eDDdeFehiE8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=jS3PTHrOBuM:eDDdeFehiE8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=jS3PTHrOBuM:eDDdeFehiE8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=jS3PTHrOBuM:eDDdeFehiE8:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/jS3PTHrOBuM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1096/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1096</feedburner:origLink></item>
		<item>
		<title>PowerScripting Podcast… Tonight!</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/x1JBrO6U5nY/1095</link>
		<comments>http://bsonposh.com/archives/1095#comments</comments>
		<pubDate>Thu, 20 May 2010 23:40:36 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[powershell powerscripting podcast]]></category>

		<guid isPermaLink="false">http://bsonposh.com/archives/1095</guid>
		<description><![CDATA[Going to be a guest tonight on the PowerScripting pod cast. You can catch it live via the website or listen later.]]></description>
			<content:encoded><![CDATA[<p>Going to be a guest tonight on the PowerScripting pod cast. You can catch it live via the <a href="http://powerscripting.wordpress.com/">website</a> or listen later.  </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x1JBrO6U5nY:t2_CVoAgkjM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x1JBrO6U5nY:t2_CVoAgkjM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=x1JBrO6U5nY:t2_CVoAgkjM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x1JBrO6U5nY:t2_CVoAgkjM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x1JBrO6U5nY:t2_CVoAgkjM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x1JBrO6U5nY:t2_CVoAgkjM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=x1JBrO6U5nY:t2_CVoAgkjM:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/x1JBrO6U5nY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1095/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1095</feedburner:origLink></item>
		<item>
		<title>Blogging from iPad</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/Q1LzdFJ1f6w/1094</link>
		<comments>http://bsonposh.com/archives/1094#comments</comments>
		<pubDate>Tue, 18 May 2010 21:10:36 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Imo]]></category>
		<category><![CDATA[Ipad]]></category>
		<category><![CDATA[powershell citrix]]></category>

		<guid isPermaLink="false">http://bsonposh.com/archives/1094</guid>
		<description><![CDATA[Trying out the new iPad app for WordPress. Typing is not perfect but it is not to bad either. For those of you wondering I got an iPad because of the Citrix receiver. It make the device priceless. IMO&#8230; Everyone should have one.]]></description>
			<content:encoded><![CDATA[<p>Trying out the new iPad app for WordPress. Typing is not perfect but it is not to bad either. </p>
<p>For those of you wondering I got an iPad because of the Citrix receiver. It make the device priceless. IMO&#8230; Everyone should have one.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Q1LzdFJ1f6w:5c1Ch5jPROk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Q1LzdFJ1f6w:5c1Ch5jPROk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=Q1LzdFJ1f6w:5c1Ch5jPROk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Q1LzdFJ1f6w:5c1Ch5jPROk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Q1LzdFJ1f6w:5c1Ch5jPROk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Q1LzdFJ1f6w:5c1Ch5jPROk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=Q1LzdFJ1f6w:5c1Ch5jPROk:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/Q1LzdFJ1f6w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1094/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1094</feedburner:origLink></item>
		<item>
		<title>Live Tweeting/Blogging Citrix Synergy!</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/Cf978L43_4Q/1092</link>
		<comments>http://bsonposh.com/archives/1092#comments</comments>
		<pubDate>Wed, 12 May 2010 17:31:41 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[Exciting News]]></category>
		<category><![CDATA[Synergy]]></category>

		<guid isPermaLink="false">http://bsonposh.com/archives/1092</guid>
		<description><![CDATA[Some really exciting news forth coming! @BSonPosh #CitrixSynergy]]></description>
			<content:encoded><![CDATA[<p>Some really exciting news forth coming!</p>
<p>@BSonPosh #CitrixSynergy</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Cf978L43_4Q:jDFxtVeBHHY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Cf978L43_4Q:jDFxtVeBHHY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=Cf978L43_4Q:jDFxtVeBHHY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Cf978L43_4Q:jDFxtVeBHHY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Cf978L43_4Q:jDFxtVeBHHY:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=Cf978L43_4Q:jDFxtVeBHHY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=Cf978L43_4Q:jDFxtVeBHHY:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/Cf978L43_4Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1092/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1092</feedburner:origLink></item>
		<item>
		<title>Write-Log… What should it be?</title>
		<link>http://feedproxy.google.com/~r/BsOnPosh/~3/x4BYdPOGHBg/1089</link>
		<comments>http://bsonposh.com/archives/1089#comments</comments>
		<pubDate>Fri, 26 Feb 2010 04:30:16 +0000</pubDate>
		<dc:creator>tshell</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Logging Script]]></category>
		<category><![CDATA[Script Module]]></category>

		<guid isPermaLink="false">http://bsonposh.com/?p=1089</guid>
		<description><![CDATA[Goal: Write a Logging Script/Module with functionality similar to Log4Perl : Link to Log4Perl Info If you have any ideas on what functionality it should have please let me know by leaving a comment.]]></description>
			<content:encoded><![CDATA[<p><strong>Goal:</strong></p>
<p>Write a Logging Script/Module with functionality similar to Log4Perl : <a href="http://www252.pair.com/comdog/mastering_perl/Chapters/13.logging.html" target="_blank">Link to Log4Perl Info</a></p>
<p>If you have any ideas on what functionality it should have please let me know by leaving a comment.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x4BYdPOGHBg:rxEz7p3c_1s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x4BYdPOGHBg:rxEz7p3c_1s:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=x4BYdPOGHBg:rxEz7p3c_1s:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x4BYdPOGHBg:rxEz7p3c_1s:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x4BYdPOGHBg:rxEz7p3c_1s:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BsOnPosh?a=x4BYdPOGHBg:rxEz7p3c_1s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BsOnPosh?i=x4BYdPOGHBg:rxEz7p3c_1s:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BsOnPosh/~4/x4BYdPOGHBg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://bsonposh.com/archives/1089/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://bsonposh.com/archives/1089</feedburner:origLink></item>
	</channel>
</rss>

