<?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>Tachytelic.net</title>
	<atom:link href="http://www.tachytelic.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tachytelic.net</link>
	<description></description>
	<lastBuildDate>Sun, 18 Mar 2012 20:24:44 +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>Extremely long delay trying to install msi installer packages</title>
		<link>http://www.tachytelic.net/2012/03/extremely-long-delay-trying-to-install-msi-installer-packages/</link>
		<comments>http://www.tachytelic.net/2012/03/extremely-long-delay-trying-to-install-msi-installer-packages/#comments</comments>
		<pubDate>Sun, 18 Mar 2012 20:24:44 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Technical Posts]]></category>
		<category><![CDATA[hang]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[MSI Installer]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[Terminal Server]]></category>
		<category><![CDATA[Universal Print Driver]]></category>
		<category><![CDATA[Windows 2003]]></category>
		<category><![CDATA[Windows updates]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=465</guid>
		<description><![CDATA[A few months back I had a problem with a customers Terminal Server that was caused by the installation of a crappy HP Printer Driver. It actually totally killed the server but after we found the cause and apparently got rid of the suspect driver the server went almost back to normal. I don&#8217;t remember [...]]]></description>
			<content:encoded><![CDATA[<p>A few months back I had a problem with a customers Terminal Server that was caused by the installation of a crappy HP Printer Driver.  It actually totally killed the server but after we found the cause and apparently got rid of the suspect driver the server went almost back to normal.  I don&#8217;t remember the exact details now, it has worked since, but never been quite the same.</p>
<p>A lingering problem with the server has been that installing any program that uses an msi installer would take many hours to make any progress at all, appearing to hang altogether &#8211; although task manager still showed the process as active and eventually it would finish (around 12 hours!).  Quite a problem as most of the updates from Windows Updates are in MSI format.</p>
<p>I spent many hours trying all sorts of other solutions which made no difference at all.  Eventually, by using Process Monitor I was able to figure out what was going on.</p>
<p>It turns out that the HP Print Driver put literally thousands of entries in the windows registry under the Key:</p>
<p>HKEY_CURRENT_USER\Software\Hewlett-Packard</p>
<p><img alt="" src="http://www.tachytelic.net/wp-content/uploads/HPRegistryEntries.PNG" title="HP Print Driver Registry Entries" class="alignnone" width="393" height="636" /></p>
<p>I decided to delete the registry key, but I exported it first.  This resulted in the creation of a huge .reg file of 190Mb!</p>
<p><img alt="" src="http://www.tachytelic.net/wp-content/uploads/HPRegistryEntriesExportedReg.PNG" title="Exported HP registry file" class="alignnone" width="588" height="52" /></p>
<p>I was initially hopeful that this would solve the problem completely, but soon realised that because this machine is a terminal server that these registry entries also existed in other user profiles.  So I went through each profile that also has these entries and deleted them from there also.</p>
<p>Once these horrible registry entries from the HP driver had been completely deleted, MSI installations went back to normal and I was able to install patches normally.</p>
<p>I really hope this helps someone else out there someday, I have pulled my hair out for you, keep yours. <img src='http://www.tachytelic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2012/03/extremely-long-delay-trying-to-install-msi-installer-packages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick script to bulk add users in Ubuntu</title>
		<link>http://www.tachytelic.net/2012/02/quick-script-to-bulk-add-users-in-ubuntu/</link>
		<comments>http://www.tachytelic.net/2012/02/quick-script-to-bulk-add-users-in-ubuntu/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 00:24:01 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Scripts & Utilities]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[Shell Script]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[useradd]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=456</guid>
		<description><![CDATA[Needed to add a few hundred user accounts to an Ubuntu server and couldn&#8217;t find a script to do exactly what I want. This script probably won&#8217;t do exactly what you want either, but you should be able to modify it for your own purposes. I simply wanted to read the contents of a text [...]]]></description>
			<content:encoded><![CDATA[<p>Needed to add a few hundred user accounts to an Ubuntu server and couldn&#8217;t find a script to do exactly what I want. This script probably won&#8217;t do exactly what you want either, but you should be able to modify it for your own purposes. I simply wanted to read the contents of a text file containing a username and a password and create the user with the given password.</p>
<p>First up, create a text file containing the username and the password, separated by a comma, i.e:</p>
<p>user1,password1<br />
user2,password2<br />
etc..</p>
<p>The script:</p>
<pre>
for userdetails in `cat /pathto//users.txt`
do
        user=`echo $userdetails | cut -f 1 -d ,`
        passwd=`echo $userdetails | cut -f 2 -d ,`
        echo "useradd -d /user1/kopen3 -p `mkpasswd $passwd` $user"
done
</pre>
<p>run the script and redirect the output to a file, e.g:</p>
<p>./createusers.sh &gt; userscript.sh<br />
chmod +x userscript.sh</p>
<p>Check the contents of userscript.sh to make sure it looks sound and then run it and it should create all of the users with the passwords provided, note that the passwords will no longer be in the format you have provided as they have passed through the mkpasswd command.</p>
<p>Credit to Steve as I used his <strong><a href="http://www.steve-oh.com/blog/index.php/adding-multiple-users-to-ubuntu-e-mail-server-using-a-script/#comment-10013">user creation script</a></strong> to form the basis of this one</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2012/02/quick-script-to-bulk-add-users-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding an Intel 520 Series SSD as a CacheCade drive to a Dell PowerEdge R510</title>
		<link>http://www.tachytelic.net/2012/02/adding-an-intel-520-series-ssd-as-a-cachecade-drive-to-a-dell-poweredge-r510/</link>
		<comments>http://www.tachytelic.net/2012/02/adding-an-intel-520-series-ssd-as-a-cachecade-drive-to-a-dell-poweredge-r510/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 12:37:18 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Technical Posts]]></category>
		<category><![CDATA[CacheCade]]></category>
		<category><![CDATA[Caching]]></category>
		<category><![CDATA[Dell PowerEdge]]></category>
		<category><![CDATA[H700]]></category>
		<category><![CDATA[Intel 520 SSD]]></category>
		<category><![CDATA[LSI]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=435</guid>
		<description><![CDATA[I&#8217;ve been itching to try out the LSI CacheCade technology since reading this review: http://www.storagereview.com/lsi_megaraid_cachecade_pro_20_review The LSI CacheCade Technology is now included with Dell PowerEdge Servers that have the PERC H700 1GB Raid controller installed. What I have been unable to determine from the Dell documentation is if the Dell PERC Controllers support CacheCade V2.0 [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been itching to try out the LSI CacheCade technology since reading this review:</p>
<p><a href="http://www.storagereview.com/lsi_megaraid_cachecade_pro_20_review" target="_blank">http://www.storagereview.com/lsi_megaraid_cachecade_pro_20_review</a></p>
<p>The LSI CacheCade Technology is now included with Dell PowerEdge Servers that have the PERC H700 1GB Raid controller installed.  What I have been unable to determine from the Dell documentation is if the Dell PERC Controllers support CacheCade V2.0 or the original specification.</p>
<p>It has been <a href="http://lonesysadmin.net/2011/06/01/dell-ssd-cachecade-and-h700h800-controllers/">said that it is not possible to add drives that are not factory fitted by Dell</a> to an existing server and I am happy to report that the Intel 520 seems to work without issue.  Perhaps this is a change that Dell made to the controller firmware.</p>
<p>I really wanted a high performance SSD that carries a long warranty and Intel seem to be the only vendor that offer that at the moment.</p>
<p>Installing the SSD inside an R510 is really easy and it is quite a neat setup as you don&#8217;t lose any of your main storage bays as the server has two internal 2.5&#8243; drive bays:</p>
<p>The Drive Itself:<br />
<a href="http://www.tachytelic.net/wp-content/uploads/Intel510.png"><img src="http://www.tachytelic.net/wp-content/uploads/Intel510-300x185.png" alt="" title="Intel Solid State 520 Series 120GB Drive" width="300" height="185" class="aligncenter size-medium wp-image-436" /></a></p>
<p>The internal 2.5&#8243; Drive Bays (Notice the included screws atop of the bays, a nice touch) :<br />
<div id="attachment_439" class="wp-caption aligncenter" style="width: 538px"><a href="http://www.tachytelic.net/wp-content/uploads/R510DriveBays.png"><img src="http://www.tachytelic.net/wp-content/uploads/R510DriveBays.png" alt="" title="Dell PowerEdge R510 2.5&quot; Drive Bays" width="528" height="403" class="size-full wp-image-439" /></a><p class="wp-caption-text">Dell PowerEdge R510 2.5&quot; Drive Bays</p></div></p>
<p>The internal 2.5&#8243; Drive Bays with the Intel 520 120GB SSD installed:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/R510DriveBaysWithSSD.png"><img src="http://www.tachytelic.net/wp-content/uploads/R510DriveBaysWithSSD.png" alt="" title="Dell PowerEdge R510 2.5&quot; Drive Bays with SSD" width="626" height="398" class="aligncenter size-full wp-image-441" /></a></p>
<p>Once the drive is installed, go into Raid Controllers BIOS configuration utility (CTRL+R) and you should see the newly added Intel drive listed:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/H700PhysicalDisks.png"><img src="http://www.tachytelic.net/wp-content/uploads/H700PhysicalDisks.png" alt="" title="Dell Perc H700 Physical Disks" width="574" height="297" class="aligncenter size-full wp-image-443" /></a></p>
<p>Highlight your controller and press F2 and a list of available tasks is displayed.  Choose &#8220;Create CacheCade Virtual Disk&#8221;:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/CreateCacheCade.png"><img src="http://www.tachytelic.net/wp-content/uploads/CreateCacheCade.png" alt="" title="Dell PERC H700 Create CacheCade Virtual Disk" width="418" height="360" class="aligncenter size-full wp-image-444" /></a></p>
<p>Select the SSDs that you want to add to your Cachecade virtual disk.  I&#8217;ve not tried it with more than one:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/CreateCacheCadeStep2.png"><img src="http://www.tachytelic.net/wp-content/uploads/CreateCacheCadeStep2.png" alt="" title="Dell PERC H700 Create CacheCade Virtual Disk Step 2" width="538" height="188" class="aligncenter size-full wp-image-445" /></a></p>
<p>And hopefully you will get a successfully created message(perhaps in a later firmware they will work on wording):</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/CacheCadeCreated.png"><img src="http://www.tachytelic.net/wp-content/uploads/CacheCadeCreated.png" alt="" title="Dell PERC H700 CacheCade Virtual Drive Created" width="552" height="351" class="aligncenter size-full wp-image-446" /></a></p>
<p>CacheCade can only be set-up on the DELL PERC H700 with 1GB memory.  So don&#8217;t go splashing out on an SSD if you don&#8217;t have that RAID controller.  I presume it will also work on a H800 with 1GB, but don&#8217;t have one in this machine to test it.</p>
<p>Have not had a chance to do any performance comparison as yet, and it is a shame that there are no tools to actually show you if the CacheCade is active or to provide any statistics.</p>
<p>I plan to test performance of StorageCraft ShadowProtect Virtual Boot performance with and without the SSD Caching and see how it compares, as this is what we are using to provide disaster recovery systems to our clients, and while it works OK with normal drives, I am hoping that the SSD will make the performance comparable to the native system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2012/02/adding-an-intel-520-series-ssd-as-a-cachecade-drive-to-a-dell-poweredge-r510/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Initiating a Gradwell call directly from a custom Internet Explorer Context Menu</title>
		<link>http://www.tachytelic.net/2012/01/initiating-a-gradwell-call-directly-from-a-custom-internet-explorer-context-menu/</link>
		<comments>http://www.tachytelic.net/2012/01/initiating-a-gradwell-call-directly-from-a-custom-internet-explorer-context-menu/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 21:14:56 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Scripts & Utilities]]></category>
		<category><![CDATA[Technical Posts]]></category>
		<category><![CDATA[Gradwell]]></category>
		<category><![CDATA[VOIP]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=418</guid>
		<description><![CDATA[I recently read some documentation on the Gradwell website which detailed how to initiate calls via the web: http://www.gradwell.com/support/kb/article.php?id=159 I wrote a powershell script to test the system and it worked well, but I didn&#8217;t really have a practical use for dialing from the command line.  Yesterday I was by chance reading about Extending the [...]]]></description>
			<content:encoded><![CDATA[<p>I recently read some documentation on the Gradwell website which detailed how to initiate calls via the web:</p>
<p><a href="http://www.gradwell.com/support/kb/article.php?id=159">http://www.gradwell.com/support/kb/article.php?id=159</a></p>
<p>I wrote a powershell script to test the system and it worked well, but I didn&#8217;t really have a practical use for dialing from the command line.  Yesterday I was by chance reading about <strong><a href="http://blogs.msdn.com/b/oldnewthing/archive/2004/05/24/140283.aspx" target="_blank">Extending the Internet Explorer Context Menu</a></strong>.</p>
<p>I decided to put together a quick bit of code that would allow me to initiate calls directly from Internet Explorer to my Gradwell extension, and it works really well!  I ditched the original Powershell version in favour of javascript because it made the solution much neater.</p>
<p>To make this work for you need to setup an authentication token for your extension on the Gradwell VoIP control panel first. Make a note of your extention and authentication token.</p>
<p>Download <strong><a href="http://www.tachytelic.net/wp-content/uploads/DialGradwell.htm">this HTML File</a> (right click - Save Target as) </strong>and store it locally somewhere on your machine.  Open the file for editing and modify with your own extension number and authentication token:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/Gradwell.png"><img class="aligncenter size-full wp-image-424" title="Gradwell" src="http://www.tachytelic.net/wp-content/uploads/Gradwell.png" alt="" width="369" height="87" /></a></p>
<p>Now we just need to create the internet explorer context menu, create the following registry key:</p>
<p>[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\&amp;Gradwell Call]<br />
@=REG_SZ:&#8221;C:\some\path\to\View\DialGradwell.htm&#8221;<br />
Contexts=REG_DWORD:10</p>
<p>You will need to change &#8220;c:\some\path\to&#8221; to the actual folder where you saved &#8220;DialGradwell.htm&#8221;.</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/GradwelRegistry1.png"><img class="aligncenter size-full wp-image-427" title="GradwelRegistry" src="http://www.tachytelic.net/wp-content/uploads/GradwelRegistry1.png" alt="" width="527" height="133" /></a></p>
<p>Open Internet Explorer again and highlight some text or a link and right click and you should now have the option to call the number directly from your browser:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/GradwellCallExample.png"><img class="aligncenter size-full wp-image-428" title="GradwellCallExample" src="http://www.tachytelic.net/wp-content/uploads/GradwellCallExample.png" alt="" width="435" height="382" /></a></p>
<p>If you have done everything right, simply click on the &#8220;Gradwell Call&#8221; context menu option and your phone should start ringing right away.  Answer the call and you&#8217;ll hear the ringing of the destination number right away.</p>
<p>I might see about doing the same thing for Chrome and Firefox.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2012/01/initiating-a-gradwell-call-directly-from-a-custom-internet-explorer-context-menu/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>SPA Call Manager Pro Released!</title>
		<link>http://www.tachytelic.net/2011/12/spa-call-manager-pro-released/</link>
		<comments>http://www.tachytelic.net/2011/12/spa-call-manager-pro-released/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 01:15:48 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Scripts & Utilities]]></category>
		<category><![CDATA[504G]]></category>
		<category><![CDATA[Call Control]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[CTI]]></category>
		<category><![CDATA[IP Phone]]></category>
		<category><![CDATA[Linksys]]></category>
		<category><![CDATA[SPA942]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=409</guid>
		<description><![CDATA[I&#8217;ve been working on a project for some time to enhance the usability of the IP Phones that we use internally. Namely the Linksys SPA 942 and the Cisco SPA 504g. The product is called SPA Call Manager Pro and it enables you to control the phone directly from your Windows desktop. I&#8217;ve written a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a project for some time to enhance the usability of the IP Phones that we use internally. Namely the Linksys SPA 942 and the Cisco SPA 504g. The product is called <a href="http://www.spacallmanager.com" target="_blank">SPA Call Manager Pro</a> and it enables you to control the phone directly from your Windows desktop.</p>
<p>I&#8217;ve written a few little tools for the SPA series of phones but this one required a lot more effort. We&#8217;ve been using it internally for while now and it really does make using the phones so much easier and quicker.</p>
<p>It took me a while to figure out how to control the call functions of the phone, but I am very pleased with the results. Here is a screenshot of the main application window:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/SPAMain-e1322788270854.png"><img class="size-full wp-image-410 aligncenter" title="SPA Call Manager Pro Main Window" src="http://www.tachytelic.net/wp-content/uploads/SPAMain-e1322788270854.png" alt="SPA Call Manager Pro Main Screenshot showing how a Linksys or Cisco IP Phone can be controlled via your desktop." width="640" height="624" /></a></p>
<p>&nbsp;</p>
<p>The program has a number of features to make working with the Linksys SPA 942 and the Cisco 504g easier, such as autocomplete dialing from the phone and applications personal directory and the ability to directly dial any number stored in the phones Dialed/Answered and Missed call logs.</p>
<p>We&#8217;ve also added the ability to dial any number stored in your windows clipboard, really handy when you are web browsing and just want to get hold of someone quickly without having to look back and forth between the phone and your screen.</p>
<p>You can import numbers from your own databases via the CSV import utility and easily build up your own contact database within the application and then export it for use on collegues machines.</p>
<p>We have put together a dedicated website for the application, if you use one of these phones I urge you to check it out to make your life easier!</p>
<h1><strong><a title="SPA Call Manager Pro Website" href="http://www.spacallmanager.com" target="_blank">SPA Call Manager Pro</a></strong></h1>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2011/12/spa-call-manager-pro-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook: Your message did not reach some or all of the intended recipients.</title>
		<link>http://www.tachytelic.net/2011/09/outlook-your-message-did-not-reach-some-or-all-of-the-intended-recipients/</link>
		<comments>http://www.tachytelic.net/2011/09/outlook-your-message-did-not-reach-some-or-all-of-the-intended-recipients/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 16:59:42 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Technical Posts]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=389</guid>
		<description><![CDATA[Had a problem with a customer today sending an email and instantly getting a response that the message was undeliverable, with the message: Your message did not reach some or all of the intended recipients. Subject: FW: Offer Sent: 20/09/2011 10:33 The following recipient(s) cannot be reached: &#8216;user@domain.com&#8217; on 20/09/2011 10:33 None of your e-mail [...]]]></description>
			<content:encoded><![CDATA[<p>Had a problem with a customer today sending an email and instantly getting a response that the message was undeliverable, with the message:</p>
<blockquote><p>Your message did not reach some or all of the intended recipients.</p>
<p>Subject:  FW: Offer</p>
<p>Sent:     20/09/2011 10:33</p>
<p>The following recipient(s) cannot be reached:</p>
<p>&#8216;user@domain.com&#8217; on 20/09/2011 10:33<br />
None of your e-mail accounts could send to this recipient.</p></blockquote>
<p>This problem is caused when the email address has been pasted into to the to: field with the mailto: portion still intact.</p>
<p>Go into the sent items and open the email that failed to transmit and then choose &#8220;resend this message&#8221; and then double click on the email address you will probably see something like this:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/Outlook.png"><img class="aligncenter size-full wp-image-388" title="Outlook - Message did not reach some of all of the intended recipients" src="http://www.tachytelic.net/wp-content/uploads/Outlook.png" alt="Showing MAILTO instead of SMTP" width="484" height="245" /></a></p>
<p>As in the picture the &#8220;E-mail type:&#8221; is set to MAILTO.  Clicking on the Internet type button will reset it back to SMTP and should be able to send the message.</p>
<p>Sometimes the incorrect address can also get cached into your NK2 file, so you will need to remove it from your autocomplete cache to make sure that you don&#8217;t get the problem again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2011/09/outlook-your-message-did-not-reach-some-or-all-of-the-intended-recipients/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dell Openmanage Server Administrator E-Mail Alerts &#8211; Powershell &amp; VBScript versions</title>
		<link>http://www.tachytelic.net/2011/09/dell-openmanage-server-administrator-e-mail-alerts-updated-powershell-script/</link>
		<comments>http://www.tachytelic.net/2011/09/dell-openmanage-server-administrator-e-mail-alerts-updated-powershell-script/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 16:53:40 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Scripts & Utilities]]></category>
		<category><![CDATA[Technical Posts]]></category>
		<category><![CDATA[Dell Openmanage]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=368</guid>
		<description><![CDATA[Last year I posted a script written in VBScript which enables email alerts from Dell OMSA without the need for IT Assistant.  This script has proved to be very popular, but a number of users have not been able to make it work because it depends on CDO, which is not included in Windows Server [...]]]></description>
			<content:encoded><![CDATA[<p>Last year I <a href="http://www.tachytelic.net/2010/03/setting-up-e-mail-alerts-from-dell-openmanage-omsa/" target="_blank">posted a script</a> written in VBScript which enables email alerts from Dell OMSA without the need for IT Assistant.  This script has proved to be very popular, but a number of users have not been able to make it work because it depends on CDO, which is not included in Windows Server Core.</p>
<p>So, I have rewritten the script in Powershell and it should now work on any system which has Powershell installed.  The new script is easier to read and includes support for SMTP over SSL, making the use of a Gmail account for sending the alerts very straightforward.</p>
<p>The whole process is very similar to the previous script, so if you used that one, this will be immediatly familiar.</p>
<p><strong>Installation:</strong></p>
<p>After you have downloaded the Zip file extract it to a folder on your server, e.g &#8220;C:\Script&#8221;</p>
<p>You will then need to edit the variables at the top of the script to make them appropriate for your environment:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/OMSAPowershell1.png"><img class="aligncenter size-full wp-image-369" title="Dell Openmanage Powershell Script Variables" src="http://www.tachytelic.net/wp-content/uploads/OMSAPowershell1.png" alt="" width="508" height="169" /></a></p>
<p>If you do not specify an SMTPServer, it will default to localhost.  If you do not specify an SMTPPort it will default to port 25.</p>
<p>If you intend to use the script with a gmail account set:</p>
<p>$SMTPServer = &#8220;smtp.gmail.com&#8221;<br />
$SMTPUser = Your gmail account name (without the @gmail.com part).<br />
$SMTPPassword = Your gmail account password<br />
$SMTPPort = 587<br />
$EnableSSL = true</p>
<p><strong>Test Email is functional</strong></p>
<p>Now that you have the script installed open up a powershell prompt and run the script with the &#8220;testemail&#8221; parameter e.g:</p>
<p>c:\script\dellalerts.ps1 testemail</p>
<p>If everything is working properly you should receive a test alert in your inbox.</p>
<p><strong>Setup Alerts from OpenManage</strong></p>
<p>Once the email function has been tested you can go ahead and setup the script to run from open manage, simply run the script again with the &#8220;setup&#8221; parameter, and you should see something like this:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/OMSAPowershell2.png"><img class="aligncenter size-full wp-image-370" title="OMSAPowershell2" src="http://www.tachytelic.net/wp-content/uploads/OMSAPowershell2.png" alt="" width="465" height="351" /></a></p>
<p><strong>Testing</strong></p>
<p>There are a few easy ways to test the script in practice with a real alert generated by OpenManage:</p>
<ul>
<li>Pop the side off the server casing, this will generate a chassis intrusion alert.</li>
<li>If you have a dual powersupply system you can pull the power to one of the supplies and the server should report the power loss.</li>
</ul>
<p>The problem with these methods is that you have to be in the same place as the server.  So I prefer to trigger a tempreture alert like this:</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/OMSAPowershell3.png"><img class="aligncenter size-full wp-image-373" title="OMSAPowershell3" src="http://www.tachytelic.net/wp-content/uploads/OMSAPowershell3.png" alt="" width="429" height="337" /></a></p>
<p>Just set the warning threshold to be a couple of degrees lower than your current reading.  <strong>Warning: </strong>If you have a thermal shutdown action configured, this could trigger that process off and shutdown your server.  Once you have received your test emails, set the tempreture wanrings back to default values.</p>
<p>Please let me know of any issues you have with the script and I will work on them as soon as possible.  I have installed this updated version on a number of systems and it is working well.</p>
<p style="text-align: center;">The download includes both the new version and the older VBScript version.<br />
<form action='https://www.paypal.com/cgi-bin/webscr' method='post' target='_blank'><p>
GBP 2.95 / Download<br />
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
</p><input type="hidden" name="cmd" value="_xclick" /><input type='hidden' name='business' value='paul@murana.co.uk' /><input type='hidden' name='item_name' value='Dell Openmanage Server Administrator E-Mail Alerts - Powershell &amp; VBScript versions' /><input type='hidden' name='item_number' value='368' /><input type='hidden' name='amount' value='2.95' /><input type="hidden" name="no_shipping" value="1" /><input type="hidden" name="no_note" value="1" /><input type='hidden' name='currency_code' value='GBP' /><input type='hidden' name='notify_url' value='http://www.tachytelic.net/wp-content/plugins/easyfileshop/ipn.php' /></form></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2011/09/dell-openmanage-server-administrator-e-mail-alerts-updated-powershell-script/feed/</wfw:commentRss>
		<slash:comments>70</slash:comments>
		</item>
		<item>
		<title>Knitted cover for my Amazon Kindle</title>
		<link>http://www.tachytelic.net/2011/01/knitted-cover-for-my-amazon-kindle/</link>
		<comments>http://www.tachytelic.net/2011/01/knitted-cover-for-my-amazon-kindle/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 14:13:23 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Amazon Kindle]]></category>
		<category><![CDATA[Knitted cover]]></category>
		<category><![CDATA[Pattern]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=345</guid>
		<description><![CDATA[It was my birthday recently and I was lucky enough to receive an Amazon Kindle, if you haven&#8217;t seen or used one of these I&#8217;d highly recommend it, it is actually quite an amazing little thing.   I also got the Official Amazon Cover for the reader but I really did not get on with [...]]]></description>
			<content:encoded><![CDATA[<p>It was my birthday recently and I was lucky enough to receive an <a href="http://www.amazon.co.uk/gp/product/B002LVUWFE?ie=UTF8&amp;tag=tachytelicnet-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B002LVUWFE">Amazon Kindle</a>, if you haven&#8217;t seen or used one of these I&#8217;d highly recommend it, it is actually quite an amazing little thing.</p>
<p style="text-align: center;"><a href="http://www.amazon.co.uk/gp/product/B002LVUWFE?ie=UTF8&amp;tag=tachytelicnet-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B002LVUWFE"><img src="/wp-content/uploads/417XQ0XwQuL._SL160_.jpg" border="0" alt="" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=tachytelicnet-21&amp;l=as2&amp;o=2&amp;a=B002LVUWFE" border="0" alt="" width="1" height="1" /> <a href="http://www.amazon.co.uk/gp/product/B003DZ163E?ie=UTF8&amp;tag=tachytelicnet-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B003DZ163E"><img src="/wp-content/uploads/518ISDAvx1L._SL160_.jpg" border="0" alt="" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=tachytelicnet-21&amp;l=as2&amp;o=2&amp;a=B003DZ163E" border="0" alt="" width="1" height="1" /></p>
<p>I also got the Official Amazon Cover for the reader but I really did not get on with it. It is high quality and durable, but it makes the device so awkward to read that I always end up removing the Kindle anyway. It is also quite heavy and I generally leave the Kindle in my laptop bag and can do without the extra weight.</p>
<p>My girlfriend, who knits constantly made me a Kindle Cover which fits the reader perfectly and provides surprisingly good protection. She has made the pattern available freely on <a href="http://mezzamay.blogspot.com/2011/01/kindle-cosy-pattern-ready-for-download.html"><strong>this post on her blog</strong></a>.</p>
<p style="text-align: center;"><a href="http://mezzamay.blogspot.com/2011/01/kindle-cosy-pattern-ready-for-download.html"><img class="aligncenter" src="http://3.bp.blogspot.com/_3ho1AMXgauU/TR-twXy1wtI/AAAAAAAAJ5c/B6NePAYKeSo/s320/IMG_4230.JPG" alt="Kindle Cosy" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2011/01/knitted-cover-for-my-amazon-kindle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated Linksys SPA Personal Directory Manager</title>
		<link>http://www.tachytelic.net/2011/01/updated-linksys-spa-personal-directory-manager/</link>
		<comments>http://www.tachytelic.net/2011/01/updated-linksys-spa-personal-directory-manager/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 14:40:59 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Scripts & Utilities]]></category>
		<category><![CDATA[Cisco SPA504G]]></category>
		<category><![CDATA[Linksys]]></category>
		<category><![CDATA[SPA941]]></category>
		<category><![CDATA[SPA942]]></category>
		<category><![CDATA[VOIP]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=324</guid>
		<description><![CDATA[In response to the comments posted my original post I have put together a new version of the Linksys SPA Personal Directory Manager. This version has had some cosmetic tweaks, includes a proper installer and has the ability to upload the directory to many phones. There is a small charge of £1.95 for this software. [...]]]></description>
			<content:encoded><![CDATA[<p>In response to the comments posted my <a href="http://www.tachytelic.net/2010/05/simple-gui-for-linksys-spa942-personal-directory/">original post</a> I have put together a new version of the Linksys SPA Personal Directory Manager.</p>
<p>This version has had some cosmetic tweaks, includes a proper installer and has the ability to upload the directory to many phones.</p>
<p>There is a small charge of £1.95 for this software.</p>
<p><a href="http://www.tachytelic.net/wp-content/uploads/SPA.png"><img class="aligncenter size-medium wp-image-340" title="SPA Personal Directory Manager" src="http://www.tachytelic.net/wp-content/uploads/SPA-300x227.png" alt="" width="300" height="227" /></a></p>
<p>This has been tested and works with:</p>
<p><a href="http://www.amazon.co.uk/gp/product/B0028STP0I?ie=UTF8&amp;tag=tachytelicnet-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B0028STP0I">Linksys SPA941</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=tachytelicnet-21&amp;l=as2&amp;o=2&amp;a=B0028STP0I" alt="" width="1" height="1" border="0" /><a href="http://www.amazon.co.uk/gp/product/B000IG98EA?ie=UTF8&amp;tag=tachytelicnet-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B000IG98EA">Linksys SPA942</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=tachytelicnet-21&amp;l=as2&amp;o=2&amp;a=B000IG98EA" alt="" width="1" height="1" border="0" /><a href="http://www.amazon.co.uk/gp/product/B000MJXZXI?ie=UTF8&amp;tag=tachytelicnet-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B000MJXZXI">Linksys SPA962</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.co.uk/e/ir?t=tachytelicnet-21&amp;l=as2&amp;o=2&amp;a=B000MJXZXI" alt="" width="1" height="1" border="0" /></p>
<div><strong>Update: 13/08/2011:</strong></div>
<div>Support has now been added for the Cisco SPA504G.  It may well work with other new phones from this series but I do not have the phones on hand to test.</div>
<div>Be very interested in any feedback or feature requests. Click on the Paypal link to purchase:</div>
<div><form action='https://www.paypal.com/cgi-bin/webscr' method='post' target='_blank'><p>
GBP 1.95 / Download<br />
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online.">
</p><input type="hidden" name="cmd" value="_xclick" /><input type='hidden' name='business' value='paul@murana.co.uk' /><input type='hidden' name='item_name' value='Updated Linksys SPA Personal Directory Manager' /><input type='hidden' name='item_number' value='324' /><input type='hidden' name='amount' value='1.95' /><input type="hidden" name="no_shipping" value="1" /><input type="hidden" name="no_note" value="1" /><input type='hidden' name='currency_code' value='GBP' /><input type='hidden' name='notify_url' value='http://www.tachytelic.net/wp-content/plugins/easyfileshop/ipn.php' /></form></div>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2011/01/updated-linksys-spa-personal-directory-manager/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Updating the RecipientContainer of a dynamic distribution group in Exchange 2007</title>
		<link>http://www.tachytelic.net/2010/10/updating-the-recipientcontainer-of-a-dynamic-distribution-group-in-exchange-2007/</link>
		<comments>http://www.tachytelic.net/2010/10/updating-the-recipientcontainer-of-a-dynamic-distribution-group-in-exchange-2007/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 11:27:51 +0000</pubDate>
		<dc:creator>Paulie</dc:creator>
				<category><![CDATA[Technical Posts]]></category>
		<category><![CDATA[Exchange]]></category>

		<guid isPermaLink="false">http://www.tachytelic.net/?p=310</guid>
		<description><![CDATA[After moving users to a different organisational unit you may find that you are unable to e-mail them using a dynamic distribution group. If the group was created in powershell you wont be able to edit it in the managment console either. It shows a message saying: This Dynamic Distribution Group was created with the [...]]]></description>
			<content:encoded><![CDATA[<p>After moving users to a different organisational unit you may find that you are unable to e-mail them using a dynamic distribution group.  If the group was created in powershell you wont be able to edit it in the managment console either.  It shows a message saying:</p>
<blockquote><p>
This Dynamic Distribution Group was created with the Exchange Management Shell.  You can use the Exchange Managment Shell to modify the filter.
</p></blockquote>
<p>And all of the controls are disabled.</p>
<p>To update the recipient container from the Exchange Management Shell run:</p>
<blockquote><p>
Set-DynamicDistributionGroup -Identity DistributionGroupName -RecipientContainer &#8216;containername/ouname&#8217;
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.tachytelic.net/2010/10/updating-the-recipientcontainer-of-a-dynamic-distribution-group-in-exchange-2007/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

