<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>www.jayntguru.com</title>
	<atom:link href="http://jayntguru.com/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://jayntguru.com/wordpress</link>
	<description>jay&#039;s website</description>
	<lastBuildDate>Wed, 10 Mar 2010 19:43:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>a very cool audit utility</title>
		<link>http://jayntguru.com/wordpress/archives/253</link>
		<comments>http://jayntguru.com/wordpress/archives/253#comments</comments>
		<pubDate>Wed, 10 Mar 2010 19:43:22 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[iis]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/253</guid>
		<description><![CDATA[I have been using a very cool utility for a while now that I just realized I failed to plug, it&#8217;s called Open Audit. What it does is basically is run a wmi scan on your network (it will do nmap too) and submit that data back to a mysql database through a web service. [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using a very cool utility for a while now that I just realized I failed to plug, <a href="http://www.open-audit.org/" target="_blank">it&#8217;s called Open Audit.</a> What it does is basically is run a wmi scan on your network (it will do nmap too) and submit that data back to a mysql database through a web service. Then there’s a fancy UI that you can do searches, queries, etc.. You can get cool stuff like hardware type, see how many sticks of ram, or an IP address, or a driver, or a hotfix. </p>
<p>The application is written in PHP and mysql and I run the application on a windows host (it can run on just about anything) and use <a href="http://www.apachefriends.org/en/xampp-windows.html" target="_blank">XAMPP</a>, which is a pretty cool. It’s a single download that contains apache, php and mysql, all preconfigured and ready to rock and roll. All you need is some minor configuration.</p>
<p>While it’s pretty cool as it comes, the real power is that you can modify it all you want. So what you can do is take one of the default “views” such as list_viewdef_all_servers.php. If you open it, there’s a sql query inside that looks like this: </p>
<p><font face="Calibri">SELECT * FROM `system` WHERE (system_os_name LIKE &#8216;%Server%&#8217;)</font></p>
<p>Then you can copy/rename the page and modify that query however you like. Here’s a modification that I made so I could find servers on our internal (but shouldn’t be) net.</p>
<p><font face="Calibri">SELECT * FROM `system` WHERE (system_os_name LIKE &#8216;%Server%&#8217;) AND net_ip_address LIKE &#8216;192.100%&#8217;</font></p>
<p>After doing this for every custom query that I wanted, I realized that all of this data is in a mysql database. This allows you to run queries straight up, and since you used XAMPP, well you can then log in there, choose your database, find the query window, and paste your sql query right there and get the results on the spot. It’s pretty cool.</p>
<p>This now leads me to a gotcha I encountered today while doing my own query this way. What I had was a query that looked like this:</p>
<p><font face="Calibri">SELECT * FROM `system` WHERE (system_os_name LIKE &#8216;%Server%&#8217;) AND net_ip_address LIKE &#8216;192.100%&#8217;</font></p>
<p>And I was trying to find a subnet that was 10.1.13, so I made the query like this:</p>
<p><font face="Calibri">SELECT * FROM `system` WHERE (system_os_name LIKE &#8216;%Server%&#8217;) AND net_ip_address LIKE &#8216;10.1.13.%&#8217;</font></p>
<p>This kept returning zero results, which I knew was not the case. After looking at the data, I saw that the IP addresses were stored like this:</p>
<p><font face="Calibri">010.001.013.xxx</font></p>
<p>As a result I had to change my query to look like this instead:</p>
<p><font face="Calibri">SELECT * FROM `system` WHERE (system_os_name LIKE &#8216;%Server%&#8217;) AND net_ip_address LIKE &#8216;010.001.013.%&#8217;</font></p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/253/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wsus and cloning vm&#8217;s</title>
		<link>http://jayntguru.com/wordpress/archives/252</link>
		<comments>http://jayntguru.com/wordpress/archives/252#comments</comments>
		<pubDate>Wed, 10 Mar 2010 16:50:14 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/252</guid>
		<description><![CDATA[I am currently working on WSUS (windows software update services) here at work, for the most part I’m following this excellent article at Ars. After screwing around with this for much longer than I should have, I was having issues with about half the servers not showing up in the WSUS console. Many things could [...]]]></description>
			<content:encoded><![CDATA[<p>I am currently working on WSUS (windows software update services) here at work, for the most part I’m following <a href="http://arstechnica.com/business/news/2009/12/how-to-implement-and-maintain-a-tiered-wsus-infrastructure.ars/" target="_blank">this excellent article at Ars</a>. After screwing around with this for much longer than I should have, I was having issues with about half the servers not showing up in the WSUS console. Many things could have been the culprit and I checked them all.. group policy, dns, firewall rules, etc. What was the most frustrating was that I could see the clients touch the WSUS server by looking in the IIS logs, and there were no errors whatsoever, but half the servers wouldn’t show up.</p>
<p>Eventually I realized that it was exactly half of the servers and a light bulb went off. In our environment we have a bunch of web and app servers that are all virtual, and when we build them, we get the first node working right, and then clone and rename the vm to be the redundant node in the farm.This lead me to do some searching and I found <a href="http://www.wsuswiki.com/ClientFAQ" target="_blank">this link.</a> Admittedly, this is an old problem, but the first time I have run across it.</p>
<p>The following is a repost of the pertinent bits that have caused my trouble and are the resolution for it.</p>
</p>
<h2>5. Imaged clients with a duplicate client ID will only appear once in the WSUS Admin Console. Each AU client must have a unique id which is created for each individual install. When imaging systems it is recommended always to use SysPrep. The WSUS admin console will only display one client for each unique ID. If you have multiple clients created from one image which are sharing the same ID, only one will appear in the WSUS admin console. All clients will check in and download updates, but only one will appear and display status in the WSUS admin console. In cases where clients are not checking in, and they were created from images without running SysPrep, the following steps will reset the existing duplicative client IDs. </h2>
<h2>a. Run regedit and go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate</h2>
<h2>b. Delete the PingID, SUSClientID and the AccountDomainSID values</h2>
<h2>c. Stop and start the Wuauserv Service</h2>
<h2>d. From the command prompt run: wuauclt /resetauthorization /detectnow</h2>
<h2>or- </h2>
<h2>From the command line, once you are sure the AU client is properly configured and not disabled, you could run a batch file (which might look something like this sample) and get the same results:</h2>
<h2>rem Fixes problem with client machines not showing up on the server due to imaging method</h2>
<h2>reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v AccountDomainSid /f</h2>
<h2>reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v PingID /f</h2>
<h2>reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v SusClientId /f</h2>
<h2>cls</h2>
<h2>@echo Triggering detection after resetting WSUS client identity</h2>
<h2>net stop wuauserv</h2>
<h2>net start wuauserv</h2>
<h2>wuauclt /resetauthorization /detectnow</h2>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/252/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>my first real powershell script &#8211; forcing sessions closed past a certain idle time</title>
		<link>http://jayntguru.com/wordpress/archives/248</link>
		<comments>http://jayntguru.com/wordpress/archives/248#comments</comments>
		<pubDate>Wed, 24 Feb 2010 15:49:04 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/248</guid>
		<description><![CDATA[I consider myself fairly decent at writing scripts for windows stuff. Mostly in batch where I would consider myself a 9/10, and in vbscript where I would consider myself a 6/10.&#160; Of course the windows world is moving to powershell, and I have been slowly working on learning it. (It does help that my good [...]]]></description>
			<content:encoded><![CDATA[<p>I consider myself fairly decent at writing scripts for windows stuff. Mostly in batch where I would consider myself a 9/10, and in vbscript where I would consider myself a 6/10.&#160; Of course the windows world is moving to powershell, and I have been slowly working on learning it. (It does help that my good buddy <a href="http://halr9000.com/" target="_blank">Hal</a> is a powershell guru.) What usually happens though is I get in a hurry for something and can’t be slowed down to learn something new. Luckily since I have changed jobs, I have more time to actually learn things instead of putting out fires full time.</p>
<p>So anyway, until now, most of my powershell scripts were just copying and pasting various bits from others and putting them together just to make things work, but yesterday I found a bit of a challenge.</p>
<p>We have an application here at work that allows a limited number of user licenses, and strangely enough, it keeps a license open for a user as long as they have the windows share open. (Don’t ask me.. this is what I was told and I’m accepting it at face value.) There’s no way to expire the license if they have the share open, and it can stay open for a number of reasons. What happens is that over time we get these left open and run out of licenses. The business has agreed that anyone that’s idle more than 2 hours can be forcibly removed from the application by removing their session to the share.</p>
<p>We can see if these are actually in use by opening up the computer management MMC and going to shared folders\sessions. Once we sort by idle time, we can see that there are a number of sessions with more than 2 hours of idle time. (Note: In the screenshot below I have hidden the usernames and computernames.)</p>
<p><a href="http://jayntguru.com/wordpress/wp-content/uploads/2010/02/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://jayntguru.com/wordpress/wp-content/uploads/2010/02/image_thumb2.png" width="522" height="401" /></a> </p>
<p>You can also see the same bit of info by running “net session” from a command prompt.</p>
<p><a href="http://jayntguru.com/wordpress/wp-content/uploads/2010/02/image4.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://jayntguru.com/wordpress/wp-content/uploads/2010/02/image_thumb3.png" width="470" height="336" /></a> </p>
<p>After some googling, I decided that wmi would be the way to go, and I immediately found the <a href="http://msdn.microsoft.com/en-us/library/aa394416%28VS.85%29.aspx" target="_blank">Win32_ServerConnection class</a>. This looked like it, but if you want to see the idle time.. guess what? While everything else is, this one is not exposed. So no dice.</p>
<p>After scratching my head for a bit, I decided that using net session would be the way to go, and we could manipulate the output in order to get what I was after. I messed with powershell doing this for a bit and I wasn’t making any progress. <a href="http://halr9000.com/" target="_blank">Hal</a> was on vacation in Disney world, and my other script buddy <a href="http://marcusoh.blogspot.com/" target="_blank">Marcus</a> was at the Microsoft MVP summit, so I couldn’t ask him either. So I got nowhere for a bit and had to resort back to batch. </p>
<p>What I did was take the output of net session and use logparser.exe with a custom input format. This was a pain because the fields aren’t delimited by anything other than spaces. When I set the idle time field to date, it thought a 00:00:00 was Jan 1, 1900, so basically I was looking for a date greater than 2AM on Jan 1, 1900. Using that I was able to get the list of computers and run “net session <a href="file://\\%strcomputer">\\%strcomputer</a> /delete”. This worked, but it was ugly, and I’m not even going to bother posting the script, because this post is about powershell.</p>
<p>Yesterday I decided that I wanted to get this working in powershell as much as I can, and while searching, I ran across the <a href="http://msdn.microsoft.com/en-us/library/aa394417%28VS.85%29.aspx" target="_blank">Win32_ServerSession Class</a>, and was surprised to find that it included IdleTime. Nice! (why isn’t this in with the others, Microsoft? And why couldn’t I find it by searching on their site? I ran across this on page 6 of a google search.) Of course there are no methods exposed here, so I was back to the drawing board on ending the session. Eventually I had to give up because there doesn’t seem to be an equivalent for “net” inside powershell.</p>
<p>Based on this, I went ahead with the script as it is now, here it is:</p>
<p><font color="#0000ff" size="1">$strComputer = “%computername%”     <br />$tool=&quot;net.exe&quot;      <br />$cmdLine = &quot;session \\$computer /delete&quot;      <br />$idleuser=get-WmiObject Win32_ServerSession -computername $strComputer | where-object {$_.IdleTime -gt 7200} | where-object {$_.UserName -ne &quot;SERVICEACCOUNT&quot;} |&#160; format-table ComputerName -auto      <br />$idleuser      <br />foreach($computer in $idleuser) {invoke-expression &quot;$tool $cmdLine&quot;}      <br />write-output BIG BANG</font></p>
<p>In the end this was a pretty easy script, all I am doing besides setting up the variables is grabbing the info via wmi, then looking for IdleTime being greater than 2 hours or 7200 seconds, and then excluding the service account. Output what’s left to a table. I then print that to screen for my own sanity, and run a for loop against the computername using the command line of net session that I set up earlier.</p>
<p>Now it’s done, the script works, I know a bit more about powershell, and life is good. Next!</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/248/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>telling if tcp offload is working or not</title>
		<link>http://jayntguru.com/wordpress/archives/243</link>
		<comments>http://jayntguru.com/wordpress/archives/243#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:46:10 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[w7]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/243</guid>
		<description><![CDATA[I made an earlier post about telling if the newer advanced tcp functionality included since sp2 in 2003 server, vista, w7, 2008r2, etc was working or not. The one that I neglected to include was whether or not TCP offloading was really working or not.
All you need to do is run this command while traffic [...]]]></description>
			<content:encoded><![CDATA[<p>I made an <a href="http://jayntguru.com/wordpress/archives/195" target="_blank">earlier post</a> about telling if the newer advanced tcp functionality included since sp2 in 2003 server, vista, w7, 2008r2, etc was working or not. The one that I neglected to include was whether or not TCP offloading was really working or not.</p>
<p>All you need to do is run this command while traffic is taking place:</p>
<p>netstat –nt</p>
<p>The output will look like this:</p>
<p>&#160;<a href="http://jayntguru.com/wordpress/wp-content/uploads/2010/02/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://jayntguru.com/wordpress/wp-content/uploads/2010/02/image_thumb1.png" width="604" height="209" /></a></p>
<p>On the right hand side you can see that my connections on the example computer are in the host and not offloaded.<a href="http://jayntguru.com/wordpress/wp-content/uploads/2010/02/image2.png"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/243/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the vista snipping tool (where is it?)</title>
		<link>http://jayntguru.com/wordpress/archives/239</link>
		<comments>http://jayntguru.com/wordpress/archives/239#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:43:14 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[annoyances]]></category>
		<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[w7]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/239</guid>
		<description><![CDATA[I went to use the vista screenshot tool just now and couldn’t find it. After some investigation I realized that the snipping tool is included with the “tablet pc components” in vista and w7. So if you uninstall things that aren’t needed (like the tablet pc components), then you won’t have this.
Why this is included [...]]]></description>
			<content:encoded><![CDATA[<p>I went to use the vista screenshot tool just now and couldn’t find it. After some investigation I realized that the snipping tool is included with the “tablet pc components” in vista and w7. So if you uninstall things that aren’t needed (like the tablet pc components), then you won’t have this.</p>
<p>Why this is included with the “tablet pc components”? I have no idea. This doesn’t make any sense to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/239/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>deleting a partition during the w7 install</title>
		<link>http://jayntguru.com/wordpress/archives/238</link>
		<comments>http://jayntguru.com/wordpress/archives/238#comments</comments>
		<pubDate>Fri, 05 Feb 2010 05:22:48 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[annoyances]]></category>
		<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[w7]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/238</guid>
		<description><![CDATA[I had an issue tonight when reinstalling w7 where the install would not let me delete the partitions on one of the disks… they could be formatted, etc, but the delete button was grayed out for some reason. Why it did this, I can’t tell you. What I finally found to fix it was this:

on [...]]]></description>
			<content:encoded><![CDATA[<p>I had an issue tonight when reinstalling w7 where the install would not let me delete the partitions on one of the disks… they could be formatted, etc, but the delete button was grayed out for some reason. Why it did this, I can’t tell you. What I finally found to fix it was this:</p>
<ul>
<li>on the first welcome screen of the w7 install, hit shift-f10, this gives you a command prompt</li>
<li>run diskpart</li>
<li>list disks</li>
<li>select disk 0 (if this is the disk you want)</li>
<li>clean</li>
<li>exit</li>
</ul>
<p>Then you can continue with the install on a new fresh and clean drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/238/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jusched.exe #fail</title>
		<link>http://jayntguru.com/wordpress/archives/237</link>
		<comments>http://jayntguru.com/wordpress/archives/237#comments</comments>
		<pubDate>Fri, 05 Feb 2010 00:03:21 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[annoyances]]></category>
		<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[w7]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/237</guid>
		<description><![CDATA[I really dislike this stupid java update scheduler already for a whole lot of reasons, but with windows 7 it’s an extra hassle, at least for me. This is because that new systray icons are hidden by default, so you can not notice the (stupid) thing running. Just now I started to use my laptop [...]]]></description>
			<content:encoded><![CDATA[<p>I really dislike this stupid java update scheduler already for a whole lot of reasons, but with windows 7 it’s an extra hassle, at least for me. This is because that new systray icons are hidden by default, so you can not notice the (stupid) thing running. Just now I started to use my laptop and realized it was very slow. Here’s why: </p>
</p>
<p> <a href="http://jayntguru.com/wordpress/wp-content/uploads/2010/02/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://jayntguru.com/wordpress/wp-content/uploads/2010/02/image_thumb.png" width="736" height="768" /></a>
<p>&#160;</p>
<p>Total and complete #fail.</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/237/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>computer upgrades</title>
		<link>http://jayntguru.com/wordpress/archives/234</link>
		<comments>http://jayntguru.com/wordpress/archives/234#comments</comments>
		<pubDate>Mon, 01 Feb 2010 18:51:23 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/234</guid>
		<description><![CDATA[This past weekend I made a bunch of computer upgrades.
In my main machine, called TQM, it has been upgraded recently:

in order to run more virtual machines, the upgrade from four 1 gb sticks of ram to four 2gb sticks was a no brainer, and relatively cheap right now. Made a nice difference when running a [...]]]></description>
			<content:encoded><![CDATA[<p>This past weekend I made a bunch of computer upgrades.</p>
<p><a href="http://jayntguru.com/wordpress/computer-geek-stuff/my-pc-badmf" target="_blank">In my main machine, called TQM,</a> it has been upgraded recently:</p>
<ul>
<li>in order to run more virtual machines, the upgrade from four 1 gb sticks of ram to four 2gb sticks was a no brainer, and relatively cheap right now. Made a nice difference when running a bunch of stuff but it wasn’t noticeable with regular, i.e. non power user type use.</li>
<li>I needed an additional monitor output so I could drive my two desktop monitors and the occasional image on the projector in the basement, so I found this Nvidia 9600GSO on sale at newegg.com for $40. The price was right and it works as required. No complaints.</li>
<li>I started with four 250gb sata drives in a raid0 setup and had 3 drives fail over a 6 month period. Luckily I have good backups so this was mostly just an annoyance. Because of the issues I have had with these older, e.g. out of warranty drives, I went with some Seagate 7200.8 450gb drives I had laying around and made them raid0.</li>
<li>Then I came across a 160gb Intel SSD upgrade. What I did was take my existing w7 install that was running on the 7200.8 450gb drives, install the SSD, then mirror the OS drive to the SSD. This worked perfectly.. so I was able to reboot, choose the backup mirror to boot from, then boot, break the mirror, delete the old boos partition, and I’m done. Easy!</li>
</ul>
<p>My upgrades are never limited to only one machine, so I also had some new goodies for <a href="http://jayntguru.com/wordpress/computer-geek-stuff/server-and-such" target="_blank">my server, thor.</a>&#160;</p>
<ul>
<li>The primary new addition was a 3ware 9650SE SATA RAID controller card. This is a 4 port card basically because I was out of SATA ports and had resorted to taking apart some USB/sata adapters so I could hook up more drives. I left in the Highpoint RocketRaid 2300 and of course the stuff built onto the motherboard.</li>
<li>Installed a new “Startech” 5 bay hot swap SATA disk device. It takes up only 3 slots but has room for 5 drives.. that’s pretty cool. Add that plus the power cable and data cable mess that I can give up now, built in fan, and even temperature monitoring and alerting, and this thing is an easy win. I already had one so this allows me to do 10 hot swap data drives in the server. There are 4 spots left, one has the DVD and 3 are open.</li>
<li>Installed 3 Seagate 7200.11 SATA drives, 1.5tb/each, in a RAID5 hanging off the 3ware 9650SE RAID controller.</li>
<li>Installed the western digital caviar “Green” 2.0tb drive attached to the 3ware controller. Basically I wanted the most space for the money and the slowest/least power consuming hard drive as well. That’s because this drive will be a backup drive, it will be swapped with an identical one (including the hot swap tray) with a friend of mine. There will be 2 partitions on the drive that are encrypted, one is his and the other is mine. Our backups will run there nightly and every month we’ll just swap disks. It’ll get us into a routine and get us offsite backups, which is something I feel like I need. (Only because I have a <strong>lot </strong>of digital camera pictures that I have taken over the years, and I would be very, very upset to lose all of them.)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/234/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>making sure TRIM is enabled and working in w7</title>
		<link>http://jayntguru.com/wordpress/archives/227</link>
		<comments>http://jayntguru.com/wordpress/archives/227#comments</comments>
		<pubDate>Sun, 31 Jan 2010 17:34:21 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>
		<category><![CDATA[w7]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/227</guid>
		<description><![CDATA[To confirm that trim is working and enabled in your windows7 install, go to the command prompt and type: 
fsutil behavior query disabledeletenotify
&#160;
 


DisableDeleteNotify = 1 (Windows TRIM commands are disabled)   DisableDeleteNotify = 0 (Windows TRIM commands are enabled
]]></description>
			<content:encoded><![CDATA[<p>To confirm that <a href="http://en.wikipedia.org/wiki/TRIM_%28SSD_command%29" target="_blank">trim</a> is working and enabled in your windows7 install, go to the command prompt and type: </p>
<p>fsutil behavior query disabledeletenotify</p>
<p>&#160;</p>
<p><a href="http://jayntguru.com/wordpress/wp-content/uploads/2010/01/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://jayntguru.com/wordpress/wp-content/uploads/2010/01/image_thumb1.png" width="436" height="229" /></a> </p>
</p>
</p>
<p>DisableDeleteNotify = 1 (Windows TRIM commands are disabled)   <br />DisableDeleteNotify = 0 (Windows TRIM commands are enabled</p>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/227/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mark Russinovich&#8217;s blog (the sysinternals guy)</title>
		<link>http://jayntguru.com/wordpress/archives/224</link>
		<comments>http://jayntguru.com/wordpress/archives/224#comments</comments>
		<pubDate>Tue, 19 Jan 2010 22:15:44 +0000</pubDate>
		<dc:creator>jayntguru</dc:creator>
				<category><![CDATA[computer geek stuff]]></category>

		<guid isPermaLink="false">http://jayntguru.com/wordpress/archives/224</guid>
		<description><![CDATA[This guy is smart. His blog in general is a really good read.
Some very good ones are:


Pushing the Limits of Windows: Physical Memory


Pushing the Limits of Windows: Handles


Pushing the Limits of Windows: Processes and Threads


Pushing the Limits of Windows: Paged and Nonpaged Pool


]]></description>
			<content:encoded><![CDATA[<p>This guy is smart. <a href="http://blogs.technet.com/markrussinovich/" target="_blank">His blog in general is a really good read.</a></p>
<p>Some very good ones are:</p>
<ul>
<li>
<h4><a href="http://blogs.technet.com/markrussinovich/archive/2008/07/21/3092070.aspx" target="_blank"><span style="font-size: x-small;">Pushing the Limits of Windows: Physical Memory</span></a></h4>
</li>
<li>
<h4><a href="http://blogs.technet.com/markrussinovich/archive/2009/09/29/3283844.aspx" target="_blank"><span style="font-size: x-small;">Pushing the Limits of Windows: Handles</span></a></h4>
</li>
<li>
<h4><a href="http://blogs.technet.com/markrussinovich/archive/2009/07/08/3261309.aspx" target="_blank"><span style="font-size: x-small;">Pushing the Limits of Windows: Processes and Threads</span></a></h4>
</li>
<li>
<h4><a href="http://blogs.technet.com/markrussinovich/archive/2009/03/26/3211216.aspx" target="_blank"><span style="font-size: x-small;">Pushing the Limits of Windows: Paged and Nonpaged Pool</span></a></h4>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jayntguru.com/wordpress/archives/224/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
