<?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 for gotITsolutions.org</title>
	<atom:link href="http://gotitsolutions.org/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://gotitsolutions.org</link>
	<description>Get Information Technology Conjecture...</description>
	<lastBuildDate>Sun, 31 Jan 2010 17:11:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Data Profiling with Windows PowerShell by rbocchinfuso</title>
		<link>http://gotitsolutions.org/2010/01/30/data-profiling-with-windows-powershell.html/comment-page-1#comment-544</link>
		<dc:creator>rbocchinfuso</dc:creator>
		<pubDate>Sun, 31 Jan 2010 17:11:37 +0000</pubDate>
		<guid isPermaLink="false">http://gotitsolutions.org/2010/01/30/data-profiling-with-windows-powershell.html#comment-544</guid>
		<description>&lt;p&gt;I have not run the PS2 code but does it output the results to a CSV files?&#160; It does not look like it.&#160; The problem that I am trying to solve is the memory footprint when the scan runs using an array to store output and then write the array to a CSV files.&#160; I would like to write each row and remove the use of the array, the issue that I have is that the Export-CSV function does not support appending to a CSV (I don&#039;t think this is supported on PS2 either), I did find a replacement Export-CSV function here http://dmitrysotnikov.wordpress.com/2010/01/19/export-csv-append/ which says it supports an -Append flag but have not had a chance to try yet.&#160; I tried using the out-file function in the PS1 script but formatting was a little mote work than what I bargained for.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I have not run the PS2 code but does it output the results to a CSV files?&nbsp; It does not look like it.&nbsp; The problem that I am trying to solve is the memory footprint when the scan runs using an array to store output and then write the array to a CSV files.&nbsp; I would like to write each row and remove the use of the array, the issue that I have is that the Export-CSV function does not support appending to a CSV (I don&#39;t think this is supported on PS2 either), I did find a replacement Export-CSV function here <a href="http://dmitrysotnikov.wordpress.com/2010/01/19/export-csv-append/" rel="nofollow">http://dmitrysotnikov.wordpress.com/2010/01/19/export-csv-append/</a> which says it supports an -Append flag but have not had a chance to try yet.&nbsp; I tried using the out-file function in the PS1 script but formatting was a little mote work than what I bargained for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Data Profiling with Windows PowerShell by Doug</title>
		<link>http://gotitsolutions.org/2010/01/30/data-profiling-with-windows-powershell.html/comment-page-1#comment-542</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Sun, 31 Jan 2010 14:50:34 +0000</pubDate>
		<guid isPermaLink="false">http://gotitsolutions.org/2010/01/30/data-profiling-with-windows-powershell.html#comment-542</guid>
		<description>&lt;p&gt;
  Nice work. For PowerShell V2 you can work it like this.
&lt;/p&gt;
&lt;p&gt;
  Function Get-FileDetails ($target) { &#160;&#160;&#160;
  get-childitem $target -recurse&#124; Select-Object FullName, Root,
  Directory, Parent, Name, Extension, PSIsContainer, IsReadOnly,
  Length, CreationTime, LastAccessTime, LastWriteTime, Attributes }
  foreach($file in&#160; (Get-FileDetails
  C:\temp\ConsoleApplication2) ) { &#160;&#160;&#160; $acl =
  get-acl $file.fullname &#124; select-object
  path,owner,accesstostring,group &#160;&#160;&#160;
  &#160;&#160;&#160; $properties = @{} &#160;&#160;&#160;
  &#160;&#160;&#160; $properties.Root = $file.Root
  &#160;&#160;&#160; $properties.Directory = $file.Directory
  &#160;&#160;&#160; $properties.Parent = $file.Parent
  &#160;&#160;&#160; $properties.Name = $file.Name
  &#160;&#160;&#160; $properties.Extension = $file.Extension
  &#160;&#160;&#160; $properties.IsDIR = $file.PSIsContainer
  &#160;&#160;&#160; $properties.IsReadOnly = $file.IsReadOnly
  &#160;&#160;&#160; $properties.Size = $file.Length
  &#160;&#160;&#160; $properties.CreationTime = $file.CreationTime
  &#160;&#160;&#160; $properties.LastAccessTime =
  $file.LastAccessTime &#160;&#160;&#160; $properties.LastWriteTime
  = $file.LastWriteTime &#160;&#160;&#160; $properties.Attributes =
  $file.Attributes &#160;&#160;&#160; $properties.Owner =
  $acl.owner &#160;&#160;&#160; $properties.AccessToString =
  $acl.accesstostring &#160;&#160;&#160; $properties.Group =
  $acl.group&#160;&#160;&#160;&#160; &#160;&#160;&#160;
  &#160;&#160;&#160; New-Object PSObject -Property $properties }
  &#160;
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>
  Nice work. For PowerShell V2 you can work it like this.
</p>
<p>
  Function Get-FileDetails ($target) { &nbsp;&nbsp;&nbsp;<br />
  get-childitem $target -recurse| Select-Object FullName, Root,<br />
  Directory, Parent, Name, Extension, PSIsContainer, IsReadOnly,<br />
  Length, CreationTime, LastAccessTime, LastWriteTime, Attributes }<br />
  foreach($file in&nbsp; (Get-FileDetails<br />
  C:\temp\ConsoleApplication2) ) { &nbsp;&nbsp;&nbsp; $acl =<br />
  get-acl $file.fullname | select-object<br />
  path,owner,accesstostring,group &nbsp;&nbsp;&nbsp;<br />
  &nbsp;&nbsp;&nbsp; $properties = @{} &nbsp;&nbsp;&nbsp;<br />
  &nbsp;&nbsp;&nbsp; $properties.Root = $file.Root<br />
  &nbsp;&nbsp;&nbsp; $properties.Directory = $file.Directory<br />
  &nbsp;&nbsp;&nbsp; $properties.Parent = $file.Parent<br />
  &nbsp;&nbsp;&nbsp; $properties.Name = $file.Name<br />
  &nbsp;&nbsp;&nbsp; $properties.Extension = $file.Extension<br />
  &nbsp;&nbsp;&nbsp; $properties.IsDIR = $file.PSIsContainer<br />
  &nbsp;&nbsp;&nbsp; $properties.IsReadOnly = $file.IsReadOnly<br />
  &nbsp;&nbsp;&nbsp; $properties.Size = $file.Length<br />
  &nbsp;&nbsp;&nbsp; $properties.CreationTime = $file.CreationTime<br />
  &nbsp;&nbsp;&nbsp; $properties.LastAccessTime =<br />
  $file.LastAccessTime &nbsp;&nbsp;&nbsp; $properties.LastWriteTime<br />
  = $file.LastWriteTime &nbsp;&nbsp;&nbsp; $properties.Attributes =<br />
  $file.Attributes &nbsp;&nbsp;&nbsp; $properties.Owner =<br />
  $acl.owner &nbsp;&nbsp;&nbsp; $properties.AccessToString =<br />
  $acl.accesstostring &nbsp;&nbsp;&nbsp; $properties.Group =<br />
  $acl.group&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />
  &nbsp;&nbsp;&nbsp; New-Object PSObject -Property $properties }<br />
  &nbsp;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco Nexus 5000 video from Nexus class lab by Michael</title>
		<link>http://gotitsolutions.org/2009/01/08/cisco-nexus-5000-video-from-nexus-class-lab.html/comment-page-1#comment-538</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 23 Dec 2009 11:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://gotitsolutions.org/2009/01/08/cisco-nexus-5000-video-from-nexus-class-lab.html#comment-538</guid>
		<description>Hi I tried to play the video but didn’t work I tried with MP3 real
player quick time but none of them worked is there any specific
software or the file corrupted. I don’t know where you live but I
am in Sydney Australia and I would be really appreciated if I can
get this video. Regards Michael</description>
		<content:encoded><![CDATA[<p>Hi I tried to play the video but didn’t work I tried with MP3 real<br />
player quick time but none of them worked is there any specific<br />
software or the file corrupted. I don’t know where you live but I<br />
am in Sydney Australia and I would be really appreciated if I can<br />
get this video. Regards Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Secure rexec&#8230; Why did I not go to bed 2 hours ago? by Calvin from twin over full bunk bed</title>
		<link>http://gotitsolutions.org/2006/07/06/secure-rexec-why-did-i-not-go-to-bed-2-hours-ago.html/comment-page-1#comment-536</link>
		<dc:creator>Calvin from twin over full bunk bed</dc:creator>
		<pubDate>Thu, 10 Dec 2009 18:43:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.gotitsolutions.com/2006/07/06/secure-rexec-why-did-i-not-go-to-bed-2-hours-ago.html#comment-536</guid>
		<description>&lt;p&gt;
  Its good to find a source of information that can be useful,
  especially when looking for something to occupy me,thankyou for
  your help and being of assistance, there&#039;s a good wealth of
  information here.
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>
  Its good to find a source of information that can be useful,<br />
  especially when looking for something to occupy me,thankyou for<br />
  your help and being of assistance, there&#8217;s a good wealth of<br />
  information here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cisco Nexus 5000 video from Nexus class lab by giulio</title>
		<link>http://gotitsolutions.org/2009/01/08/cisco-nexus-5000-video-from-nexus-class-lab.html/comment-page-1#comment-535</link>
		<dc:creator>giulio</dc:creator>
		<pubDate>Tue, 17 Nov 2009 22:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://gotitsolutions.org/2009/01/08/cisco-nexus-5000-video-from-nexus-class-lab.html#comment-535</guid>
		<description>&lt;p&gt;
  Hi,
&lt;/p&gt;
&lt;p&gt;
  &#160;
&lt;/p&gt;
&lt;p&gt;
  It would be very interesting, i downloaded it but i cant watch
  it. which program should i use to see it? i tried everything.
&lt;/p&gt;
&lt;p&gt;
  &#160;
&lt;/p&gt;
&lt;p&gt;
  thanks,
&lt;/p&gt;
&lt;p&gt;
  Giulio
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>
  Hi,
</p>
<p>
  &nbsp;
</p>
<p>
  It would be very interesting, i downloaded it but i cant watch<br />
  it. which program should i use to see it? i tried everything.
</p>
<p>
  &nbsp;
</p>
<p>
  thanks,
</p>
<p>
  Giulio</p>
]]></content:encoded>
	</item>
</channel>
</rss>
