<?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>thaxor</title>
	<atom:link href="http://thaxor.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thaxor.com</link>
	<description>what?</description>
	<lastBuildDate>Fri, 23 Jul 2010 21:37:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>vbscript ping multiple hosts from windows and log in excel</title>
		<link>http://thaxor.com/2010/07/23/vbscript-ping-multiple-hosts-from-windows-and-log-in-excel/</link>
		<comments>http://thaxor.com/2010/07/23/vbscript-ping-multiple-hosts-from-windows-and-log-in-excel/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 21:37:03 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=176</guid>
		<description><![CDATA[We&#8217;ve been having lots of complaints about sketchy internet on the first floor. It&#8217;s always hard to quantify internet problems, is it bandwidth, poor wireless reception, bad AP/Wireless Card, someone complaining for fun, or an actual outage? In an effort to diagnose it myself with the least amount of work possible I stumbled upon this [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been having lots of complaints about sketchy internet on the first floor. It&#8217;s always hard to quantify internet problems, is it bandwidth, poor wireless reception, bad AP/Wireless Card, someone complaining for fun, or an actual outage?</p>
<p>In an effort to diagnose it myself with the least amount of work possible I stumbled upon <a href="http://www.visualbasicscript.com/m43830-print.aspx">this VB Script</a> which pings a host defined in a text document and outputs it to excel.</p>
<p>I hacked on it a little bit and came up with this:</p>
<p><a href="http://thaxor.com/wp-content/uploads/2010/07/vbscript.jpg"><img class="alignnone size-full wp-image-178" title="vbscript" src="http://thaxor.com/wp-content/uploads/2010/07/vbscript.jpg" alt="vb script output" width="632" height="104" /></a></p>
<pre>Set objExcel = CreateObject("Excel.Application")
objExcel.Visible = True
objExcel.Workbooks.Add
intRow = 2

Set Fso = CreateObject("Scripting.FileSystemObject")
Set InputFile = fso.OpenTextFile("list.txt")

count=0

Do While Not (InputFile.atEndOfStream)
	objExcel.Cells(1, 1+count).Value = "Machine Name"
	objExcel.Cells(1, 2+count).Value = "Results"
	count=count+2
	InputFile.ReadLine
Loop
objExcel.Cells(1, 1+count).Value = "Time"
objExcel.Cells(1, 2+count).Value = "Date"

Do While 1
	Set Fso = CreateObject("Scripting.FileSystemObject")
	Set InputFile = fso.OpenTextFile("list.txt")
	count=0

	Do While Not (InputFile.atEndOfStream)
		HostName = InputFile.ReadLine
		Set WshShell = WScript.CreateObject("WScript.Shell")
		Ping = WshShell.Run("ping -n 1 " &amp; HostName, 0, True)
		objExcel.Cells(intRow, 1+count).Value = HostName
		Select Case Ping
		Case 0
			objExcel.Cells(intRow, 2+count).Value = "On Line"
			objExcel.Cells(intRow, 2+count).Interior.ColorIndex = 4
		Case 1
			objExcel.Cells(intRow, 2+count).Value = "Off Line"
			objExcel.Cells(intRow, 2+count).Interior.ColorIndex = 3
		End Select
		count=count+2
	Loop

	objExcel.Cells(intRow, 1+count).Value = TimeValue(Now())
	objExcel.Cells(intRow, 2+count).Value = date

	intRow = intRow + 1

	WScript.sleep 30000

	objExcel.Rows(1).Select
	objExcel.Selection.Interior.ColorIndex = 19
	objExcel.Selection.Font.ColorIndex = 11
	objExcel.Selection.Font.Bold = True
	objExcel.Cells.EntireColumn.AutoFit
Loop</pre>
<p>All you have to do is create a text document &#8220;list.text&#8221; in the same directory as this vb script and it will layout the excel document for you without any modifications. Only thing you may want to change is the delay/sleep I put in on this line &#8220;WScript.sleep 30000&#8243; which tells it to wait 30 seconds before continuing.</p>
<p>The best part is that I could feasibly give this to a non-technical tenant use it to troubleshoot their connection problems.<br />
The host list would include something like their AP, the Gateway, google.com and another host thats known to be reliable to ping like 4.2.2.2</p>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2010/07/23/vbscript-ping-multiple-hosts-from-windows-and-log-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cabelas customer service is amazing</title>
		<link>http://thaxor.com/2010/06/17/cabelas-customer-service-is-amazing/</link>
		<comments>http://thaxor.com/2010/06/17/cabelas-customer-service-is-amazing/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 23:28:20 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=167</guid>
		<description><![CDATA[I placed an order at Cabela&#8217;s on Tuesday and after completion I didn&#8217;t receive an email. Normally I&#8217;d login to my account to check its status but since they gave me the option of not creating an account and thus not needing another password to remember I took it. (THANK YOU!) To my amazement an actual person [...]]]></description>
			<content:encoded><![CDATA[<p>I placed an order at Cabela&#8217;s on Tuesday and after completion I didn&#8217;t receive an email. Normally I&#8217;d login to my account to check its status but since they gave me the option of not creating an account and thus not needing another password to remember I took it. (THANK YOU!)</p>
<p>To my amazement an actual person answered the phone after just 2 rings. In an age where EVERY company I deal with, both for work and in personal life, makes you navigate a phone menu maze it was astounding. I got my order confirmation number from the guy in under 1 minute. Just another reason Cabela&#8217;s is great and they&#8217;re earning a lifetime customer.</p>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2010/06/17/cabelas-customer-service-is-amazing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>posterous rocks</title>
		<link>http://thaxor.com/2010/06/15/posterous-rocks/</link>
		<comments>http://thaxor.com/2010/06/15/posterous-rocks/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 05:39:43 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=161</guid>
		<description><![CDATA[A few weeks ago I had to setup a blog at work on short notice. Despite the fact that Drupal has pretty much all the blogging features we needed there&#8217;s some stigma around our website. The problem isn&#8217;t the website, it&#8217;s the content and its organization. However rather than try and explain that I elected [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I had to setup a blog at work on short notice. Despite the fact that <a href="http://drupal.org">Drupal</a> has pretty much all the blogging features we needed there&#8217;s some stigma around our website. The problem isn&#8217;t the website, it&#8217;s the content and its organization. However rather than try and explain that I elected to just find another solution.</p>
<p>The last thing I want to do is maintain another service, WordPress/Drupal/sharepoint/blah+blah all mean backups and security lists. So I advocated a hosted solution where I would only be responsible for some initial setup and training then it would be up to content people to do the content stuff. Which is really ~90% of the battle. Good content can overcome poor design, bad technology and terrible graphics.</p>
<p>Jason @ <a href="http://pignite.com">Pignite</a> web design in Chehalis/Lacey/Olympia had told me about <a href="http://posterous.com">Posterous</a> a few weeks before so I went downstairs to pay him a visit. After about 1 hour of nerd talk I was confident Posterous would be perfect. ~2 hours later and I had purchased a domain name from godaddy, setup an account and started hacking on one of the prebuilt themes to fit our red/black/white logo/website branding and we&#8217;re done. Presented it to a group the next day and people were generally satisfied. And there you have <a href="http://thefarmstand.org">http://thefarmstand.org</a> .</p>
<p>We still need some graphics done up but otherwise it&#8217;s mostly complete. A few of my coworkers also took some initiative and finished the site out by adding a list of contributors with profile pictures and bios.</p>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2010/06/15/posterous-rocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SBS 2008 SQL Memory Usage</title>
		<link>http://thaxor.com/2010/02/10/sbs-2008-sql-memory-usage/</link>
		<comments>http://thaxor.com/2010/02/10/sbs-2008-sql-memory-usage/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 22:19:35 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=150</guid>
		<description><![CDATA[We&#8217;re having a custom app developed for us that was having some speed problems after the server had been up for a while. I downloaded Sysinternals Process Explorer http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx and started digging around for problems. (haven&#8217;t mastered performance monitor yet) Tip: if you hover over the sqlservr.exe in Process Explorer it will give you the [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re having a custom app developed for us that was having some speed problems after the server had been up for a while. I downloaded Sysinternals Process Explorer <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx ">http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx </a>and started digging around for problems. (haven&#8217;t mastered performance monitor yet) Tip: if you hover over the sqlservr.exe in Process Explorer it will give you the instance name in a hover balloon so you know which one is eating up memory.</p>
<p><strong>I found the SBSMonitoring instance of SQL using 1.2 GB ram.</strong> For an application that looks relatively simple that amount of ram consumption seemed too high. To fix the problem I did some digging and found these pages:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms178067.aspx">http://msdn.microsoft.com/en-us/library/ms178067.aspx</a><br />
Use Performance Monitor to set the &#8220;correct&#8221; ram usage on the SQL Server instance by using  the SQLServer:Buffer Manager object. Or just guess randomly like me.</p>
<p><a href="http://dogriley.blogspot.com/2005/08/sqlservrexe-high-memory-usage-for.html">http://dogriley.blogspot.com/2005/08/sqlservrexe-high-memory-usage-for.html<br />
</a>Set the maximum ram though CMD prompt<a href="http://dogriley.blogspot.com/2005/08/sqlservrexe-high-memory-usage-for.html"><br />
</a></p>
<p><strong>If you&#8217;ve got SQLServer Management Studio installed you can do it though GUI instead of CMD.</strong></p>
<p>Connect to the instance of SQL, in this case &#8220;ServerName\SBSMONITORING&#8221;<br />
Right click the Database instance and select properties<br />
Then click the Memory section and put in your &#8220;Maximum Server Memory&#8221; (I set mine to 100MB)</p>
<p><a href="http://thaxor.com/wp-content/uploads/2010/02/db_properties.png"><img class="alignnone size-full wp-image-152" title="db_properties" src="http://thaxor.com/wp-content/uploads/2010/02/db_properties.png" alt="db_properties" width="465" height="519" /></a></p>
<p><a href="http://thaxor.com/wp-content/uploads/2010/02/db_memory.png"><img class="alignnone size-full wp-image-151" title="db_memory" src="http://thaxor.com/wp-content/uploads/2010/02/db_memory.png" alt="db_memory" width="473" height="426" /></a></p>
<p><strong>Since our staff uses sharepoint VERY little I decided to limit that instance to 500MB.</strong> Connecting to that with SSMS wasn&#8217;t as easy as the SBSMonitoring instance. If you type in &#8220;ServerName\MICROSOFT##SSEE&#8221; it doesn&#8217;t connect. However this text does work &#8220;\\.\pipe\mssql$microsoft##ssee\sql\query&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2010/02/10/sbs-2008-sql-memory-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>solar project</title>
		<link>http://thaxor.com/2010/01/04/solar-project/</link>
		<comments>http://thaxor.com/2010/01/04/solar-project/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 07:16:11 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=143</guid>
		<description><![CDATA[This is just notes for now, will turn into the real deal soon enough. Update 2: http://www.solarpowerrocks.com/washington/ (long winded and annoying, but has info on incentives) http://solardat.uoregon.edu/NorthwestSolarResourceMaps.html (PNW solar potential) http://www.gaisma.com/en/location/lacey-washington.html (Solar path diagram- they&#8217;re kinda hard to read, but that&#8217;s basically the path the sun follows across the sky from equinox to equinox.) Update [...]]]></description>
			<content:encoded><![CDATA[<p>This is just notes for now, will turn into the real deal soon enough.</p>
<p><strong>Update 2:</strong></p>
<p><a href="http://www.solarpowerrocks.com/washington/">http://www.solarpowerrocks.com/washington/</a><br />
(long winded and annoying, but has info on incentives)</p>
<p><a href="http://solardat.uoregon.edu/NorthwestSolarResourceMaps.html">http://solardat.uoregon.edu/NorthwestSolarResourceMaps.html</a><br />
(PNW solar potential)</p>
<p><a href="http://www.gaisma.com/en/location/lacey-washington.html">http://www.gaisma.com/en/location/lacey-washington.html</a><br />
(Solar path diagram- they&#8217;re kinda hard to read, but that&#8217;s basically the path the sun follows across the sky from equinox to equinox.)</p>
<p><strong>Update 1:</strong></p>
<p><a href="http://www.windsun.com/ChargeControls/ChargeCont.htm">http://www.windsun.com/ChargeControls/ChargeCont.htm</a></p>
<p><a href="http://www.youtube.com/watch?v=Tmb5MB9_TaM"><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">http://www.youtube.com/watch?v=Tmb5MB9_TaM</span></span></a></p>
<p>Sun tracking solar panel w/ arduino<br />
<a class="moz-txt-link-freetext" href="http://www.youtube.com/watch?v=ATnnMFO60y8">http://www.youtube.com/watch?v=ATnnMFO60y8</a></p>
<p>Arduino solar Tracker<br />
<a href="http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1224541956/9">http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1224541956/9</a></p>
<p><a href="http://www.batteryuniversity.com/partone-13.htm">http://www.batteryuniversity.com/partone-13.htm</a></p>
<p><a href="http://www.discovercircuits.com/B/batt-chrg2.htm">http://www.discovercircuits.com/B/batt-chrg2.htm</a></p>
<p><strong>Links:</strong></p>
<p class="MsoNormal"><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">How to make solar power generator<a href="http://www.rain.org/%7Ephilfear/how2solar.html"></p>
<p>http://www.rain.org/~philfear/how2solar.html</a></span></span></p>
<p class="MsoNormal"><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">Solar generator diagram<a href="http://www.thefarm.org/charities/i4at/surv/solargen.htm"></p>
<p>http://www.thefarm.org/charities/i4at/surv/solargen.htm</a></span></span></p>
<p class="MsoNormal"><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">Optomize Panel w/ mirrors<a href="http://www.thefarm.org/charities/i4at/surv/panplus.htm"></p>
<p>http://www.thefarm.org/charities/i4at/surv/panplus.htm</a></span></span></p>
<p class="MsoNormal"><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">Harbor freight solar panel demo<a href="http://www.youtube.com/watch?v=caeEyhJZnTs"></p>
<p>http://www.youtube.com/watch?v=caeEyhJZnTs</a></span></span></p>
<p class="MsoNormal"><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">pt2<a href="http://www.youtube.com/watch?v=N86eHRGRJwQ"></p>
<p>http://www.youtube.com/watch?v=N86eHRGRJwQ</a></span></span></p>
<p class="MsoNormal"><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">Inverter:<a href="http://www.lanescarproducts.com/225-watt-power-inverter-450-watt-peak.html"></p>
<p>http://www.lanescarproducts.com/225-watt-power-inverter-450-watt-peak.html</a></span></span></p>
<p class="MsoNormal"><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">inverter faq:<a href="http://www.donrowe.com/inverters/inverter_faq.html"></p>
<p>http://www.donrowe.com/inverters/inverter_faq.html</a></span></span></p>
<p class="MsoNormal"><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">What are amps, watts, volts and ohms?:<a href="http://science.howstuffworks.com/question501.htm"></p>
<p>http://science.howstuffworks.com/question501.htm</a></span></span></p>
<p><span style="font-family: Arial; font-size: x-small;"><span style="font-size: 10pt; font-family: Arial;">DC Cabling Calculator:<a href="http://www.energymatters.com.au/climate-data/cable-sizing-calculator.php"></p>
<p>http://www.energymatters.com.au/climate-data/cable-sizing-calculator.php</a></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2010/01/04/solar-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connect Mac to Server 2008</title>
		<link>http://thaxor.com/2009/09/30/connect-mac-to-server-2008/</link>
		<comments>http://thaxor.com/2009/09/30/connect-mac-to-server-2008/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 02:31:58 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=140</guid>
		<description><![CDATA[Had problems connecting OSX 10.4.11 to our new 2008 Small Business Server. Lots of stuff on Google but no one place seemed to have the silver bullet so I turned to old reliable, the [H]Forums. Turns out you need to adjust some settings on the domain controller having to do with encryption. Problem: Macs couldn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Had problems connecting OSX 10.4.11 to our new 2008 Small Business Server. Lots of stuff on Google but no one place seemed to have the silver bullet so I turned to old reliable, the <a href="http://hardforums.com/">[H]Forums</a>. Turns out you need to adjust some settings on the domain controller having to do with encryption.</p>
<p>Problem: Macs couldn&#8217;t access shares over SMB<br />
Solution:</p>
<p>Group Policy Management &gt; +Domains &gt; +Domain.Name &gt; +Domain Controllers &gt; Right click Edit Default Domain Controllers Policy</p>
<p>+Policies &gt; +Windows Settings &gt; +Security Settings &gt; +Local Policies &gt; Click User Security Options</p>
<p>Microsoft network client: Digitally sign communications (if server agrees) : ENABLED<br />
Microsoft network server: Digitally sign communications (always) : DISABLED<br />
Microsoft network server: Digitally sign communications (if client agrees) : ENABLED</p>
<p>Start &gt; Run &gt; gpupdate /force (not sure if this step is needed)</p>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2009/09/30/connect-mac-to-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>exchange 2007 sending email from copier</title>
		<link>http://thaxor.com/2009/08/24/exchange-2007-sending-email-from-copier/</link>
		<comments>http://thaxor.com/2009/08/24/exchange-2007-sending-email-from-copier/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 18:40:48 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=138</guid>
		<description><![CDATA[So by default if you&#8217;re running a single server Exchange solution such as SBS then your server is configured not to accept &#8220;anonymous&#8221; connections. In other words, devices that aren&#8217;t authenticated with the domain can&#8217;t send email (with the exception of other Exchange servers. This will stop *nix boxes or multifunction devices like copiers from [...]]]></description>
			<content:encoded><![CDATA[<p>So by default if you&#8217;re running a single server Exchange solution such as SBS then your server is configured not to accept &#8220;anonymous&#8221; connections. In other words, devices that aren&#8217;t authenticated with the domain can&#8217;t send email (with the exception of other Exchange servers. This will stop *nix boxes or multifunction devices like copiers from sending emails.</p>
<p>Run this command from the Exchange management shell to allow anonymous connections.</p>
<blockquote><p>Set-ReceiveConnector -Identity &#8220;Default &lt;insert server name&gt;&#8221; -PermissionGroups &#8220;AnonymousUsers&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2009/08/24/exchange-2007-sending-email-from-copier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>companyweb doesn&#8217;t work in firefox</title>
		<link>http://thaxor.com/2009/08/17/companyweb-doesnt-work-in-firefox/</link>
		<comments>http://thaxor.com/2009/08/17/companyweb-doesnt-work-in-firefox/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 19:32:21 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=134</guid>
		<description><![CDATA[I was trying to access the internal SharePoint site at work and kept getting authentication requests while in FireFox. Some googling turned up the following fix. In the Firefox address bar type &#8220;about:config&#8221; Locate the key called &#8220;network.automatic-ntlm-auth.trusted-uris&#8221; Double click and put in a comma seperated list of all your internal sites. In this case [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to access the internal SharePoint site at work and kept getting authentication requests while in FireFox. Some googling turned up the following fix.</p>
<p>In the Firefox address bar type &#8220;about:config&#8221;<br />
Locate the key called <em>&#8220;network.automatic-ntlm-auth.trusted-uris&#8221;</em></p>
<p>Double click and put in a comma seperated list of all your internal sites. In this case I needed to add &#8220;companyweb&#8221; Didn&#8217;t even need a restart and FF no longer asks me for authentication to the SharePoint site</p>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2009/08/17/companyweb-doesnt-work-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freebsd Samba won&#8217;t start.. silly cups</title>
		<link>http://thaxor.com/2009/07/29/freebsd-samba-wont-start-silly-cups/</link>
		<comments>http://thaxor.com/2009/07/29/freebsd-samba-wont-start-silly-cups/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 17:37:00 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=131</guid>
		<description><![CDATA[I don&#8217;t provide any print services from my FreeBSD box. So when samba refused to start because of a cups connection problem I was pretty confused. [user@test ]$ tail -f /var/log/samba/log.smbd [2009/07/29 10:06:14, 0] printing/print_cups.c:cups_connect(69) Unable to connect to CUPS server localhost:631 &#8211; Connection refused After some google work I found this. For those seeing [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t provide any print services from my FreeBSD box. So when samba refused to start because of a cups connection problem I was pretty confused.</p>
<blockquote><p>[user@test ]$ tail -f /var/log/samba/log.smbd</p>
<p>[2009/07/29 10:06:14, 0] printing/print_cups.c:cups_connect(69)<br />
Unable to connect to CUPS server localhost:631 &#8211; Connection refused</p></blockquote>
<p>After some google work I found this.</p>
<blockquote><p>For those seeing the same error, it&#8217;s apparently solved by adding this<br />
line to [global]:<br />
printcap name = /etc/printcap</p></blockquote>
<p>So a quick trip to &#8220;/usr/local/etc/smb.conf&#8221; and I uncomment:</p>
<p>;     printcap name = /etc/printcap</p>
<p>Then I start samba &#8220;/usr/local/sbin/smbd -D&#8221; and all is good in the world once again.</p>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2009/07/29/freebsd-samba-wont-start-silly-cups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenAudit views</title>
		<link>http://thaxor.com/2009/07/28/openaudit-views/</link>
		<comments>http://thaxor.com/2009/07/28/openaudit-views/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 04:58:06 +0000</pubDate>
		<dc:creator>luke</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://thaxor.com/?p=126</guid>
		<description><![CDATA[Working on my OpenAudit view.  Trying to get down to 1 report that I can use to prioritize software/hardware upgrade paths for all staff. This test is just to pull out Office and Windows verision/keys. Not interested in extra stuff like Visio or Project right now since they&#8217;re special cases. Had to do some hacking [...]]]></description>
			<content:encoded><![CDATA[<p>Working on my OpenAudit view.  Trying to get down to 1 report that I can use to prioritize software/hardware upgrade paths for all staff.</p>
<p>This test is just to pull out Office and Windows verision/keys. Not interested in extra stuff like Visio or Project right now since they&#8217;re special cases.</p>
<p>Had to do some hacking because even though only Outlook from SBS 2003 is installed on a few computers OpenAudit reads it as full Office 2003 messing up the reporting. To fix this on machines that had OEM Office 2000 installs that don&#8217;t register I added the search for <span class="syntax"> <span class="syntax_quote syntax_quote_single">&#8216;Microsoft Office Outlo&#8217;</span></span></p>
<p><span class="syntax"><span class="syntax_alpha syntax_alpha_reservedWord">SELECT s.net_user_name, s.system_name, m1.ms_keys_uuid,<br />
if( left( m1.ms_keys_name, 22 ) = &#8216;Microsoft Office Outlo&#8217;, &#8216;n/a&#8217;, m1.ms_keys_name ) AS OfficeVersion,<br />
if( left( m1.ms_keys_name, 22 ) = &#8216;Microsoft Office Outlo&#8217;, &#8216;n/a&#8217;, m1.ms_keys_cd_key ) AS OfficeKey,<br />
m2.ms_keys_name as WindowsVersion, m2.ms_keys_cd_key as WindowsKey<br />
FROM `system` AS s<br />
INNER JOIN `ms_keys` AS m1 ON s.system_uuid = m1.ms_keys_uuid<br />
LEFT JOIN `ms_keys` AS m2 ON m1.ms_keys_uuid = m2.ms_keys_uuid<br />
WHERE left( m2.ms_keys_key_type, 6 ) = &#8216;window&#8217;<br />
AND (left( m1.ms_keys_name, 22 ) = &#8216;Microsoft Office Profe&#8217;<br />
OR left( m1.ms_keys_name, 22 ) = &#8216;Microsoft Office Small&#8217;<br />
OR left( m1.ms_keys_name, 22 ) = &#8216;Microsoft Office Outlo&#8217;)<br />
GROUP BY m1.ms_keys_uuid</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://thaxor.com/2009/07/28/openaudit-views/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
