<?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.demonictalkingskull.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for Demonic Talking Skull</title>
	
	<link>http://demonictalkingskull.com</link>
	<description>Technology for IT pros, musings for freethinkers</description>
	<lastBuildDate>Mon, 14 Nov 2011 08:03:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.demonictalkingskull.com/CommentsForDemonicTalkingSkull" /><feedburner:info uri="commentsfordemonictalkingskull" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Comment on Network problems on a Hyper-V guest by James Bannan</title>
		<link>http://demonictalkingskull.com/2009/08/network-problems-on-a-hyper-v-guest/comment-page-1/#comment-47203</link>
		<dc:creator>James Bannan</dc:creator>
		<pubDate>Mon, 14 Nov 2011 08:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=172#comment-47203</guid>
		<description>Hmm - it was a while ago, but I believe it was an Intel Pro/1000 GT Desktop card. And no, I didn't need the registry change once I replaced the card.</description>
		<content:encoded><![CDATA[<p>Hmm &#8211; it was a while ago, but I believe it was an Intel Pro/1000 GT Desktop card. And no, I didn&#8217;t need the registry change once I replaced the card.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Network problems on a Hyper-V guest by KMan</title>
		<link>http://demonictalkingskull.com/2009/08/network-problems-on-a-hyper-v-guest/comment-page-1/#comment-46808</link>
		<dc:creator>KMan</dc:creator>
		<pubDate>Fri, 11 Nov 2011 01:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=172#comment-46808</guid>
		<description>I've recently run into this issue myself, and I'm wondering out of interest which exact Intel NIC you used.
I have been looking around, and it appears that maybe the Intel cards are better supported in Hyper-V, or just plain better than their Realtek counterparts.

Also, after you installed the Intel Card, and rebuilt the Domain Controller, did you need to make the registry change again?
Thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve recently run into this issue myself, and I&#8217;m wondering out of interest which exact Intel NIC you used.<br />
I have been looking around, and it appears that maybe the Intel cards are better supported in Hyper-V, or just plain better than their Realtek counterparts.</p>
<p>Also, after you installed the Intel Card, and rebuilt the Domain Controller, did you need to make the registry change again?<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Empty users’ Recycle Bin with PowerShell and GPO by adamgovuk</title>
		<link>http://demonictalkingskull.com/2010/06/empty-users-recycle-bin-with-powershell-and-gpo/comment-page-1/#comment-46633</link>
		<dc:creator>adamgovuk</dc:creator>
		<pubDate>Wed, 09 Nov 2011 13:24:17 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=234#comment-46633</guid>
		<description>Many thanks for sharing this very useful code. Implemented this into an Windows XP script I am currently writing...thanks again!</description>
		<content:encoded><![CDATA[<p>Many thanks for sharing this very useful code. Implemented this into an Windows XP script I am currently writing&#8230;thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Calculate folder sizes with PowerShell by K Lause</title>
		<link>http://demonictalkingskull.com/2010/08/calculate-folder-sizes-with-powershell/comment-page-1/#comment-39609</link>
		<dc:creator>K Lause</dc:creator>
		<pubDate>Tue, 06 Sep 2011 15:57:44 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=247#comment-39609</guid>
		<description>Try this:

#Query Folders
$dirpath = Read-Host "Enter path"
$subfolders = Get-ChildItem $dirpath | Where-Object {$_.PsIsContainer}
 
foreach ($subfolder in $subfolders)
{
$folder = $dirpath + "\" + $subfolder.Name
$colItems = (Get-ChildItem $folder -Recurse | Measure-Object -property length -sum)
$colItemsSum = ("{0:N2}" -f ($colItems.sum / 1MB) + " MB")
$niceformat = $folder + " " + $colItemsSum
Write-Output $niceformat | Out-File export.txt -Append
}

It create a new variable and put the two together first then output that to the file. Gets you a nice format you can open in excel.</description>
		<content:encoded><![CDATA[<p>Try this:</p>
<p>#Query Folders<br />
$dirpath = Read-Host &#8220;Enter path&#8221;<br />
$subfolders = Get-ChildItem $dirpath | Where-Object {$_.PsIsContainer}</p>
<p>foreach ($subfolder in $subfolders)<br />
{<br />
$folder = $dirpath + &#8220;\&#8221; + $subfolder.Name<br />
$colItems = (Get-ChildItem $folder -Recurse | Measure-Object -property length -sum)<br />
$colItemsSum = (&#8220;{0:N2}&#8221; -f ($colItems.sum / 1MB) + &#8221; MB&#8221;)<br />
$niceformat = $folder + &#8221; &#8221; + $colItemsSum<br />
Write-Output $niceformat | Out-File export.txt -Append<br />
}</p>
<p>It create a new variable and put the two together first then output that to the file. Gets you a nice format you can open in excel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Provision user home directories with PowerShell by Josh</title>
		<link>http://demonictalkingskull.com/2010/02/provision-user-home-directories-with-powershell/comment-page-1/#comment-37866</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Fri, 19 Aug 2011 14:34:48 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=209#comment-37866</guid>
		<description>Thank you very much for this post, I am also in the transition to AD from NDS and this will help quite a bit.</description>
		<content:encoded><![CDATA[<p>Thank you very much for this post, I am also in the transition to AD from NDS and this will help quite a bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Network problems on a Hyper-V guest by MaCuban</title>
		<link>http://demonictalkingskull.com/2009/08/network-problems-on-a-hyper-v-guest/comment-page-1/#comment-23107</link>
		<dc:creator>MaCuban</dc:creator>
		<pubDate>Wed, 13 Apr 2011 15:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=172#comment-23107</guid>
		<description>This is interesting... I built a powerhouse PC to be used for a development virtual environment.  I had two private networks configured in Hyper-v; communication between the machines attached worked flawlessly (no physical NICs involved).  When i attached a 2008r2 VM to the office network through one of the Physical NICs, connectivity was terribly buggy.  While the machine was idle it was ping-able from other machines on the network, as soon as i tried attaching it to the domain, opening a browser, or use any other service requiring network resources it would drop pings till the process timed out.  I have four NICs, two integrated Marvel Yukon Gig NICs and two Realtek PCI NICs.  I am willing to guess my problems are related to this.  Thanks for pointing this out!</description>
		<content:encoded><![CDATA[<p>This is interesting&#8230; I built a powerhouse PC to be used for a development virtual environment.  I had two private networks configured in Hyper-v; communication between the machines attached worked flawlessly (no physical NICs involved).  When i attached a 2008r2 VM to the office network through one of the Physical NICs, connectivity was terribly buggy.  While the machine was idle it was ping-able from other machines on the network, as soon as i tried attaching it to the domain, opening a browser, or use any other service requiring network resources it would drop pings till the process timed out.  I have four NICs, two integrated Marvel Yukon Gig NICs and two Realtek PCI NICs.  I am willing to guess my problems are related to this.  Thanks for pointing this out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Empty users’ Recycle Bin with PowerShell and GPO by gandalf</title>
		<link>http://demonictalkingskull.com/2010/06/empty-users-recycle-bin-with-powershell-and-gpo/comment-page-1/#comment-8306</link>
		<dc:creator>gandalf</dc:creator>
		<pubDate>Tue, 09 Nov 2010 10:35:28 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=234#comment-8306</guid>
		<description>Hi,
can you give me a powershell script for empty recycle bin for all users, please ?
I think that the windows 2008 $recycle.bin doesn't work correct.
Thanks.
Gandalf</description>
		<content:encoded><![CDATA[<p>Hi,<br />
can you give me a powershell script for empty recycle bin for all users, please ?<br />
I think that the windows 2008 $recycle.bin doesn&#8217;t work correct.<br />
Thanks.<br />
Gandalf</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Philosophy Friday #8 – Thinking by Wilson da Silva</title>
		<link>http://demonictalkingskull.com/2010/10/philosophy-friday-8-thinking/comment-page-1/#comment-7139</link>
		<dc:creator>Wilson da Silva</dc:creator>
		<pubDate>Fri, 15 Oct 2010 09:02:50 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=300#comment-7139</guid>
		<description>The editorial has now been published - you can find it here;

http://www.cosmosmagazine.com/features/print/3792/why-politics-sucks

Cheers

- Wilson</description>
		<content:encoded><![CDATA[<p>The editorial has now been published &#8211; you can find it here;</p>
<p><a href="http://www.cosmosmagazine.com/features/print/3792/why-politics-sucks" rel="nofollow">http://www.cosmosmagazine.com/features/print/3792/why-politics-sucks</a></p>
<p>Cheers</p>
<p>- Wilson</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Philosophy Friday #8 – Thinking by Mark Davids</title>
		<link>http://demonictalkingskull.com/2010/10/philosophy-friday-8-thinking/comment-page-1/#comment-6944</link>
		<dc:creator>Mark Davids</dc:creator>
		<pubDate>Sun, 10 Oct 2010 04:59:01 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=300#comment-6944</guid>
		<description>All of us are hounded by the thought of limits. What we can and cannot do unconsciously makes us stay on the "safe way." But adding spontaneity a strong sense of curiosity, we can be out of our comfort zones and try new stuff. By doing this, we can discover that life may have other things to offer other than what we are accustomed to.

Mark Davids
&lt;a href="http://www.audiocreed.com/forums" rel="nofollow"&gt;audiocreed forums - Indexing art, 
literature, science &amp; philosophy&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>All of us are hounded by the thought of limits. What we can and cannot do unconsciously makes us stay on the &#8220;safe way.&#8221; But adding spontaneity a strong sense of curiosity, we can be out of our comfort zones and try new stuff. By doing this, we can discover that life may have other things to offer other than what we are accustomed to.</p>
<p>Mark Davids<br />
<a href="http://www.audiocreed.com/forums" rel="nofollow">audiocreed forums &#8211; Indexing art,<br />
literature, science &amp; philosophy</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Philosophy Friday #8 – Thinking by Wilson da Silva</title>
		<link>http://demonictalkingskull.com/2010/10/philosophy-friday-8-thinking/comment-page-1/#comment-6697</link>
		<dc:creator>Wilson da Silva</dc:creator>
		<pubDate>Sun, 03 Oct 2010 02:12:01 +0000</pubDate>
		<guid isPermaLink="false">http://demonictalkingskull.com/?p=300#comment-6697</guid>
		<description>James: 

Thanks for the comment - and glad to hear my editorial had an impact; it at least got you to reactivate the philosophy blog! We all need a bit more thinking time, I think (if you pardon the intended pun).

- Wilson</description>
		<content:encoded><![CDATA[<p>James: </p>
<p>Thanks for the comment &#8211; and glad to hear my editorial had an impact; it at least got you to reactivate the philosophy blog! We all need a bit more thinking time, I think (if you pardon the intended pun).</p>
<p>- Wilson</p>
]]></content:encoded>
	</item>
</channel>
</rss>

