<?xml version="1.0"?>
<rss version="2.0"><channel><title/><link>https://www.edugeek.net/blogs/blog/239-fn-gms-blog/</link><description/><language>en</language><item><title>Automatic Cisco Switch Backup</title><link>https://www.edugeek.net/blogs/entry/1068-automatic-cisco-switch-backup/</link><description><![CDATA[<p>This will guide you through how to configure your Cisco switches to save and backup their configuration automatically. The backup occurs at 8pm every day and every time the running configuration is saved.</p><p> </p><p>
<span style="font-size:14px;"><strong>Setup a TFTP server</strong></span></p><p> </p><p>
You will need to setup a TFTP server if you don't already have one. I use TFTP32 and install it as a service so it automatically launches when the server is booted.</p><p> </p><p>
<span style="font-size:14px;"><strong>Ensure your switch time is correctly set.</strong></span></p><p> </p><p>
To ensure your switch is performing the backup to the correct schedule you need to ensure the time is correct on the switch.</p><p>
</p><p><strong>
Command to view the switch time</strong></p><p> </p><p>
Show Clock</p><p>
</p><p><strong>
Command to set the switch to use an NTP server (Change to the IP of your preferred NTP server)</strong></p><p> </p><p>
NTP Server 10.10.10.10</p><p> </p><p>
<strong>Command to set your switch to observe British day light saving.</strong></p><p><strong>
</strong></p><p>
clock summer-time BST recurring last Sun Mar 23:00 last Sun Oct 23:00</p><p> </p><p>
<strong><span style="font-size:14px;">Backup commands</span></strong></p><p> </p><p>
Change the <span style="color:#FF0000;">IP address</span> to your TFTP server and copy and paste the below into your switch. This will perform the backup every day at <span style="color:#0000FF;">8pm</span> and every time the configuration is saved. You can change the <span style="color:#0000FF;">time</span> if you wish.</p><p> </p><p> </p><p>
conf t</p><p>
archive</p><p>
path tftp://<span style="color:#FF0000;">10.115.192.16</span>/$h-$t</p><p>
write-memory</p><p>
exit</p><p> </p><p>
kron policy-list BACKUP</p><p>
cli write memory</p><p>
exit</p><p>
kron occurrence BACKUP at <span style="color:#0000FF;">20:00</span> recurring</p><p>
policy-list BACKUP</p><p>
end</p>]]></description><guid isPermaLink="false">1068</guid><pubDate>Tue, 23 Aug 2016 08:46:53 +0000</pubDate></item><item><title>Cisco - List Unused Switchports</title><link>https://www.edugeek.net/blogs/entry/1057-cisco-list-unused-switchports/</link><description><![CDATA[<p>Hello,</p><p> </p><p>
A quick command for Cisco users. This will list the switchports that have not been used in the last 6 weeks. Handy if you are looking for unused ports when the switch is full!</p><p> </p><p>
</p><pre class="ipsCode">show int | i proto.*notconnect|proto.*administratively down|Last in.* [6-9]w|Last in.*[0-9][0-9]w|[0-9]y|disabled|Last input never, output never, output hang never</pre><div></div><p></p><p> </p><p> </p><p>
Example output below. The ports in red are ports that are not connected but <strong>have </strong>been used in the last 6 weeks. Please be careful!</p><p> </p><p>
</p><pre class="ipsCode">[color="#FF0000"]GigabitEthernet4/0/38 is down, line protocol is down (notconnect)
GigabitEthernet4/0/39 is down, line protocol is down (notconnect)[/color]
GigabitEthernet4/0/40 is down, line protocol is down (notconnect)
 Last input never, output 1y19w, output hang never
GigabitEthernet4/0/41 is down, line protocol is down (notconnect)
 Last input never, output 31w4d, output hang never
GigabitEthernet4/0/42 is down, line protocol is down (notconnect)
 Last input never, output 1y41w, output hang never
GigabitEthernet4/0/43 is down, line protocol is down (notconnect)
 Last input never, output 1y51w, output hang never
GigabitEthernet4/0/44 is down, line protocol is down (notconnect)
 Last input never, output never, output hang never</pre><div></div><p></p><p> </p><p>
To view a list of all ports and when they were last used this is the command you want:</p><p> </p><p>
</p><pre class="ipsCode">show int | i proto|Last in</pre><div></div><p></p>]]></description><guid isPermaLink="false">1057</guid><pubDate>Wed, 06 Apr 2016 09:54:03 +0000</pubDate></item><item><title>Office 365 with ADFS 3.0 - Login with username instead of email address</title><link>https://www.edugeek.net/blogs/entry/995-office-365-with-adfs-30-login-with-username-instead-of-email-address/</link><description><![CDATA[<p>Hi all,</p><p> </p><p>
When we where looking into Office 365, on the ADFS login screen, we found we would prefer it if the user could login with the network username instead of email address. This is so it matches the rest of our services. with Active Directory Federated Services 3 we found on Server 2012 R2 wouldn't allow us to do this out of the box. The next closest thing was logging in with domain\username format.</p><p> </p><p>
However thanks to users on the Microsoft forum i have put some code together so the email address is populated automatically, allowing users to enter only a username.</p><p> </p><p>
You need to put the code in the bottom of the onload.js file. Just change the domain example.com to your domain name. Information on how to modify this can be found <a href="http://technet.microsoft.com/en-us/library/dn636121.aspx" rel="external nofollow">here.</a>.</p><p> </p><p>
The downside is all your username will need to be on the same email domain.</p><p> </p><p>
Hope someone finds this handy.</p><p> </p><p>
</p><pre class="ipsCode">

// Check whether the loginMessage element is present on this page.
var loginMessage = document.getElementById('loginMessage');
if (loginMessage)
{
      // loginMessage element is present, modify its properties.
      loginMessage.innerHTML = 'Sign in with your network username and password';
}


//remove email address requirement
function runScript(e) {
   if (e.keyCode == 13) {
       AppendUPN();
   return Login.submitLoginRequest();
   }
}

var AppendUPN = function () {
var userName = document.getElementById(Login.userNameInput);
var lowerUserName = userName.value.toLowerCase();

//Check to see if they already included the UPN
var li = lowerUserName.lastIndexOf('@example.com');
if (li == -1)
{
   userName.value = userName.value + '@exaple.com';
}

return true;
}

document.getElementById('submitButton').onclick = new Function('AppendUPN();return Login.submitLoginRequest();');
document.getElementById('passwordInput').onkeypress = runScript;

document.getElementById("userNameInput").placeholder="Username";</pre><div></div><p></p>]]></description><guid isPermaLink="false">995</guid><pubDate>Thu, 17 Jul 2014 21:49:47 +0000</pubDate></item><item><title><![CDATA[Ruckus Firmware 9.8 &amp; support upgrade entitlement Error]]></title><link>https://www.edugeek.net/blogs/entry/992-ruckus-firmware-98-amp-support-upgrade-entitlement-error/</link><description><![CDATA[<p>Hello,</p><p> </p><p>
I have just upgraded to version 9.8 of the Ruckus Firmware. But at first I got this error message after the upgrade had finished - "A support upgrade entitlement does not appear to have been purchased for this ZD. Please contact Ruckus Support further assistance. [What's this?]"</p><p> </p><p>
It seemed that the filtering was stopping my ZoneDirector calling back home. To resolve this issue I added the IP address 12.217.161.158 to the authentication exception in order to get this working. Once I had added this to the exception list go onto your Ruckus controllers go to Administer &gt; Support press the check entitlement button.</p><p> </p><p>
All sorted now!</p><p> </p><p>
<strong>EDIT: The address has changed in later firmware to - supportactivation.ruckuswireless.com</strong></p>]]></description><guid isPermaLink="false">992</guid><pubDate>Mon, 30 Jun 2014 09:28:57 +0000</pubDate></item><item><title>SIMS .Net Install Script</title><link>https://www.edugeek.net/blogs/entry/917-sims-net-install-script/</link><description><![CDATA[<p>Many of us find it a little annoying that SIMS doesn't come with an .msi installer. But not to worry I have put together a script to do the job. To get yourself setup follow the following setps.</p><p> </p><p>
</p><ol style="list-style-type:decimal;"><li>Download the attached .zip file<br />
</li><li>Inside the root of the source folder populate it with the following installer files SIMSAMPARKSetup.exe, SIMSApplicationSetup.exe, SIMSInfrastructureSetup.exe &amp; SIMSManualSetup.exe<br />
</li><li>Also inside the same folder put your connect.ini file. If you do have one it can be found on a computer with SIMS workstation installed under C:\Program Files\SIMS\SIMS .net<br />
</li><li>Inside the Configuration Files x64 &amp; Configuration Files x86 populate this with your SIMS.ini file. If you do have one it can be found on a computer with SIMS workstation installed under C:\Windows. If you do not have a x64 version open the existing x86 sims.ini and tweak the paths so it points to the x86 Program Files folder.<br />
</li></ol><p></p><p> </p><p>
To then install SIMS run 1 of the 2 installer scripts with Admin rights. Its as simple as that. This script was tested on SCCM 2012. You may have to specify full paths inside the installer scripts to use it as a startup script.</p><p> </p><p>
You may want to run SIMSprep as well to allow standard users to upgrade SIMS.</p>]]></description><guid isPermaLink="false">917</guid><pubDate>Tue, 29 Oct 2013 09:07:58 +0000</pubDate></item><item><title>SCCM 2012 + Server 2012 + Vmware ESXi 5  0x80091007 error</title><link>https://www.edugeek.net/blogs/entry/868-sccm-2012-server-2012-vmware-esxi-5-0x80091007-error/</link><description><![CDATA[<p>Hi,</p><p> </p><p>
I thought I would do a quick post to let you guys know about a problem we have been having.</p><p> </p><p>
We recently moved our SCCM server to a Server 2012 box from a Server 2008 R2 box. Once we moved during OSD we where getting random hash miss-match errors (error 0x80091007 during OSD). It was very random and happened at different times. There was nothing wrong with our packages. If you set OSD off in a VM it worked every time.</p><p> </p><p>
It turned out there seems to be a bad mixing in using SCCM 2012 + Server 2012 + Vmware ESXi 5. The solution was to change the network card on the distribution point virtual machine from E1000E to VMXNET 3. You do this by right clicking the virtual machine &gt; Edit remove the old adapter and add the new one.</p><p> </p><p>
The issue doesn't happen when using a E1000E nic with Server 2008 R2.</p><p> </p><p>
Hope it will help others here.</p>]]></description><guid isPermaLink="false">868</guid><pubDate>Wed, 19 Jun 2013 11:44:59 +0000</pubDate></item><item><title>Upgrading the SCCM 2012 client to SP1</title><link>https://www.edugeek.net/blogs/entry/786-upgrading-the-sccm-2012-client-to-sp1/</link><description><![CDATA[<p>For those who have just upgraded to the final release of SP1 you will have found the client needs an upgrade. You can do this my one if these methods:</p><p> </p><p>
1. <a href="http://configmgrblog.com/2012/12/03/how-to-update-configmgr-clients-automatically-in-sp1/" rel="external nofollow">Auto upgrade SCCM 2012 Clients</a></p><p>
2. Use the client upgrade package</p><p> </p><p>
Step 1 would be easier, but for devices that go offline for long periods will not upgrade as well. If you use the deployment package and let the software install outside of maintenance windows it will get to all your machines better. Also step 1 will not give to the reporting step 2 will allow you.</p><p> </p><p>
This query will allow you to create a collection for devices that do not have the new updated client. You can then deploy the upgrade package to this collection.</p><p> </p><p>
</p><pre class="ipsCode">select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.ClientVersion &lt; "5.00.7804.1000"</pre><div></div><p></p><p> </p><p>
You may find that deploying the package returns as failed and reporting "unexpected restart" but the application has installed just fine. This is because the package the stops the ccmexec service which kills the execution manager making it think it got rebooted or interrupted.</p>]]></description><guid isPermaLink="false">786</guid><pubDate>Sun, 23 Dec 2012 18:00:46 +0000</pubDate></item><item><title>Enable Users to Change Expired Passwords in Outlook Web App 2010</title><link>https://www.edugeek.net/blogs/entry/719-enable-users-to-change-expired-passwords-in-outlook-web-app-2010/</link><description><![CDATA[<p>By default in OWA 2010 if a user's password has expired they are told the username or password is invalid. They are unable to reset the password in OWA. This might be a pain when the passwords expire in the summer holidays. If you have SP1 + installed on the server users will be able to reset expired passwords before they login. All you have to do is make the following registry changes on all of your CAS servers.</p><p> </p><p>
</p><ol style="list-style-type:decimal;"><li><br />
</li><li>Log on to the Client Access server.<br />
</li><li>Start Registry Editor (regedit).<br />
</li><li>Locate the following registry subkey: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchange OWA.<br />
</li><li>Create the following DWORD value if it doesn't already exist: ChangeExpiredPasswordEnabled. The value type will be REG_DWORD.<br />
</li><li>Set the value of ChangeExpiredPasswordEnabled to 1.<br />
</li><li>Exit Registry Editor.<br />
</li></ol><p></p><p> </p><p>
You will need to reset your IIS services.</p>]]></description><guid isPermaLink="false">719</guid><pubDate>Mon, 02 Jul 2012 18:46:12 +0000</pubDate></item><item><title>Script to Record Computer Usage</title><link>https://www.edugeek.net/blogs/entry/668-script-to-record-computer-usage/</link><description><![CDATA[<p>Hi,</p><p> </p><p>
Just thought these scripts would be handy. It will dump logon details to a text file.</p><p> </p><p>
You will need to create a share with a folder called Computers &amp; one called users. Your users will need permissions to write to the folder.</p><p> </p><p>
These are the 2 script. You will need to make one a log on script and one a log off. You will need to modify the location of your share. They are both .bat format</p><p> </p><p>
Logon Script</p><p> </p><p>
</p><pre class="ipsCode">rem The following line creates a rolling log file of usage by workstation
echo Log In %Date% %TIME% %USERNAME% &gt;&gt; \\server\share\Computers\%COMPUTERNAME%.log

rem The following line creates a rolling log file of usage by user
echo Log In %Date% %TIME% %COMPUTERNAME% &gt;&gt; \\server\share\users\%USERNAME%.log</pre><div></div><p></p><p> </p><p>
Log Off Script</p><p> </p><p>
</p><pre class="ipsCode">rem The following line creates a rolling log file of usage by workstation
echo Log Off %Date% %TIME% %USERNAME% &gt;&gt; \\server\share\Computers\%COMPUTERNAME%.log

rem The following line creates a rolling log file of usage by user
echo Log Off %Date% %TIME% %COMPUTERNAME% &gt;&gt; \\server\share\users\%USERNAME%.log</pre><div></div><p></p>]]></description><guid isPermaLink="false">668</guid><pubDate>Wed, 09 May 2012 08:19:25 +0000</pubDate></item><item><title>SonicWall SSL VPN Firmware V6 Released</title><link>https://www.edugeek.net/blogs/entry/651-sonicwall-ssl-vpn-firmware-v6-released/</link><description><![CDATA[<p>For those who use SonicWall SSL VPN devices a couple of days ago a new version of the firmware was released adding some nice new features. For myself the most notable one is support for Mac OS X Lion.</p><p> </p><p>
</p><ul><li>A few more nice new features include:<br />
</li><li>Endpoint Control Polices. This can check if the client has up to date AV, is a member of your domain if desired<br />
</li><li>If you have the virtual appliance or a SRA 4200.<br />
</li><li>ActiveSync support. The appliance will allow you to use ActivSync without opening ports to an exchange server.<br />
</li><li>Cross Domain Single Sign On - Would be handy for those who have an admin and curriculum domain.<br />
</li></ul><p></p><p> </p><p>
Release notes can be <a href="http://software.sonicwall.com/Firmware/Documentation/232-002119-00_Rev_A_SonicWALL_SRA_6%5B1%5D.0_Release_Notes.pdf" rel="external nofollow">found here.</a></p>]]></description><guid isPermaLink="false">651</guid><pubDate>Sat, 21 Apr 2012 12:31:57 +0000</pubDate></item><item><title>Remove Network Icon From Windows 7 Navigation Pane</title><link>https://www.edugeek.net/blogs/entry/613-remove-network-icon-from-windows-7-navigation-pane/</link><description><![CDATA[<p>As more of us are deploying Windows 7 in School like me you will find something annoying about the Navigation pane. There is a "Network" icon shown are there is no built in group policy to remove this. I have found a custom ADM template that will allow us to remove it. I have attached it on this post.</p><p> </p><p>
Hope you will find it useful!</p><p> </p><p> </p><p>
<a class="ipsAttachLink ipsAttachLink_image" href="https://www.edugeek.net/uploads/monthly_2012_02/Homegroup_Icon_in_My_Computer.png.e707ef5d3893340f1b30c58c9ca7968a.png" data-fileid="126" data-fileext="png" rel=""><img class="ipsImage ipsImage_thumbnailed" alt="Homegroup_Icon_in_My_Computer.png.e707ef5d3893340f1b30c58c9ca7968a.png" data-fileid="126" data-src="https://www.edugeek.net/uploads/monthly_2012_02/Homegroup_Icon_in_My_Computer.png.e707ef5d3893340f1b30c58c9ca7968a.png" src="https://www.edugeek.net/applications/core/interface/js/spacer.png" /></a></p><p> </p><p> </p><p>
Steps on how to add an ADM template can be found here:</p><p>
<a href="http://www.windowsnetworking.com/articles_tutorials/Using-Custom-ADM-Templates-Windows-Server-2008-Vista-7.html" rel="external nofollow">http://www.windowsnetworking.com/articles_tutorials/Using-Custom-ADM-Templates-Windows-Server-2008-Vista-7.html</a></p>]]></description><guid isPermaLink="false">613</guid><pubDate>Wed, 22 Feb 2012 13:56:02 +0000</pubDate></item><item><title>Check who is logged into a machine</title><link>https://www.edugeek.net/blogs/entry/609-check-who-is-logged-into-a-machine/</link><description><![CDATA[<p>From time to time you may wish to find out who is logged into a machine. I find this batch file handy for doing this. Its quick, simple and easy.</p><p> </p><p>
Just copy and paste the below code into notepad and save the file as who.bat</p><p> </p><p>
</p><pre class="ipsCode">@echo off

:CHECK
echo Checking Connection ...
ping %1 -n 1  | findstr "TTL=" &gt;nul &amp;&amp; GOTO MAIN || GOTO ERROR
GOTO END

:ERROR
echo Device Unreachable
GOTO END

:MAIN

wmic /node: "%1" computersystem get username

GOTO END

:END

echo.
</pre><div></div><p></p><p> </p><p>
Now open the command prompt. run to the location of the script then a space then the name of the machine. For example</p><p> </p><p>
C:\who.bat Computer1</p><p> </p><p>
All Done!</p>]]></description><guid isPermaLink="false">609</guid><pubDate>Thu, 09 Feb 2012 01:24:17 +0000</pubDate></item><item><title>Rename a computer remotely</title><link>https://www.edugeek.net/blogs/entry/605-rename-a-computer-remotely/</link><description><![CDATA[<p>From time to time we need to rename computers on the domain. The computers can sometimes be in a locked room, in a remote site or you simply cant be bothered visiting them.</p><p> </p><p>
This code below will allow you to rename computers on the domain form the comfort of your own desk. Once you have entered you old name and your new name the computer concerned will automatically reboot and your all done! All you have to do is make sure nobody is using the machine and that the new computer name is available in AD.</p><p> </p><p>
If you are still running Windows XP you will have to install the <a href="http://www.microsoft.com/download/en/details.aspx?id=18546" rel="external nofollow">Windows XP Support Tools</a>. If you are on Vista or Windows 7 you will need to install the RSAT tools.</p><p> </p><p>
Just copy the below code into a notepad file. Set the username and password of an account with appropriate permissions, then save the file as a .vbs then your good to go! Just run the new file and you will see prompts for the new name and the old name.</p><p> </p><p>
</p><pre class="ipsCode">'On Error Resume Next

'open the file system object
Set oFSO = CreateObject("Scripting.FileSystemObject")
set WSHShell = wscript.createObject("wscript.shell")

Dim sNewCname     'Variable to hold Computer Name you enter in the inputbox
Dim sOldCname        'computers current name

'First param is message text, second is message title
sOldCname = InputBox("Enter computers current name","Computer Rename Utility")
sNewCname = InputBox("Enter computers new name","Computer Rename Utility")

Call WSHShell.Run("cmd.exe /K netdom renamecomputer " &amp; sOldCname &amp; " /newname:" &amp; sNewCname &amp; " /userd:DOMAIN\USER /passwordd:PASSWORD /usero:DOMAIN\USER /passwordo:PASSWORD /force /reboot:5 ")</pre><div></div><p></p>]]></description><guid isPermaLink="false">605</guid><pubDate>Sun, 05 Feb 2012 22:08:43 +0000</pubDate></item><item><title>How To Guide: Deploy VNC via Group Policy</title><link>https://www.edugeek.net/blogs/entry/598-how-to-guide-deploy-vnc-via-group-policy/</link><description><![CDATA[<p>I originally posted this in the forums, but i think it fits here better.</p><p> </p><p>
I have had a few people ask how to deploy VNC via group policy. If you have a large network where you want to install VNC on a large amount of computers this would be an ideal solution.</p><p> </p><p>
For this guide i used TightVNC - the website is here: tightvnc.com</p><p> </p><p>
I decide to go for TightVNC becuase</p><p> </p><p>
</p><ul><li>Easy to use<br />
</li><li>Free<br />
</li><li>Ability to hide the icon in the system tray<br />
</li><li>Built in access control options<br />
</li><li>Very lightweight<br />
</li><li>Ability for the end user to approve connections<br />
</li><li>Fully compatible with Windows 7<br />
</li></ul><p></p><p> </p><p> </p><p>
I have tested this on the following systems</p><p> </p><p>
</p><ul><li>Windows XP x32<br />
</li><li>Windows 7 x32<br />
</li><li>Windows 7 x64<br />
</li><li>Windows Server 2008 R2<br />
</li></ul><p></p><p> </p><p> </p><p>
With the below guide, anything in red are paths you need to change to make it suitable for deployment in your network. Once this script has installed VNC it is designed to automatically quit when you run it again.</p><p> </p><p>
<strong>Creating the installer files</strong></p><p> </p><p>
</p><ol style="list-style-type:decimal;"><li>Create a network share on a server to store the script and installers. You will need to give the group "Domain Computers" the right to read and execute.<br />
</li><li>Download TightVNC and save it in the above share and install onto 1 computer.<br />
</li><li>On the computer you installed TightVNC, configure to how you like it (eg set a password). Click Here for Documentation &amp; Click Here for FAQ<br />
</li><li>Once configured go to regedit and export the following folder. "HKEY_LOCAL_MACHINE\Software\TightVNC" &amp; save it in the above share. To export right click the TightVNC folder and press export.<br />
</li><li>Open NotePad and copy the below code. Please change the red areas to the path of your network share. The script will remove the VNC stuff from the program files to stop users from playing. If you do not want to do this remove the last line of the code.<br /> <br /> <br />
Code:<br /> <br />
<pre class="ipsCode">if exist "C:\Program Files (x86)\TightVNC" goto :eof ELSE
if exist "C:\Program Files\TightVNC" goto :eof ELSE
"c:\vnc\tightvnc-2.0.2-setup.exe" /S
regedit /S "c:\vnc\tightvnc.reg"
net stop "TightVNC Server"
net start "TightVNC Server"
rmdir /s /q "C:\Documents and Settings\All Users\Start Menu\Programs\TightVNC\"</pre><div></div><p><br /> <br />
</p></li><li>Save the file in your shared folder. You need to save it as a .bat file. For example mine is called installvnc.bat<br />
</li></ol><p></p><p> </p><p>
<strong>Adding to a group policy</strong></p><p><strong>
</strong></p><p>
</p><ol style="list-style-type:decimal;"><li>Open up an appropriate group policy that applied to your computers or create a new one.<br />
</li><li>Navigate to: Computer Configuration &gt; Policies &gt; Windows Settings &gt; Scripts &gt; Startup<br />
</li><li>Press add, then browse and find the .bat file we created before in the shared folder. Then press ok &amp; ok again.<br />
</li><li>Make sure the following group policy is enabled. Computer Configuration &gt; Policies &gt; Administrative Templates &gt; System &gt; Logon &gt; Always wait for the network at computer startup &amp; Logon<br />
</li></ol><p></p><p> </p><p> </p><p> </p><p>
When your computer startup it should install VNC and be configured.</p><p> </p><p>
Enjoy!</p>]]></description><guid isPermaLink="false">598</guid><pubDate>Mon, 23 Jan 2012 22:19:13 +0000</pubDate></item></channel></rss>
