<?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>Sentiment &#187; IT</title>
	<atom:link href="http://wouter.shush.com/category/it-stuff/feed" rel="self" type="application/rss+xml" />
	<link>http://wouter.shush.com</link>
	<description>About Life, the Universe, and Everything...</description>
	<lastBuildDate>Tue, 07 Feb 2012 19:27:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Gather IIS logs from your IIS servers</title>
		<link>http://wouter.shush.com/2011/11/gather-iis-logs-from-your-iis-servers?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gather-iis-logs-from-your-iis-servers</link>
		<comments>http://wouter.shush.com/2011/11/gather-iis-logs-from-your-iis-servers#comments</comments>
		<pubDate>Wed, 16 Nov 2011 12:54:48 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Internet Information Server]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[Logfiles]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=389</guid>
		<description><![CDATA[I needed a quick way to gather all IIS logfile locations in several SharePoint farms. IIS has a nasty way to reference to numbers instead of names in their logging directory structure, so you need to watch the Advanced Settings &#8230; <a href="http://wouter.shush.com/2011/11/gather-iis-logs-from-your-iis-servers">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!--:en-->I needed a quick way to gather all IIS logfile locations in several SharePoint farms. IIS has a nasty way to reference to numbers instead of names in their logging directory structure, so you need to watch the Advanced Settings panel in IIS to figure out which logging directory is for which website.</p>
<p>This could be done easier, I thought. And so thought many before me.</p>
<p><!--:--><span id="more-389"></span><!--:en-->This is a slight modification of <a href="http://www.indented.co.uk/index.php/2010/01/12/powershell-iis-and-log-settings/" target="_blank">the script by Chris Dent</a>, because I needed different results to link site name (which <em>IISWebServerSetting</em> saves as <em>ServerComment</em>) to the specific logfile directory (which is a mishmash of <em>LogFileDirectory</em> and <em>Name</em>).</p>
<pre>Function Get-IISLogSetting {
    param(
       [String[]]$Servers = $Env:Computername
    );

    $Servers | %{
        $Server = $_ ;
        Write-Progress "Scaning" $Server;
        $WMI = New-Object Management.ManagementScope("\\$Server\root\MicrosoftIISv2");
        $WMI.Options.Authentication = "PacketPrivacy";
        $Query = New-Object Management.ObjectQuery("SELECT Name, ServerComment, LogFileDirectory, LogFileTruncateSize, LogType, LogFilePeriod FROM IIsWebServerSetting");
        $Searcher = New-Object Management.ManagementObjectSearcher($WMI, $Query);
        Trap [UnauthorizedAccessException] {
              Write-Error "$($Server): Unable to connect or Access is denied";
              continue;
        }
        $result = $Searcher.Get();
        #$Host.EnterNestedPrompt();
        $result | Select-Object @{
            n = 'Server';
            e = { $Server; }
        }, @{
            n = 'Website';
            e = { $_.ServerComment; }
        }, @{
            n = 'Log Path';
            e = { "{0}\{1}" -f $_.LogFileDirectory, $_.Name.Replace("/",""); }
        }
    }
}</pre>
<p>Usage:</p>
<pre>Get-IISLogSetting [-servers server1,server2,server3,...]</pre>
<p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/11/gather-iis-logs-from-your-iis-servers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My paperless office</title>
		<link>http://wouter.shush.com/2011/09/my-paperless-office?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-paperless-office</link>
		<comments>http://wouter.shush.com/2011/09/my-paperless-office#comments</comments>
		<pubDate>Tue, 13 Sep 2011 12:37:15 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Processes & Procedures]]></category>
		<category><![CDATA[brother]]></category>
		<category><![CDATA[mfc]]></category>
		<category><![CDATA[paperless office]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=372</guid>
		<description><![CDATA[Since 2008, I try to live with a nearly paperless office. Sure, I get letters and invoices on paper, but I scan them all in and keep the digital copies as archive, while the paper copies are kept by my &#8230; <a href="http://wouter.shush.com/2011/09/my-paperless-office">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!--:en--><a href="http://wouter.shush.com/wordpress/wp-content/uploads/Colour-Laser-MFC.jpg"><img class="alignleft size-medium wp-image-373" title="Colour Laser MFC" src="http://wouter.shush.com/wordpress/wp-content/uploads/Colour-Laser-MFC-300x222.jpg" alt="" width="300" height="222" /></a>Since 2008, I try to live with a nearly paperless office. Sure, I get letters and invoices on paper, but I scan them all in and keep the digital copies as archive, while the paper copies are kept by my accountant.</p>
<p><!--:--><span id="more-372"></span><!--:en--></p>
<p>I also shy away from automatic payments, and believe that to be in charge of your budget, you cannot have utility companies snipping away from your account on any random date, certainly if you only have a promise or not even a vague clue on how much that snipping would be.</p>
<p>But this requires a good filing system.</p>
<h2>Scanning</h2>
<p>Anyway. The daily cycle is that my wife empties the snail mailbox and dumps envelopes on my desk. I open every envelope, decide if its scan-worthy (invoices, obviously, but sometimes even normal letters. But anything official is a good reason to scan it), place it on the document feeder of the ugly MFC I have in a corner and forget about it.</p>
<h2>Archiving</h2>
<p>What I should do then (but procrastinate, and you shouldn&#8217;t) is fire up Adobe Acrobat and scan the papers in the document feeder double-sided at 150dpi and OCR them. Then, I catalogue each document.</p>
<p>I use Adobe Acrobat because it supports network scanners and can OCR documents. Scanning with Apple&#8217;s Preview gave me documents of 3 MB a page, while Acrobat spits out files of 300kb. And contents of the latter is searchable through Spotlight. Imagine trying to find an invoice based on how much I paid someone. I can.</p>
<p><a href="http://wouter.shush.com/wordpress/wp-content/uploads/archiving.png"><img class="aligncenter size-full wp-image-374" title="Archiving" src="http://wouter.shush.com/wordpress/wp-content/uploads/archiving.png" alt="" width="1290" height="461" /></a>As you can see, I have developed a basic folder structure which I replicate for every fiscal year. The &#8220;clients&#8221; and &#8220;suppliers&#8221; are the busiest folders, and I save each scanned document in the format &#8220;YYYYMMDD &lt;client/supplier name&gt; &lt;Document number&gt;&#8221;.pdf.</p>
<p>Finder automatically arranges files by name, so the files are ordered from january to december. If I need to find invoices of a certain supplier, I just search them using Spotlight. Same goes for invoice numbers.</p>
<p>I use the colored labels within the context menu of Finder to make clear which documents are paid (=green), not paid (= no color) or documents with issues (contested invoices, etc, in red).</p>
<h2>Paying</h2>
<p>Of course, be mindful of paying your invoices. This you can do on a weekly basis, just go through the documents which do not have a color and pay them. Or not.</p>
<h2>The Accountant</h2>
<p>He still likes paper versions of all my documents, so he gets the stack that builds up every month at the paper tray of the scanner.</p>
<p>What I cannot forget is print out my invoices. Sometimes, I&#8217;m not around my printer to do so, so I created a folder &#8220;to print&#8221; on my desktop where I drag files which I have filed and need to print for my accountant. This is something which is particularly important with suppliers and yourself if you are sending out electronic invoices.</p>
<h2>E-invoicing</h2>
<p>Honestly, I love sending PDF&#8217;s to my clients. Saves me a trip to the mailbox, buying stamps, &#8230; But I have found for myself that receiving electronic invoices can be a pain in the neck.</p>
<p>First of all, you risk like me to forget to print out these electronic invoices. So that means sending them by email to my accountant afterwards. Worse is if I forget to file them after receiving an email with an electronic invoice. Next time you will hear about it is through a (hopefully) paper reminder. I try to scan these reminders too if I don&#8217;t pay them right away, since history has proven that even these paper reminders can disappear into the void and my subconscious self.</p>
<p>It turned out that I was quite bad at filing these electronic invoices. The Shell e-invoicing I can handle because they come in batches and are easily downloaded and printed. You can perfectly forget about them for 3 months and then start filing away. But Belgian banks are nowadays offering e-invoicing through Zoomit, which in hindsight is a terror to use. You do get an email when you get a new document, but since the document is behind a pin-code you never bother filing the invoice after receiving the mail. At home you forget about it, and when you do remember, you notice you cannot download all unfiled invoices in a batch. And if you then manage to download them, you&#8217;ll notice the PDF&#8217;s are protected, so you cannot even copy the invoice number to use in your filing system.</p>
<p>Since then, I&#8217;ve cancelled all my e-invoicing. I need to have my invoices on paper anyways for my accountant, so why should I worry about printing my invoices, or having to pay reminder costs because an invoice was left open in Zoomit?</p>
<p>With that in mind, I might even start invoicing clients again by paper invoices.<!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/09/my-paperless-office/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming a Kenwood TK-3101 on a too quick machine</title>
		<link>http://wouter.shush.com/2011/09/programming-a-kenwood-tk-3101-on-a-too-quick-machine?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=programming-a-kenwood-tk-3101-on-a-too-quick-machine</link>
		<comments>http://wouter.shush.com/2011/09/programming-a-kenwood-tk-3101-on-a-too-quick-machine#comments</comments>
		<pubDate>Mon, 12 Sep 2011 15:24:38 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Kenwood]]></category>
		<category><![CDATA[KPG-22]]></category>
		<category><![CDATA[KPG48D]]></category>
		<category><![CDATA[KPG54D]]></category>
		<category><![CDATA[PMR]]></category>
		<category><![CDATA[TK-3101]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=361</guid>
		<description><![CDATA[I have managed to get the typical Kenwood software KPG54D and KPG48D for their TK-3101 transceiver on one of the fastest Apple MacBook Pro&#8216;s currently on the market, running OSX Lion, using VMWare Fusion, Windows XP and DOSBox. This might &#8230; <a href="http://wouter.shush.com/2011/09/programming-a-kenwood-tk-3101-on-a-too-quick-machine">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!--:en--><a href="http://wouter.shush.com/wordpress/wp-content/uploads/2568533.jpg"><img class="alignleft size-full wp-image-363" title="Kenwood TK-3101" src="http://wouter.shush.com/wordpress/wp-content/uploads/2568533.jpg" alt="" width="200" height="200" /></a>I have managed to get the typical Kenwood software KPG54D and KPG48D for their TK-3101 transceiver on one of the fastest <a title="Apple MacBook Pro" href="http://www.apple.com/macbookpro/" target="_blank">Apple MacBook Pro</a>&#8216;s currently on the market, running OSX Lion, using <a title="VMWare Fusion" href="http://www.vmware.com/products/fusion/overview.html" target="_blank">VMWare Fusion</a>, Windows XP and <a title="DOSBox" href="http://www.dosbox.com/" target="_blank">DOSBox</a>. This might also work on any other virtualization environment, such as <a title="Parallels" href="http://www.parallels.com/" target="_blank">Parallels</a> or <a title="VirtualBox" href="http://www.virtualbox.org/" target="_blank">VirtualBox</a>, and even natively on other Windows versions.</p>
<p><!--:--><span id="more-361"></span><!--:en--></p>
<p>For years now, I have had a Kenwood TK-3101 mobile radio which is tuned in to PMR446 frequencies. PMR446 is in Europe a way to use radio communication without the need for a license. If the weather is not to crazy and you are in the open, you should be able to receive PMR46-transmissions from up to 5 kilometer away.</p>
<p>I did not have much use for the radio until I started motorcycling. Riding along, PMR&#8217;s distance of a few kilometer apart is more interesting than the few meters you get out of bluetooth of the few dozens of meters out of a wireless helmet kit. Nice to talk to the person behind you on the buddy seat, but not enough to talk to a fellow rider riding in front or behind you.</p>
<p>My brother started riding too and I bought/won a few Kenwood TK-3101&#8242;s from eBay, intended to using them while riding. I also bought an aftermarket USB serial cable which the seller claimed would work with TK-3101&#8242;s.</p>
<p>Now, everyone on the internet claims 2 things:</p>
<ul>
<li>You need a slow machine to run KPG48D or KPG54D, since newer, faster machines are too quick for the radio to respond in the same speed the software on your fast computer is expecting data;</li>
<li>KPG48D and KPG54D, both native DOS applications, need a pure connection to the serial COM port. USB won&#8217;t cut it.</li>
</ul>
<p>Well, it turns out the above is only partial true.</p>
<p><strong>VMWare Fusion, Windows XP</strong></p>
<p>For starters, I needed something that could understand DOS. I had already VMWare Fusion installed, and set up a 32bit Windows XP Professional installation. Both come right out of the box, so you don&#8217;t have to modify anything here.</p>
<h2>Serial Adapter</h2>
<p><a href="http://wouter.shush.com/wordpress/wp-content/uploads/thumb.php_.jpeg"><img class="alignleft size-full wp-image-362" title="USB to Kenwood serial cable" src="http://wouter.shush.com/wordpress/wp-content/uploads/thumb.php_.jpeg" alt="" width="99" height="99" /></a>The USB to serial adapter I have turns out to be the popular Prolific PL-2030 USB to serial adapter, but in my case it ends in a mini- and microjack connector for Kenwood. Install the driver on the virtual Windows XP, connect the USB cable to your Mac and VMWare Fusion asks you to which machine it should connect the USB adapter. The obvious choice for us is the virtualized Windows XP.</p>
<p>The Kenwood software KPG48D and KPG54D only know of COM1 and COM2 so you need to make sure your USB serial adapter impersonates one of these two ports. Dive into the Windows XP Device Manager to disable one of two COM ports, and set the COM port your USB adapter impersonates to the COM port you just disabled.</p>
<p>The Prolific port will be set at 9500 bps, and this will work.</p>
<h2>Installing DOSBox</h2>
<p>After that, install <a title="DOSBox" href="http://www.dosbox.com/" target="_blank">DOXBox</a>. It is a DOS emulator, which looks just like your regular DOS window, but it isn&#8217;t. For starters, it allows you to slow any program ran in it down on the go.</p>
<p>After installation, you should look in your Start menu to change the Options of DOSBox. This link will open the configuration file of DOSBox. Scroll down to [serial] and make sure that the COM-port you are going to use is set to &#8216;direct&#8217;.</p>
<p>In my case, I was using COM2 so modified the following line:</p>
<blockquote><p>serial2=directserial realport:COM2</p></blockquote>
<p>This instructs DOSBox to let any communication from or to the COM2 port in the DOSBox emulator straight to the COM2 port of Windows XP, which in our case is through a virtualized and physical USB port.</p>
<h2>Making it all work</h2>
<p>Right. Your virtual machine is in place, your COM-port defined and DOSBox installed.</p>
<p>Make sure you have the KPG54D and KPG48D software set up on a easy to reach folder on your Windows XP virtual machine, preferably something like C:\KENWOOD. The reason is that when you start DOSBox, it does not know anything about your C:-drive. You need to mount the directory you wish to use to the emulated C:-drive in the emulator.</p>
<blockquote><p>mount c: c:\kenwood</p></blockquote>
<p>Once you have done this, DOSBox will tell you drive C is mounted to the specified directory. Change to the C: drive and start up KPG54D.</p>
<p>KPG54D will show up. Use the Alt key to activate the menu, and use the arrow keys to navigate to <strong>Setup</strong> where you make sure you have selected the right COM port.</p>
<p>Now we can slow down the emulated version of DOS. Type in<strong> Ctrl+F11</strong> to decrease and <strong>Ctrl+F12</strong> to increase the Cpu speed cycles which are displayed in the Title bar of DOSBox. Once you reach about 190 cycles, you can navigate to the <strong>Program</strong> menu, hook up your Kenwood TK-3101, turn it on and read all channel information from your radio.</p>
<p>UPDATED: Even at 3000 cycles, I managed to read all data.</p>
<h2><a href="http://wouter.shush.com/wordpress/wp-content/uploads/DOSBox-KPG54D.png"><img class="aligncenter size-full wp-image-367" title="DOSBox KPG54D" src="http://wouter.shush.com/wordpress/wp-content/uploads/DOSBox-KPG54D.png" alt="" width="643" height="430" /></a>Troubleshooting</h2>
<p>If for some reason you still get read errors, try to change the CPU cycles or COM port settings in Windows. It should work out of the box at 9500 bps and 3000 cpu cycles, but sometimes you need to power cycle the transceiver and change the speed of COM port or emulated DOS box to get it to work.</p>
<h2>Thoughts</h2>
<p>It&#8217;s probably possible to skip VMWare Fusion and Windows XP with the OSX version of DOSBox, but I will still have to look into that. At least I found a way that allows me to use 1999 technology with 2011 fastest consumer hardware.<!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/09/programming-a-kenwood-tk-3101-on-a-too-quick-machine/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And that is why my dad figures out OSX.</title>
		<link>http://wouter.shush.com/2011/08/and-that-is-why-my-dad-figures-out-osx?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=and-that-is-why-my-dad-figures-out-osx</link>
		<comments>http://wouter.shush.com/2011/08/and-that-is-why-my-dad-figures-out-osx#comments</comments>
		<pubDate>Mon, 29 Aug 2011 21:36:46 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[Lion]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[WIndows]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=342</guid>
		<description><![CDATA[Windows 8 Explorer: &#160; &#8220;Improvements in Windows Explorer&#8221; Mac OSX 10.7 &#8220;Lion&#8221; Finder:]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Windows 8 Explorer:</p>
<p><a href="http://wouter.shush.com/wordpress/wp-content/uploads/7245.Figure-8-Win8-Hero_449B7A36.png"><img class="aligncenter size-full wp-image-343" title="Windows 8 Explorer" src="http://wouter.shush.com/wordpress/wp-content/uploads/7245.Figure-8-Win8-Hero_449B7A36.png" alt="" width="796" height="896" /></a></p>
<p>&nbsp;</p>
<p>&#8220;<a title="Improvements in Windows Explorer" href="http://blogs.msdn.com/b/b8/archive/2011/08/26/improvements-in-windows-explorer.aspx" target="_blank">Improvements in Windows Explorer</a>&#8221;</p>
<p>Mac OSX 10.7 &#8220;Lion&#8221; Finder:</p>
<p><a href="http://wouter.shush.com/wordpress/wp-content/uploads/Screen-Shot-2011-08-29-at-23.31.26.png"><img class="aligncenter size-full wp-image-344" title="Mac OSX 10.7 &quot;Lion&quot; Finder" src="http://wouter.shush.com/wordpress/wp-content/uploads/Screen-Shot-2011-08-29-at-23.31.26.png" alt="" width="1095" height="701" /></a><a href="http://wouter.shush.com/wordpress/wp-content/uploads/Screen-Shot-2011-08-29-at-23.31.26.png"><br />
</a><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2011/08/and-that-is-why-my-dad-figures-out-osx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the &#8220;Access request to a site&#8221; email recipient</title>
		<link>http://wouter.shush.com/2010/10/change-the-access-request-to-a-site-email-recipient?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=change-the-access-request-to-a-site-email-recipient</link>
		<comments>http://wouter.shush.com/2010/10/change-the-access-request-to-a-site-email-recipient#comments</comments>
		<pubDate>Fri, 08 Oct 2010 12:17:37 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=272</guid>
		<description><![CDATA[As a reminder for me, from http://vspug.com/wkkf/2007/05/09/changing-recipient-of-access-request-for-a-site-emails/ By default SharePoint 2007 automatically configures the access requests for a particular site to go to the person who created the site. This is not always what you want and you may find &#8230; <a href="http://wouter.shush.com/2010/10/change-the-access-request-to-a-site-email-recipient">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!--:en-->As a reminder for me, from http://vspug.com/wkkf/2007/05/09/changing-recipient-of-access-request-for-a-site-emails/</p>
<blockquote><p>By default SharePoint 2007 automatically configures the access requests for a particular site to go to the person who created the site. This is not always what you want and you may find yourself receiving  &#8220;Access request for a site&#8221; emails for sites you setup, but don&#8217;t actually manage. You can change this by doing the following:</p>
<ol>
<li>Navigate to the site in question</li>
<li>Navigate to <strong>People and Groups &gt; Site Permissions &gt; Settings &gt; Access Requests</strong></li>
</ol>
<li>Change the <strong>Send all requests for access to the following e-mail address:</strong> to the proper address.</li>
</blockquote>
<p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2010/10/change-the-access-request-to-a-site-email-recipient/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare VCenter 4.1 on Windows Server 2008 x64</title>
		<link>http://wouter.shush.com/2010/09/vmware-vcenter-4-1-on-windows-server-2008-x64?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vmware-vcenter-4-1-on-windows-server-2008-x64</link>
		<comments>http://wouter.shush.com/2010/09/vmware-vcenter-4-1-on-windows-server-2008-x64#comments</comments>
		<pubDate>Sun, 26 Sep 2010 20:32:42 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[VCenter 4.x]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[VSphere 4.x]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[VCenter]]></category>
		<category><![CDATA[VSphere]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=265</guid>
		<description><![CDATA[Since VCenter 4.1, installing on a x64 machine is different. The major difference is that you now need a 64 bit System DSN, but which is not so easy to set up using the normal odbcad32.exe. You need the SQL &#8230; <a href="http://wouter.shush.com/2010/09/vmware-vcenter-4-1-on-windows-server-2008-x64">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Since VCenter 4.1, installing on a x64 machine is different. The major difference is that you now need a 64 bit System DSN, but which is not so easy to set up using the normal odbcad32.exe. You need the SQL Server 2008 Native Client before the VMWare VCenter 4.1 installation recognises your System DSN.</p>
<p><!--:--><!--:nl-->
</p>
<p>Get VCenter 4.1<br />
Get SQL Server 2008 x64<br />
Get SQL Server 2008 x64 native client from http://www.microsoft.com/downloads/en/details.aspx?FamilyId=C6C3E9EF-BA29-4A43-8D69-A2BED18FE73C&#038;displaylang=en<br />
Set up X64 c:\windows\system32\odbcad32.exe system dsn</p>
<p><!--:--><span id="more-265"></span><!--:en--></p>
<ol>
<li>Install Windows Server 2008 x64  - not R2, which is not supported yet;</li>
<li>Install SQL Server 2008 R2 x64 on a Windows Server 2008 R2;</li>
<li>Create a database for VMWare on this SQL Server, and modify the rights and logins accordingly;</li>
<li>Get the Microsoft SQL Server 2008 x64 Native Client from <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyId=C6C3E9EF-BA29-4A43-8D69-A2BED18FE73C&amp;displaylang=en" target="_blank">Microsoft</a> and install it on the machine you want to install VCenter on;</li>
<li>Set up X64 c:\windows\system32\odbcad32.exe system dsn pointing to the created database;</li>
<li>Start SQL Agent service on SQL Server;</li>
<li>Install VCenter 4.1</li>
</ol>
<p><!--:--><!--:nl--></p>
<p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2010/09/vmware-vcenter-4-1-on-windows-server-2008-x64/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error moving mailboxes?</title>
		<link>http://wouter.shush.com/2010/01/error-moving-mailboxes?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=error-moving-mailboxes</link>
		<comments>http://wouter.shush.com/2010/01/error-moving-mailboxes#comments</comments>
		<pubDate>Wed, 20 Jan 2010 12:23:37 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Disabled users]]></category>
		<category><![CDATA[Eventlog]]></category>
		<category><![CDATA[Eventviewer]]></category>
		<category><![CDATA[Move Mailbox]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=243</guid>
		<description><![CDATA[So you&#8217;re cleaning out a storage group, and there are a bunch of mailboxes that you don&#8217;t seem to be able to move? If you check the Eventlog, do you find these events? The MAPI call &#8216;OpenMsgStore&#8217; failed with the &#8230; <a href="http://wouter.shush.com/2010/01/error-moving-mailboxes">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;re cleaning out a storage group, and there are a bunch of mailboxes that you don&#8217;t seem to be able to move?</p>
<p>If you check the Eventlog, do you find these events?</p>
<blockquote><p>The MAPI call &#8216;OpenMsgStore&#8217; failed with the following error:<br />
The information store could not be opened.<br />
The MAPI provider failed.<br />
MAPI 1.0<br />
ID no: 8004011d-0289-00000000</p>
<p>For more information, click http://www.microsoft.com/contentredirect.asp.</p></blockquote>
<blockquote><p>Failed to open mailbox &#8216;/o=CONTOSO/ou=First Administrative Group/cn=Recipients/cn=JohnDoe&#8217; in mailbox store &#8216;/o=CONTOSO/ou=First Administrative Group/cn=Configuration/cn=Servers/cn=ContosoMailServer/cn=Microsoft Private MDB81234567&#8242; on server &#8216;ContosoMailServer&#8217;.<br />
Error: The information store could not be opened.<br />
The MAPI provider failed.<br />
MAPI 1.0<br />
ID no: 8004011d-0289-00000000</p>
<p>For more information, click http://www.microsoft.com/contentredirect.asp.</p></blockquote>
<p>Quickly check if these users are not disabled.  Mailboxes with disabled users as associated account cannot be moved.  The workarounds are to enable the user accounts &#8211; which is not that desireable for your company&#8217;s Security staff &#8211; or assign SELF as the associated account.</p>
<p><a title="KB 821829" href="http://support.microsoft.com/kb/821829" target="_blank">More info at Microsoft</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2010/01/error-moving-mailboxes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lost your disconnected mailboxes on Exchange 2007?</title>
		<link>http://wouter.shush.com/2010/01/lost-your-disconnected-mailboxes-on-exchange-2007?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lost-your-disconnected-mailboxes-on-exchange-2007</link>
		<comments>http://wouter.shush.com/2010/01/lost-your-disconnected-mailboxes-on-exchange-2007#comments</comments>
		<pubDate>Wed, 06 Jan 2010 09:57:13 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Clean-Mailboxdatabase]]></category>
		<category><![CDATA[Connect-Mailbox]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=239</guid>
		<description><![CDATA[So you&#8217;re happily clicking and typing away, and you need to relink a mailbox to another AD user.  So you do the obvious: Go into the Exchange 2007 Management Console (or Shell) Find the mailbox in the Recipient Configuration Write &#8230; <a href="http://wouter.shush.com/2010/01/lost-your-disconnected-mailboxes-on-exchange-2007">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;re happily clicking and typing away, and you need to relink a mailbox to another AD user.  So you do the obvious:</p>
<ul>
<li>Go into the Exchange 2007 Management Console (or Shell)</li>
<li>Find the mailbox in the Recipient Configuration</li>
<li>Write down the server the mailbox is stored</li>
<li>Disconnect the mailbox from the original AD user</li>
<li>Get a list of disconnected mailboxes on the server you wrote down</li>
</ul>
<p>Only to find that the mailbox is not listed. Panic!</p>
<p>Did you forget to check the Deletion Settings on the mailbox store? No, on second glance they are the default 30 days, so the disconnected mailbox should still be available.</p>
<p>But, wait&#8230; On Exchange 2003, didn&#8217;t you run the Cleanup Agent to find disconnected mailboxes?</p>
<p>No such a thing in Exchange 2007, or is there?</p>
<p>Yes there is.  <a title="Clean-MailboxDatabase" href="http://technet.microsoft.com/en-us/library/bb124076%28EXCHG.80%29.aspx" target="_blank">Clean-Mailboxdatabase</a> is your cmdlet and friend.  Run Clean-Mailboxdatabase &lt;databasename&gt; in an Exchange Management Shell and reload your list of disconnected mailboxes.</p>
<p>You saved the day!  Or at least Exchange saved your job ;).</p>
<p>So next time:</p>
<ol>
<li><a title="Get-Mailbox" href="http://technet.microsoft.com/en-us/library/bb676556%28EXCHG.80%29.aspx" target="_blank">Get-Mailbox</a> john@contoso.com | <a title="Format-Table" href="http://technet.microsoft.com/en-us/library/dd315255.aspx" target="_blank">Format-Table</a> Name, Database</li>
<li><a title="Disable-mailbox" href="http://technet.microsoft.com/en-us/library/aa997210%28EXCHG.80%29.aspx" target="_blank">Disable-Mailbox</a> john@contoso.com</li>
<li><a title="Clean-MailboxDatabase" href="http://technet.microsoft.com/en-us/library/bb124076%28EXCHG.80%29.aspx" target="_blank">Clean-MailboxDatabase</a> &#8220;Mailbox Server\Mailbox Database Storagegroup Name&#8221;</li>
<li><a title="Connect-Mailbox" href="http://technet.microsoft.com/en-us/library/aa997878%28EXCHG.80%29.aspx" target="_blank">Connect-Mailbox</a> -Database &#8220;Mailbox Database&#8221; -Identity &#8220;John Peoples&#8221;   -User john@fabrikam.com</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2010/01/lost-your-disconnected-mailboxes-on-exchange-2007/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlueBear Kodiak 0.0.3 out</title>
		<link>http://wouter.shush.com/2009/05/bluebear-kodiak-003-out?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bluebear-kodiak-003-out</link>
		<comments>http://wouter.shush.com/2009/05/bluebear-kodiak-003-out#comments</comments>
		<pubDate>Tue, 19 May 2009 19:38:21 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[bluebear]]></category>
		<category><![CDATA[kodiak]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/?p=220</guid>
		<description><![CDATA[Today, I received my invitation to BlueBear&#8217;s new Kodiak 0.0.3.  Kodiak is a virtual infrastructure management tool created in Adobe&#8217;s AIR and should be multi-platform in both server and client technology.  Currently, any AIR platform is supported as client platform, &#8230; <a href="http://wouter.shush.com/2009/05/bluebear-kodiak-003-out">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Today, I received my invitation to BlueBear&#8217;s new <a title="BlueBear Kodiak" href="http://bluebear.org/kodiak/" target="_blank">Kodiak 0.0.3</a>.  Kodiak is a virtual infrastructure management tool created in <a title="Adobe AIR" href="http://www.adobe.com/products/air/" target="_blank">Adobe&#8217;s AIR</a> and should be multi-platform in both server and client technology.  Currently, any AIR platform is supported as client platform, and from Kodiak you can manage VMware ESX, ESXi and Server products.  BlueBear claims that Xen support is underway, and HyperV should happen in the future too.</p>
<p>I&#8217;ve been trying Kodiak now for a few hours on OS X and although it looks pretty and helps me visualize my test environment running on <a title="VMware Server 2" href="http://www.vmware.com/download/server/" target="_blank">VMware Server 2</a>, I am still unable to use the console.  <a title="Kodiak documentation" href="http://bluebear.org/wiki/display/docs/Home" target="_blank">Kodiak&#8217;s documentation</a> is sparse, which is not helped by it&#8217;s current apply-and-you-might-ever-get-allowed-to-the-beta program.  But I hear positive comments when running it on Windows, so if you want to try Kodiak out, don&#8217;t wait and head over to <a title="BlueBear Kodiak" href="http://bluebear.org/kodiak/" target="_blank">their website</a> to register yourself into the beta program.</p>
<div id="attachment_221" class="wp-caption aligncenter" style="width: 310px"><a href="http://wouter.shush.com/wordpress/wp-content/uploads/picture-3.png"><img class="size-medium wp-image-221" title="BlueBear Kodiak 0.0.3 screenshot" src="http://wouter.shush.com/wordpress/wp-content/uploads/picture-3-300x174.png" alt="BlueBear Kodiak 0.0.3 screenshot" width="300" height="174" /></a><p class="wp-caption-text">BlueBear Kodiak 0.0.3 screenshot</p></div>
<p>One small reminder: if you want to connect to your VMware host (let it be ESX, ESXi or VMware Server 2), make sure you use the same server address as you currently use in your VMware Infrastructure Client: <em>servername-or-ip:portnumber</em>.  It saves you the humiliation of running into error #2032, which actually means that AIR and Kodiak is not able to connect to your VMware environment.</p>
<p>And I want my console to work!</p>
<p><strong>Update: </strong>Bluebear came out with 0.0.4 of their Kodiak management software, with some SSL modifications that would make working with self signed certificates much easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2009/05/bluebear-kodiak-003-out/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows clients forget their domain after you reset their snapshot?</title>
		<link>http://wouter.shush.com/2009/03/windows-clients-forget-their-domain-after-you-reset-their-snapshot?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-clients-forget-their-domain-after-you-reset-their-snapshot</link>
		<comments>http://wouter.shush.com/2009/03/windows-clients-forget-their-domain-after-you-reset-their-snapshot#comments</comments>
		<pubDate>Mon, 30 Mar 2009 10:00:05 +0000</pubDate>
		<dc:creator>wooter</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[snapshot]]></category>

		<guid isPermaLink="false">http://wouter.shush.com/2009/03/windows-clients-forget-their-domain-after-you-reset-their-snapshot</guid>
		<description><![CDATA[Ever run into a problem where you revert a domain member server or Windows XP domain client toa previously taken snapshot, and when trying to log on the domain, the logon fails? I did in 2007, and never really thought &#8230; <a href="http://wouter.shush.com/2009/03/windows-clients-forget-their-domain-after-you-reset-their-snapshot">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!--:en-->Ever run into a problem where you revert a domain member server or Windows XP domain client toa previously taken snapshot, and when trying to log on the domain, the logon fails?</p>
<p>I did in 2007, and never really thought of it until I ran into <a href="http://kb.vmware.com/selfservice/viewContent.do?externalId=1006764&amp;sliceId=1" target="_blank">the following article 1006764 on the VMWare knowledge base</a>.</p>
<p>The cause is very simple, and so is the solution: Member servers and clients have, just like users, accounts with passwords.  If set up like this, these passwords are reset every set period.  If you revert a machine back to an old snapshot, chances are that the password stored in the snapshot is not up to date with the password stored in Active Directory, and hence, Active Directory does not allow the machine to log on again.<!--:--><!--:nl-->
<p>Ever run into a problem where you revert a domain member server or Windows XP domain client toa previously taken snapshot, and when trying to log on the domain, the logon fails?</p>
<p>I did in 2007, and never really thought of it until I ran into the following article on the VMWare knowledge base: http://kb.vmware.com/selfservice/viewContent.do?externalId=1006764&#038;sliceId=1</p>
<p>The cause is very simple, and so is the solution: Member servers and clients have, just like users, accounts with passwords.  If set up like this, these passwords are reset every set period.  If you revert a machine back to an old snapshot, chances are that the password stored in the snapshot is not up to date with the password stored in Active Directory, and hence, Active Directory does not allow the machine to log on again.</p>
<p><!--:--></p>
]]></content:encoded>
			<wfw:commentRss>http://wouter.shush.com/2009/03/windows-clients-forget-their-domain-after-you-reset-their-snapshot/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: wouter.shush.com @ 2012-02-08 01:46:41 -->
