<?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>ben.hamilton.id.au &#187; Howto</title>
	<atom:link href="http://ben.hamilton.id.au/tag/howto/feed" rel="self" type="application/rss+xml" />
	<link>http://ben.hamilton.id.au</link>
	<description>Getting your act together with CRM</description>
	<lastBuildDate>Sun, 22 Aug 2010 11:30:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Using registry values in scripts</title>
		<link>http://ben.hamilton.id.au/microsoft/using-registry-values-in-scripts</link>
		<comments>http://ben.hamilton.id.au/microsoft/using-registry-values-in-scripts#comments</comments>
		<pubDate>Sun, 22 Aug 2010 11:30:10 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Command]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=265</guid>
		<description><![CDATA[I&#8217;m often writing scripts to do stuff. It makes my job easier. I&#8217;ve often wanted to be able to script the discovery of registry values in the Windows Registry. Thus here is a short example on using the vanilla windows command line to find the value of a Windows registry key. From my testing these [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m often writing scripts to do stuff. It makes my job easier. I&#8217;ve often wanted to be able to script the discovery of registry values in the Windows Registry.</p>

<p>Thus here is a short example on using the vanilla windows command line to find the value of a Windows registry key. From my testing these commands are all present by default in Windows XP, Vista, 7, Server 2003 and Server 2008.</p>

<p>Assume we want to find the Microsoft Windows Common Files directory. Using <code>Regedit</code> we can find that here: <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\CommonFilesDir</code></p>

<p>So the first thing we want to do is query the registry, we do that with the command line tool <code>reg</code> as follows (<a href="http://www.petri.co.il/reg_command_in_windows_xp.htm" title="Read up on how to use the reg command for more than just a query">more about reg</a>):</p>

<p><code>reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion /v CommonFilesDir &gt;1.tmp</code></p>

<p>This will spit out the following into the text file <code>1.tmp</code>:</p>

<hr />

<pre><code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion    
CommonFilesDir    REG_SZ    C:\Program Files\Common Files
</code></pre>

<hr />

<p>However, this isn&#8217;t of much use in a script. Really, we just want the value of the folder itself, not all the extra info.</p>

<p>So what we do is use the command line tool &#8216;findstr&#8217; which essentially is a windows regex tool (<a href="http://www.netexpertise.eu/en/windows/findstr-an-alternative-to-grep.html" title="Read up on findstr - regex goodness on windows by default">more about findstr</a>). We use it to do this:</p>

<p><code>findstr /r REG_SZ 1.tmp &gt;2.tmp</code></p>

<p>This spits out just the line that contains REG_SZ and puts it into the text file <code>2.tmp</code>. Now that we&#8217;ve just just the one line, we want to strip the first 32 characters off it. We do this by first setting it as an enviroment variale and then trimming it down using the following two commands (<a href="http://www.computing.net/answers/windows-2000/use-file-contents-to-set-variables/63174.html" title="Using file contents to set enviroment variables">more on set</a>):</p>

<p><code>set /p CommFiles=&lt;2.tmp</code></p>

<p>And then we shorten that (<a href="http://www.dostips.com/DtTipsStringManipulation.php" title="Read up on using set to trim environment variables">more on trimming</a>):</p>

<p><code>set CommFiles=%CommFiles:~32%</code></p>

<p>Then we can echo the result to the screen using:</p>

<p><code>Echo The Common Files directory is: %CommFiles%</code></p>

<p>And here it is all in one easy to copy set:</p>

<hr />

<pre><code>Set CommFiles=C:\Temp  
reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion /v CommonFilesDir &gt;1.tmp  
findstr /r REG_SZ 1.tmp &gt;2.tmp  
set /p CommFiles=&lt;2.tmp  
set CommFiles=%CommFiles:~32%  
Echo The Common Files directory is: %CommFiles%
</code></pre>

<hr />

<p>With a little editing I&#8217;m sure that you can turn this to your own uses, pulling out the value of registry keys and using them in script files. You&#8217;re not limited to this registry key, you can use it to access all sorts of registry keys.</p>

<p>Please do tell me what uses you put this to.</p>

<p>Enjoy.</p>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fmicrosoft%2Fusing-registry-values-in-scripts&amp;via=benhamilton&amp;text=Using+registry+values+in+scripts&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/microsoft/using-registry-values-in-scripts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding user SID</title>
		<link>http://ben.hamilton.id.au/microsoft/finding-user-sid</link>
		<comments>http://ben.hamilton.id.au/microsoft/finding-user-sid#comments</comments>
		<pubDate>Sun, 22 Aug 2010 10:13:07 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[SID]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=261</guid>
		<description><![CDATA[Occasionally you may want to know the SID of a windows user. If that made no sense to you, read no futher, this snippet is not for you. Open up REGEDIT and browse to this key: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList Here you will find a list of SID&#8217;s, under each is a subkey containing the name of [...]]]></description>
			<content:encoded><![CDATA[<p>Occasionally you may want to know the <a href="http://encyclopedia.thefreedictionary.com/Security+Identifier" title="Read a definition of what the SID is">SID</a> of a windows user. If that made no sense to you, read no futher, this snippet is not for you.</p>

<p>Open up REGEDIT and browse to this key:</p>

<p><code>HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList</code></p>

<p>Here you will find a list of SID&#8217;s, under each is a subkey containing the name of the user it is associated with. Run through them until you find the username you&#8217;re looking for and bingo, it&#8217;s parent key is that users SID.</p>

<p>Found via <a href="http://www.petri.co.il/forums/showthread.php?t=21332\" title="petri.co.il is a wealth of tech goodness">petri.co.il</a></p>

<p><a href="https://secure.wikimedia.org/wikipedia/en/wiki/Security_Identifier" title="More explaination of SID's, decoding them etc">Bonus link</a></p>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fmicrosoft%2Ffinding-user-sid&amp;via=benhamilton&amp;text=Howto+find+the+SID+of+windows+users&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/microsoft/finding-user-sid/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up WriteMonkey on WordPress</title>
		<link>http://ben.hamilton.id.au/how-to/setting-up-writemonkey-on-wordpress</link>
		<comments>http://ben.hamilton.id.au/how-to/setting-up-writemonkey-on-wordpress#comments</comments>
		<pubDate>Sun, 25 Jul 2010 12:15:03 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Markdown]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WriteMonkey]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=235</guid>
		<description><![CDATA[This post has been written using WriteMonkey as the text editor. Not only that but I&#8217;ve utilised Markdown as the method of text mark-up. All of this has been achieved using WordPress as my CMS, Firefox as my browser and a Firefox plug-in called It&#8217;s All Text. My first impressions are actually good. Although its [...]]]></description>
			<content:encoded><![CDATA[<p>This post has been written using <a href="http://writemonkey.com/" title="Zenware for full screen distraction free writing">WriteMonkey</a> as the text editor. Not only that but I&#8217;ve utilised Markdown as the method of text mark-up. All of this has been achieved using WordPress as my CMS, Firefox as my browser and a Firefox plug-in called It&#8217;s All Text.</p>

<p>My first impressions are actually good. Although its taken a little setup, I&#8217;m actually happy with the result. You see, using WriteMonkey as a text editor is, well, gorgeous. The screen is emptied of all distractions. With typewriter mode enabled, it is a pure joy to use.</p>

<p>Now to get this to work I did the following:</p>

<ul>
<li><a href="http://digwp.com/2010/06/blogging-in-markdown/" title="Article by Chris Coyier on blogging in WordPress with Markdown">disabled the visual editor</a> in <a href="http://wordpress.org" title="The official WordPress site">WordPress</a>, </li>
<li>installed the <a href="https://addons.mozilla.org/en-US/firefox/addon/4125/contribute/roadblock/?src=addondetail" title="Firefox add-on page for It's All Text">It&#8217;s All Text</a> Firefox plug-in,</li>
<li>installed the <a href="http://michelf.com/projects/php-markdown/" title="Download page for PHP Markdown">PHP Markdown</a> <a href="http://wordpress.org/support/topic/160189" title="Help getting Markdown working in WordPress">plug-in for WordPress</a>,</li>
<li>started writing :)</li>
</ul>

<p>Not so hard is it? Actually the writing bit is the hardest. But you knew that&#8230;</p>

<p>What it now means is that when I begin writing a new post in WordPress, I simple click the little edit button that appears, and WriteMonkey fires up, comes to the foreground and I start writing. To finish up, I press CTRL-Q and I click YES I do want to save it.</p>

<p>So I can whole-heartedly say that it&#8217;s worth the effort to setup <a href="http://writemonkey.com/" title="Zenware for full screen distraction free writing">WriteMonkey</a>. Go do it! It feels good.</p>

<p>Of course, now the hard bit is about to start, that is, do more writing.</p>

<p>PS: Only found out about WriteMonkey via <a href="http://www.downloadsquad.com/2010/07/23/writemonkey-0-9-9-0-final-version-released-full-screen-text-lov/" title="These guys are on the bleeding edge of shiny">DownloadSquad</a></p>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fhow-to%2Fsetting-up-writemonkey-on-wordpress&amp;via=benhamilton&amp;text=Setting+up+WriteMonkey+on+WordPress&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/how-to/setting-up-writemonkey-on-wordpress/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to: Clear Outlook Location list</title>
		<link>http://ben.hamilton.id.au/how-to/how-to-clear-outlook-location-list</link>
		<comments>http://ben.hamilton.id.au/how-to/how-to-clear-outlook-location-list#comments</comments>
		<pubDate>Thu, 22 Jul 2010 22:38:36 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[ACT!]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=230</guid>
		<description><![CDATA[Had an issue yesterday where we wanted to remove some entires from Outlooks location list. Huh? When you book an appointment in Microsoft Outlooks calendar you can specify a location. If ACT! by Sage has a Resource that is designated as a location, when ACT! sync&#8217;s with Outlook that location list gets filled in. So, [...]]]></description>
			<content:encoded><![CDATA[<p>Had an issue yesterday where we wanted to remove some entires from Outlooks location list.</p>

<p>Huh? When you book an appointment in Microsoft Outlooks calendar you can specify a location. If ACT! by Sage has a Resource that is designated as a location, when ACT! sync&#8217;s with Outlook that location list gets filled in.</p>

<p>So, we wanted to edit that list in Outlook. Well, you can&#8217;t.</p>

<p>But you can clear the list completely, which for our purpose suited us fine, it&#8217;ll get repopulated with the correct values.</p>

<p>Thus, without further ado, here is how you do this:</p>

<p>Open up Regedit and remove the value from this key:</p>

<pre><code>HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Preferences\LocationMRU
</code></pre>

<p>Note that you will need to replace the version number for your version of Microsoft Office (14.0 = MSO2010, 12.0 = MSO2007).</p>

<p>Hat tip to <a title="superuser - delete locations from Outlook" href="http://superuser.com/questions/41242/how-to-delete-locations-from-the-location-history-when-creating-a-new-appointment">superuser.com</a>.</p>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fhow-to%2Fhow-to-clear-outlook-location-list&amp;via=benhamilton&amp;text=How+to%3A+Clear+Outlook+Location+list&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/how-to/how-to-clear-outlook-location-list/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: discover open files on Microsoft Server</title>
		<link>http://ben.hamilton.id.au/how-to/how-to-discover-open-files-on-microsft-server</link>
		<comments>http://ben.hamilton.id.au/how-to/how-to-discover-open-files-on-microsft-server#comments</comments>
		<pubDate>Thu, 22 Jul 2010 06:20:22 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[Files]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=225</guid>
		<description><![CDATA[So you&#8217;re working on a Microsoft Server machine, merrily getting stuff done, when you get a message saying that it can&#8217;t continue because files are open. Sound familiar? It happens to me often. Here is how I find out which files are open and who has them open: If you&#8217;re working on a Microsoft Server [...]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;re working on a Microsoft Server machine, merrily getting stuff done, when you get a message saying that it can&#8217;t continue because files are open. Sound familiar? It happens to me often.</p>

<p>Here is how I find out which files are open and who has them open:</p>

<p>If you&#8217;re working on a Microsoft Server 2008,
<strong>Start </strong>| <strong>Administrative Tools</strong> | <strong>Share and Storage Management</strong> | <strong>Manage Open Files&#8230;</strong></p>

<p>If you&#8217;re working on a Microsoft Server 2003,
<strong>Start </strong>| <em>right click</em> <strong>My Computer</strong> | <strong>Manage </strong>|<strong> Computer management (local)</strong> | <strong>System Tools</strong> | <strong>Shared Folders</strong> |<strong> Open Files</strong></p>

<p>Makes it a great deal easier, now you know which file needs closing, and who you need ask to do it.</p>

<p>Hope that helps you. Anything you&#8217;ve found helpful? Let me know in the comments.</p>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fhow-to%2Fhow-to-discover-open-files-on-microsft-server&amp;via=benhamilton&amp;text=How+to%3A+discover+open+files+on+Microsoft+Server&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/how-to/how-to-discover-open-files-on-microsft-server/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Port Listening</title>
		<link>http://ben.hamilton.id.au/microsoft/port-listening</link>
		<comments>http://ben.hamilton.id.au/microsoft/port-listening#comments</comments>
		<pubDate>Mon, 13 Oct 2008 00:08:38 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Utility]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=84</guid>
		<description><![CDATA[If like me you need to test if network traffic is getting through a firewall then this tool will be of use to you as well. You run it on the target/client system, specify which port you want it to listen on, a response message and click on listen. Able to listen on multiple ports [...]]]></description>
			<content:encoded><![CDATA[<p>If like me you need to test if network traffic is getting through a firewall then this tool will be of use to you as well.</p>

<p>You run it on the target/client system, specify which port you want it to listen on, a response message and click on listen. Able to listen on multiple ports even.</p>

<p><a href="http://www.allscoop.com/tcp-listen.php">Get listen from here</a>.</p>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fmicrosoft%2Fport-listening&amp;via=benhamilton&amp;text=Port+Listening&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/microsoft/port-listening/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resurrecting Terminal Server</title>
		<link>http://ben.hamilton.id.au/microsoft/resurrecting-terminal-server</link>
		<comments>http://ben.hamilton.id.au/microsoft/resurrecting-terminal-server#comments</comments>
		<pubDate>Tue, 16 Sep 2008 08:17:34 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=52</guid>
		<description><![CDATA[A Terminal Server I was attempting to work on today gave quite a lot of grief. The first hint was that users were unable to login to it. When I then tried to login, it gave an error message of: Login Failed You are connected to the remote computer. Howerver, an error occured while an [...]]]></description>
			<content:encoded><![CDATA[<p>A Terminal Server I was attempting to work on today gave quite a lot of grief. The first hint was that users were unable to login to it. When I then tried to login, it gave an error message of:
<code>Login Failed</code><br />
<code>You are connected to the remote computer. Howerver, an error occured while an initial user program was starting, so you are being logged off. Contact the system administrator for assistance.</code></p>

<p>So I rebooted it remotely using the command <code>shutdown /r /f /m &#92;TSERVER1</code> while having a continuous ping running, from the ping results I could see it go down, come back up. However on trying to login now, after entering a username/password I could see the logon script run, but no taskbar, start button appeared. Right clicking the desktop didn&#8217;t give any menu.</p>

<p>I could however navigate to the hard drive on that machine by pointing <strong>My Computer</strong> to <code>&#92;tserver1\c$\</code>.</p>

<p>Copying some of the tools at <a href="http://live.sysinternals.com">live.sysinternals.com</a> I was able to view the event logs, no issues apparent, check status of various services, all ok.</p>

<p>So I connected via RDP once more (<code>mstsc /v:tserver1 /console</code>) and viewed the background (still no start button or taskbar) and pressed <code>CTRL-ALT-END</code> which allowed me to start the Task Manager. This allowed me to run a new task (<code>File | New tas (run...)</code>) so now I was able to copy the sysinternals <code>autoruns</code> program to the root of the C: partition, and run it from the affected terminal server. Running <code>c:\windows\explorer.exe</code> didn&#8217;t work tho.</p>

<p>Delving into it&#8217;s depths I found an entry for <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Explorer</code> &#8211; renaming this entry then allowed Explorer to run. So I&#8217;ve exported the key (in case I do want it sometime) and then deleted it.</p>

<p>Rebooted the server once more and bingo, it lets everyone log in. Very satisfying after a couple of hours of mad hair tearing.</p>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fmicrosoft%2Fresurrecting-terminal-server&amp;via=benhamilton&amp;text=Resurrecting+Terminal+Server&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/microsoft/resurrecting-terminal-server/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to remove unwanted software</title>
		<link>http://ben.hamilton.id.au/microsoft/how-to-remove-unwanted-software</link>
		<comments>http://ben.hamilton.id.au/microsoft/how-to-remove-unwanted-software#comments</comments>
		<pubDate>Sat, 13 Sep 2008 04:16:55 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Symantec]]></category>
		<category><![CDATA[Uninstall]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=45</guid>
		<description><![CDATA[Like Symantec Anti-virus. At a friends house right now, and trying to uninstall the product, it won&#8217;t &#8211; it keeps saying that something else wants to keep it there. Very unhelpful error message by they way (if Symantec is listening). Found a great page that explains how to remove unwanted software (surprise, they also trying [...]]]></description>
			<content:encoded><![CDATA[<p>Like Symantec Anti-virus. At a friends house right now, and trying to uninstall the product, it won&#8217;t &#8211; it keeps saying that something else wants to keep it there. Very unhelpful error message by the<span style="text-decoration: line-through;">y</span> way (if Symantec is listening).</p>

<p>Found a great page that explains how to remove unwanted software (surprise, they also trying to remove Symantec&#8230; hmmm&#8230;.).</p>

<p>Here it is at <a href="http://it.toolbox.com/blogs/locutus/how-to-silently-and-remotely-remove-symantec-antivirus-14625">it.toolbox.com/blogs/locutus</a>.</p>

<p>In a nutshell this is how:</p>

<ol>
    <li>Open regedit, browse to HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\ WINDOWS\CURRENT VERSION\UNINSTALL</li>
    <li>Then do a search for <code>Symantec</code> (or the name of the software you want to be rid of)</li>
    <li>Copy the value of <code>UninstallString</code></li>
    <li>Open a command prompt (Start | Run | CMD) and paste the UninstallString here and add <code>REMOVE=ALL</code> to the end of that string, press enter.
It will look <em>similar</em> to this: <code>MsiExec.exe /X{DBA4DB9D-EE51-4944-A419-98AB1F1249C8} REMOVE=ALL</code></li>
    <li>Done.</li>
</ol>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fmicrosoft%2Fhow-to-remove-unwanted-software&amp;via=benhamilton&amp;text=How+to+remove+unwanted+software&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/microsoft/how-to-remove-unwanted-software/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Terminal Server FTP without admin rights</title>
		<link>http://ben.hamilton.id.au/microsoft/terminal-server-ftp-without-admin-rights</link>
		<comments>http://ben.hamilton.id.au/microsoft/terminal-server-ftp-without-admin-rights#comments</comments>
		<pubDate>Wed, 09 Jul 2008 08:52:13 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[Howto]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=30</guid>
		<description><![CDATA[I&#8217;ve just found myself needing to FTP some files to a clients site. The file are in the data directory on our company&#8217;s terminal server (which I don&#8217;t have admin rights on) and I need them on a SQL Server for a client. I do have access to a FTP Server but the first step [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just found myself needing to FTP some files to a clients site. The file are in the data directory on our company&#8217;s terminal server (which I don&#8217;t have admin rights on) and I need them on a SQL Server for a client.</p>

<p>I do have access to a FTP Server but the first step is to get the files up to the FTP Server then download them to the client site. Yes, I could use the command line tool <code>ftp</code> but that is just too painful at this time of day (read: night).</p>

<p>Thus a quick google turned up this: <a href="http://www.anyclient.com/applet.html">AnyClient &#8211; The Free No-Install FTP Client</a>.</p>

<p>It is a java applet. What a lifesaver, nice gui (similar to Filezilla, which is my choice of FTP clients). Anyway, AnyClient is quick and easy to use. Just thought I&#8217;d share the find.</p>

<p>Oh, and of course, no admin rights needed, as there is no program installing. Yay!</p>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fmicrosoft%2Fterminal-server-ftp-without-admin-rights&amp;via=benhamilton&amp;text=Terminal+Server+FTP+without+admin+rights&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/microsoft/terminal-server-ftp-without-admin-rights/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resetting password on Palm T3 PDA</title>
		<link>http://ben.hamilton.id.au/how-to/resetting-password-on-palm-t3-pda</link>
		<comments>http://ben.hamilton.id.au/how-to/resetting-password-on-palm-t3-pda#comments</comments>
		<pubDate>Wed, 07 May 2008 10:15:58 +0000</pubDate>
		<dc:creator>Ben Hamilton</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[T3]]></category>

		<guid isPermaLink="false">http://ben.hamilton.id.au/?p=27</guid>
		<description><![CDATA[My old beloved Palm T3 PDA, which in my humble opinion is possible the best PDA I&#8217;ve ever used, is now used by my daugher. She set the system password&#8230; and forgot it&#8230; oops. Thusly, to reset it to factory defaults, and in the process, lose ALL saved data on it, you need to press [...]]]></description>
			<content:encoded><![CDATA[<p>My old beloved Palm T3 PDA, which in my humble opinion is possible the best PDA I&#8217;ve ever used, is now used by my daugher. She set the system password&#8230; and forgot it&#8230; oops.</p>

<p>Thusly, to reset it to factory defaults, and in the process, lose ALL saved data on it, you need to press and hold the POWER button, while pressing the reset button (hidden on the back). Once the &#8220;Palm Powered&#8221; logo appears, release the POWER button, say YES to erasing all the data, and Bob&#8217;s your uncle, all reset to factory defaults.</p>

<p>Unfortunately the Palm doesn&#8217;t have a phone in it, like the company provided PDA, hence why I don&#8217;t use the palm any longer.</p>
<div class="tw_button" style=""><a href="http://twitter.com/share?url=http%3A%2F%2Fben.hamilton.id.au%2Fhow-to%2Fresetting-password-on-palm-t3-pda&amp;via=benhamilton&amp;text=Resetting+password+on+Palm+T3+PDA&amp;related=benhamilton:Ben+gets+your+act+together+with+crm&amp;lang=en&amp;count=vertical"  style="" class="twitter-share-button">Tweet</a></div>]]></content:encoded>
			<wfw:commentRss>http://ben.hamilton.id.au/how-to/resetting-password-on-palm-t3-pda/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
