<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>William Bartholomew &#187; sysadmin</title>
	<atom:link href="http://blog.bartholomew.id.au/category/sysadmin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bartholomew.id.au</link>
	<description>Musings on software engineering, technology and Aspergers Syndrome.</description>
	<lastBuildDate>Sun, 01 Nov 2009 16:56:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.bartholomew.id.au' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/fddb6d13b8a166fa8e5180be576582d1?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>William Bartholomew &#187; sysadmin</title>
		<link>http://blog.bartholomew.id.au</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.bartholomew.id.au/osd.xml" title="William Bartholomew" />
	<atom:link rel='hub' href='http://blog.bartholomew.id.au/?pushpress=hub'/>
		<item>
		<title>Enhancement to PowerShell Drives Script</title>
		<link>http://blog.bartholomew.id.au/2009/08/31/enhancement-to-powershell-drives-script/</link>
		<comments>http://blog.bartholomew.id.au/2009/08/31/enhancement-to-powershell-drives-script/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 04:40:16 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://williamb.wordpress.com/2009/08/31/enhancement-to-powershell-drives-script/</guid>
		<description><![CDATA[I recently posted a script to map local and remote directories to PowerShell drives. Because this script executes when you open a new PowerShell session if you open it while disconnected then any network drives will remain unmapped until you start a new PowerShell session. I’ve resolved this by changing the script to map the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=124&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I recently posted a <a href="http://blog.bartholomew.id.au/2009/08/25/powershell-drives/" target="_blank">script to map local and remote directories to PowerShell drives</a>. Because this script executes when you open a new PowerShell session if you open it while disconnected then any network drives will remain unmapped until you start a new PowerShell session. I’ve resolved this by changing the script to map the drive on the fly when you try to access the drive. Here is the revised script:</p>
<p>$Drives = @{    <br />&#160;&#160;&#160; &quot;dev&quot;=&quot;C:\Dev\&quot;;     <br />&#160;&#160;&#160; &quot;docs&quot;=&quot;C:\Users\WilliamB\Documents\&quot;;     <br />&#160;&#160;&#160; &quot;utils&quot;=&quot;C:\Utils\&quot;;     <br />&#160;&#160;&#160; &quot;drops&quot;=&quot;\\server\drops\&quot;     <br />} </p>
<p>foreach ($Name in $Drives.Keys) {    <br />&#160;&#160;&#160; $Location = $Drives.$Name </p>
<p>&#160;&#160;&#160; Invoke-Expression &quot;function global:$($Name): { `    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if ( -not (Get-PSDrive $($Name) -ErrorAction SilentlyContinue) ) {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; `$null = New-PSDrive -PSProvider FileSystem -Name $Name -Root $Location -Scope Global     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Push-Location $($Name): `     <br />&#160;&#160;&#160; }&quot;     <br />}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=124&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2009/08/31/enhancement-to-powershell-drives-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>
	</item>
		<item>
		<title>PowerShell Drives</title>
		<link>http://blog.bartholomew.id.au/2009/08/25/powershell-drives/</link>
		<comments>http://blog.bartholomew.id.au/2009/08/25/powershell-drives/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 23:03:02 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://williamb.wordpress.com/2009/08/25/powershell-drives/</guid>
		<description><![CDATA[I’ve been reading Pro Windows PowerShell recently, which is without a doubt the best book on the subject I’ve found. One of the cool things about PowerShell is that you can define your own drives that aren’t restricted to a single character name, think Subst on steroids. I was inspired by this and decided it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=122&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I’ve been reading <a href="http://www.amazon.com/gp/product/1590599403?ie=UTF8&amp;tag=willblog-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1590599403" target="_blank">Pro Windows PowerShell</a> recently, which is without a doubt the best book on the subject I’ve found. One of the cool things about PowerShell is that you can define your own drives that aren’t restricted to a single character name, think Subst on steroids.</p>
<p>I was inspired by this and decided it would be useful to have a script that maps my most commonly used directories to drives. So I created the following script:</p>
<p>$Drives = @{   <br />&#160;&#160;&#160; &quot;dev&quot;=&quot;C:\Dev\&quot;;    <br />&#160;&#160;&#160; &quot;docs&quot;=&quot;C:\Users\WilliamB\Documents\&quot;;    <br />&#160;&#160;&#160; &quot;utils&quot;=&quot;C:\Utils\&quot;;    <br />&#160;&#160;&#160; &quot;drops&quot;=&quot;\\server\devdrops\&quot;    <br />} </p>
<p>foreach ($Name in $Drives.Keys) {   <br />&#160;&#160;&#160; $null = New-PSDrive -PSProvider FileSystem -Name $Name -Root $Drives.$Name -Scope Global    <br />&#160;&#160;&#160; Invoke-Expression &quot;function global:$($Name): { Push-Location $($Name): }&quot;    <br />}</p>
<p>The first part of this script creates a hashtable of drive name and destination path, for example, I want the drive dev mapped to C:\Dev\.</p>
<p>The second part of the script loops through each of the keys (drive names) in the hashtable and:</p>
<ol>
<li>Creates a new FileSystem drive named after the key ($Name) and rooted at the value ($Drives.$Name). The scope is set to global otherwise when the script finishes executing the drive will be removed.</li>
<li>Defines a function called $Name: that changes directory to the drive we created. By default, you can’t type a drive name followed by colon to change to that drive like you can for C:, D:, etc. so we mimic this behaviour by defining a global function named $Name:.</li>
</ol>
<p>These drives will only exist in the PowerShell session, so if you want them to be available every time you run PowerShell then you’ll need to execute this script from your PowerShell profile script. Run Get-Help profile to learn how to do this.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=122&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2009/08/25/powershell-drives/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>
	</item>
		<item>
		<title>VMWare LabManager: Bad Handle 0x7B4, the handle is invalid</title>
		<link>http://blog.bartholomew.id.au/2009/08/04/vmware-labmanager-bad-handle-0x7b4-the-handle-is-invalid/</link>
		<comments>http://blog.bartholomew.id.au/2009/08/04/vmware-labmanager-bad-handle-0x7b4-the-handle-is-invalid/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 23:09:13 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://williamb.wordpress.com/2009/08/04/vmware-labmanager-bad-handle-0x7b4-the-handle-is-invalid/</guid>
		<description><![CDATA[I’ve been doing a bit of work recently with VMWare LabManager. However, when accessing the machine consoles on a variety of operating systems (but always using Internet Explorer we’d receive the error “Bad Handle 0x7B4, the handle is invalid”. VMWare have a knowledgebase article about this issue that recommends you disable UAC. I don’t like [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=120&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I’ve been doing a bit of work recently with VMWare LabManager. However, when accessing the machine consoles on a variety of operating systems (but always using Internet Explorer <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> we’d receive the error “Bad Handle 0x7B4, the handle is invalid”.</p>
<p>VMWare have a <a href="http://kb.vmware.com/kb/7802162">knowledgebase article about this issue</a> that recommends you disable UAC. I don’t like this solution because I do believe UAC is a good thing and I think it’s important the developers develop and test with UAC enabled to catch UAC issues in their software early (the same reason I think developers should develop on x64).</p>
<p>After discussing the problem with our Internal Systems people they suggested trying to add the site to the Intranet zone, and low and behold, it worked! So I suggest you try this before the more drastic solution of disabling UAC.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=120&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2009/08/04/vmware-labmanager-bad-handle-0x7b4-the-handle-is-invalid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>
	</item>
		<item>
		<title>PowerShell Get-ChildItem and Hidden/System Files</title>
		<link>http://blog.bartholomew.id.au/2009/07/31/powershell-get-childitem-and-hiddensystem-files/</link>
		<comments>http://blog.bartholomew.id.au/2009/07/31/powershell-get-childitem-and-hiddensystem-files/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 04:49:03 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://williamb.wordpress.com/2009/07/31/powershell-get-childitem-and-hiddensystem-files/</guid>
		<description><![CDATA[A little gotcha is that PowerShell’s Get-ChildItem does not return hidden/system files by default (as with the dir command), if you want to include these files you need to include the –Force switch.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=119&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>A little gotcha is that PowerShell’s Get-ChildItem does not return hidden/system files by default (as with the dir command), if you want to include these files you need to include the –Force switch.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=119&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2009/07/31/powershell-get-childitem-and-hiddensystem-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>
	</item>
		<item>
		<title>Running Virtual Server 2005 R2 on Windows Home Server</title>
		<link>http://blog.bartholomew.id.au/2008/12/13/running-virtual-server-2005-r2-on-windows-home-server/</link>
		<comments>http://blog.bartholomew.id.au/2008/12/13/running-virtual-server-2005-r2-on-windows-home-server/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 12:30:49 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[windowshomeserver]]></category>

		<guid isPermaLink="false">http://blog.bartholomew.id.au/2008/12/13/running-virtual-server-2005-r2-on-windows-home-server/</guid>
		<description><![CDATA[Windows Home Server is without a doubt one of the most useful additions to a home network. It provides three main features: Backup of client machines Shared storage Remote access to shared storage and client machines This allows me to do complete backups both my partner’s and my machine as well as share files. As [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=81&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.microsoft.com/windows/products/winfamily/windowshomeserver/default.mspx">Windows Home Server</a> is without a doubt one of the most useful additions to a home network. It provides three main features:</p>
<ul>
<li>Backup of client machines </li>
<li>Shared storage </li>
<li>Remote access to shared storage and client machines </li>
</ul>
<p>This allows me to do complete backups both my partner’s and my machine as well as share files. As an added bonus it can stream music (and probably videos) to my XBox 360.</p>
<p>Because of the amount of work I do with Visual Studio Team System I thought it would be useful to have a Team Foundation Server at home and although I have spare hardware I didn’t really want to have to set up and maintain another machine (or pay for the electricity it would use!).</p>
<p>The solution was to install Virtual Server 2005 (which is free) on my Windows Home Server machine and then run Team Foundation Server as a virtual machine on the same host. The process to do this was relatively simple:</p>
<ol>
<li>Download <a target="_blank" href="http://www.microsoft.com/windowsserversystem/virtualserver/">Virtual Server 2005 R2 SP1</a>. </li>
<li>Remote desktop to the Windows Home Server. </li>
<li>Install Virtual Server 2005 SP1. </li>
<li>Using the Windows Home Server Console created a share (called VirtualMachines) and grant my user Full access to the share. Because the Virtual Server Administration Website impersonates the user you connect as you cannot see or create virtual machines on the share unless you have Full access to it.</li>
<li>Open the Virtual Server Administration Website and login to it using the Windows Home Server’s Administrator account (at this point your normal user account doesn’t have the necessary permissions).</li>
<li>In Server Properties | Virtual Server Security add an entry for your user account.</li>
<li>In Server Properties | Virtual Machine Remote Control (VMRC) Server:</li>
<ol>
<li>Click the Enable checkbox.</li>
<li>Select NTLM from the Authentication dropdown list. If you don’t do this you will get an <a target="_blank" href="http://blogs.blackmarble.co.uk/blogs/rfennell/archive/2007/05/03/accessing-virtual-server-via-vmrc-through-a-isa-firewall-with-vista.aspx">Authentication Failed error when you try to remotely control the virtual machine</a>.</li>
</ol>
<li>In Server Properties | Virtual Server Search Paths change the Default Virtual Machine Configuration Folder to the UNC path to the VirtualMachines share you created (for example, \\myhomeserver\VirtualMachines\).</li>
<li>You can now create and run virtual machines on your Windows Home Server.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=81&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2008/12/13/running-virtual-server-2005-r2-on-windows-home-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>
	</item>
		<item>
		<title>Freeing Up Space On C:</title>
		<link>http://blog.bartholomew.id.au/2008/10/21/freeing-up-space-on-c/</link>
		<comments>http://blog.bartholomew.id.au/2008/10/21/freeing-up-space-on-c/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 06:14:16 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.bartholomew.id.au/2008/10/21/freeing-up-space-on-c/</guid>
		<description><![CDATA[Scott Hanselman has posted a fantastic guide on how to free up space on C: on your Vista machine: http://www.hanselman.com/blog/GuideToFreeingUpDiskSpaceUnderWindowsVista.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=78&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>Scott Hanselman has posted a fantastic guide on how to free up space on C: on your Vista machine:</p>
<p><a title="http://www.hanselman.com/blog/GuideToFreeingUpDiskSpaceUnderWindowsVista.aspx" href="http://www.hanselman.com/blog/GuideToFreeingUpDiskSpaceUnderWindowsVista.aspx">http://www.hanselman.com/blog/GuideToFreeingUpDiskSpaceUnderWindowsVista.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=78&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2008/10/21/freeing-up-space-on-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>
	</item>
		<item>
		<title>Could Not Start Message in Windows Scheduler When Running Batch File on Windows Server 2003</title>
		<link>http://blog.bartholomew.id.au/2008/10/21/could-not-start-message-in-windows-scheduler-when-running-batch-file-on-windows-server-2003/</link>
		<comments>http://blog.bartholomew.id.au/2008/10/21/could-not-start-message-in-windows-scheduler-when-running-batch-file-on-windows-server-2003/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 00:23:40 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.bartholomew.id.au/2008/10/21/could-not-start-message-in-windows-scheduler-when-running-batch-file-on-windows-server-2003/</guid>
		<description><![CDATA[I was getting the error “Could Not Start” in Windows Scheduler when trying to run a batch file as a non-administrator even though the user had permission to run as a batch job. The issue was that the permissions on cmd.exe do not allow execution by batch jobs by default, this issue and the solutions [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=77&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>I was getting the error “Could Not Start” in Windows Scheduler when trying to run a batch file as a non-administrator even though the user had permission to run as a batch job.</p>
<p>The issue was that the permissions on cmd.exe do not allow execution by batch jobs by default, this issue and the solutions are described in the following knowledgebase article:</p>
<p><a title="http://support.microsoft.com/?kbid=867466" href="http://support.microsoft.com/?kbid=867466">http://support.microsoft.com/?kbid=867466</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=77&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2008/10/21/could-not-start-message-in-windows-scheduler-when-running-batch-file-on-windows-server-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing SQL Server 2005 On Windows Vista/IIS 7</title>
		<link>http://blog.bartholomew.id.au/2008/10/17/installing-sql-server-2005-on-windows-vistaiis-7/</link>
		<comments>http://blog.bartholomew.id.au/2008/10/17/installing-sql-server-2005-on-windows-vistaiis-7/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 02:46:51 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[dotnet]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.bartholomew.id.au/2008/10/17/installing-sql-server-2005-on-windows-vistaiis-7/</guid>
		<description><![CDATA[While doing a SQL Server 2005 installation on Windows Vista I received a warning during the System Configuration Check stating that IIS was required although I already had IIS installed.   After some searching I found the following knowledgebase article http://support.microsoft.com/kb/920201 which describes how to resolve the warning.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=76&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>While doing a SQL Server 2005 installation on Windows Vista I received a warning during the System Configuration Check stating that IIS was required although I already had IIS installed.</p>
<p><a href="http://blog.bartholomew.id.au/wp-content/uploads/blog.bartholomew.id.au/2008/10/image5.png"></a><img class="alignnone size-full wp-image-100" title="image5" src="http://williamb.files.wordpress.com/2008/10/image5.png?w=501&#038;h=451" alt="image5" width="501" height="451" /> </p>
<p>After some searching I found the following knowledgebase article <a title="http://support.microsoft.com/kb/920201" href="http://support.microsoft.com/kb/920201">http://support.microsoft.com/kb/920201</a> which describes how to resolve the warning.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=76&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2008/10/17/installing-sql-server-2005-on-windows-vistaiis-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>

		<media:content url="http://williamb.files.wordpress.com/2008/10/image5.png" medium="image">
			<media:title type="html">image5</media:title>
		</media:content>
	</item>
		<item>
		<title>Disable System Beep in VMWare</title>
		<link>http://blog.bartholomew.id.au/2008/04/21/disable-system-beep-in-vmware/</link>
		<comments>http://blog.bartholomew.id.au/2008/04/21/disable-system-beep-in-vmware/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 00:14:18 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://wbarthol.wordpress.com/2008/04/21/disable-system-beep-in-vmware/</guid>
		<description><![CDATA[If you use VMWare regularly then you have no doubt suffered from system beeps from you virtual machines, here is how to disable it: http://www.haqthegibson.com/article/40<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=26&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>If you use VMWare regularly then you have no doubt suffered from system beeps from you virtual machines, here is how to disable it:</p>
<p><a title="http://www.haqthegibson.com/article/40" href="http://www.haqthegibson.com/article/40">http://www.haqthegibson.com/article/40</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/williamb.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/williamb.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=26&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2008/04/21/disable-system-beep-in-vmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Update Annoyance</title>
		<link>http://blog.bartholomew.id.au/2008/04/16/windows-update-annoyance/</link>
		<comments>http://blog.bartholomew.id.au/2008/04/16/windows-update-annoyance/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 05:46:42 +0000</pubDate>
		<dc:creator>wbarthol</dc:creator>
				<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://wbarthol.wordpress.com/?p=26</guid>
		<description><![CDATA[One annoyance with Windows Update when installing a large number of updates on a server is updates that prompt you for input. A few times now I&#8217;ve kicked off a large update (for example, the one I&#8217;m doing now has 42 updates), you let it run, come back and the 3rd update is asking for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=24&subd=williamb&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>One annoyance with Windows Update when installing a large number of updates on a server is updates that prompt you for input. A few times now I&#8217;ve kicked off a large update (for example, the one I&#8217;m doing now has 42 updates), you let it run, come back and the 3rd update is asking for input!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/williamb.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/williamb.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/williamb.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/williamb.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/williamb.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/williamb.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/williamb.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/williamb.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/williamb.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/williamb.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/williamb.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/williamb.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bartholomew.id.au&blog=6977030&post=24&subd=williamb&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bartholomew.id.au/2008/04/16/windows-update-annoyance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62b70c9f84b083ad81b566b44ec9a66c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wbarthol</media:title>
		</media:content>
	</item>
	</channel>
</rss>