<?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>spottedhyena.co.uk</title>
	<atom:link href="http://spottedhyena.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://spottedhyena.co.uk</link>
	<description>Spotted Hyena - A technical Blog</description>
	<lastBuildDate>Wed, 08 Feb 2012 10:43:58 +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>Deploy .exe using batch check os version and if the update is already installed.</title>
		<link>http://spottedhyena.co.uk/2012/02/deploy-exe-using-batch-check-os-version-and-if-the-update-is-already-installed/</link>
		<comments>http://spottedhyena.co.uk/2012/02/deploy-exe-using-batch-check-os-version-and-if-the-update-is-already-installed/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 10:39:29 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[.bat]]></category>
		<category><![CDATA[.exe]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=149</guid>
		<description><![CDATA[OK so i had an issue that Microsoft released an update for Windows XP that i needed to install but they didn&#8217;t do an MSI so i couldn&#8217;t deploy is using GPO which was a real pain. Instead i created &#8230; <a href="http://spottedhyena.co.uk/2012/02/deploy-exe-using-batch-check-os-version-and-if-the-update-is-already-installed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OK so i had an issue that Microsoft released an update for Windows XP that i needed to install but they didn&#8217;t do an MSI so i couldn&#8217;t deploy is using GPO which was a real pain.</p>
<p>Instead i created a script that would check the OS Version and see if the update was already installed.</p>
<ol>
<li>First we hide the script from users:<br />
<pre class="crayon-plain-tag"><code>@ECHO Off</code></pre></li>
<li>Then we check they are running the correct OS (for windows 7 &#8220;Version 6.1&#8243;)<br />
<pre class="crayon-plain-tag"><code>ver | find &quot;Windows XP&quot; &gt;NUL
if errorlevel 1 goto end</code></pre></li>
<li>Check to see if the update is installed (chance the reg location depending on the install)<br />
<pre class="crayon-plain-tag"><code>reg QUERY &quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\Windows XP\SP20\KB943729&quot; &gt;NUL 2&gt;NUL
if errorlevel 1 goto install_update
goto end</code></pre></li>
<li>Then if it is the correct OS and the update isn&#8217;t installed run the exe<br />
<pre class="crayon-plain-tag"><code>:install_update
\\PUT_YOUR_SHARE_PATH_HERE\Windows-KB943729-x86-ENU.exe /passive /norestart</code></pre></li>
<li>End (this is added so that the script will stop if the criteria are not met before the update is installed stopping errors.<br />
<pre class="crayon-plain-tag"><code>:end</code></pre></li>
<li>you can then add this to a group policy to allow it to be deployed</li>
</ol>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2012/02/deploy-exe-using-batch-check-os-version-and-if-the-update-is-already-installed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Active Sync Error EventID 3005 Unexpected Exchange Mailbox Server Error</title>
		<link>http://spottedhyena.co.uk/2012/02/active-sync-error-eventid-3005-unexpected-exchange-mailbox-server-error/</link>
		<comments>http://spottedhyena.co.uk/2012/02/active-sync-error-eventid-3005-unexpected-exchange-mailbox-server-error/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 11:23:38 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[2003]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=144</guid>
		<description><![CDATA[One of our customers was getting the below error and it took ages to find a solution so i thought i would post it here. Unexpected Exchange mailbox Server error: Server: [server.domain] User: [useremail] HTTP status code: [503]. Verify that &#8230; <a href="http://spottedhyena.co.uk/2012/02/active-sync-error-eventid-3005-unexpected-exchange-mailbox-server-error/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of our customers was getting the below error and it took ages to find a solution so i thought i would post it here.</p>
<pre class="crayon-plain-tag"><code>Unexpected Exchange mailbox Server error: Server: [server.domain] User: [useremail] HTTP status code: [503]. Verify that the Exchange mailbox Server is working correctly.

For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.</code></pre>
<p>This is how i fixed the issue:</p>
<ol>
<li>Open IIS</li>
<li>Right click Default-Website</li>
<li>Click Properties</li>
<li>Click advanced</li>
<li>Review sites. most likely you will see host headers and ip address.</li>
<li>Click add</li>
<li>IP address = (all unassigned)</li>
<li>TCP Port = 80</li>
<li>Host Header Value = (Blank)</li>
<li>Click OK</li>
<li>delete the entry with the host headers and ip address assignerd.</li>
</ol>
<p>&nbsp;</p>
<p>This should resolve the issue please comment if you have any issues doing this.</p>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2012/02/active-sync-error-eventid-3005-unexpected-exchange-mailbox-server-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office 365 Scan to Email</title>
		<link>http://spottedhyena.co.uk/2012/01/office-365-scan-to-email/</link>
		<comments>http://spottedhyena.co.uk/2012/01/office-365-scan-to-email/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 09:41:26 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=105</guid>
		<description><![CDATA[Ok so this one had me stumped for a LONG time trying to figure out how to get scanners to authenticate to office 365 in the end i found out that the scanner i was using wasnt supported in this &#8230; <a href="http://spottedhyena.co.uk/2012/01/office-365-scan-to-email/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ok so this one had me stumped for a LONG time trying to figure out how to get scanners to authenticate to office 365 in the end i found out that the scanner i was using wasnt supported in this format so i found this work around hope it helps you!</p>
<p>You basically need to create an smtp relay on a local server / computer to forward your scans to then set the smtp relay up as below which will then do the authentication part for you.</p>
<p>&nbsp;</p>
<h4 id="tocHeadRef">SMTP relay settings for Office 365</h4>
<p>To configure an SMTP relay in Office 365, you need the following:</p>
<ul>
<li>A user who has an Exchange Online mailbox</li>
<li>The SMTP set to port 587</li>
<li>Transport Layer Security (TLS) encryption enabled</li>
<li>The mailbox server name</li>
</ul>
<p>To obtain SMTP settings information, follow these steps:</p>
<ol>
<li>Sign in to Outlook Web App.</li>
<li>Click <strong>Options</strong>, and then click <strong>See All Options</strong>.</li>
<li>Click Account, click <strong>My Account</strong>, and then in the <strong>Account Information</strong> area, click <strong>Settings for POP, IMAP, and SMTP access</strong>.
<p>Note the SMTP settings information that is displayed on this page.</li>
</ol>
<h4 id="tocHeadRef">Configure Internet Information Services (IIS)</h4>
<p>To configure Internet Information Services (IIS) so that your LOB programs can use the SMTP relay, follow these steps:</p>
<ol>
<li>Create a user who has an Exchange Online mailbox. To do this, use one of the following methods:
<ul>
<li>Create the user in Active Directory Domain Services, run directory synchronization, and then activate the user by using an Exchange Online license.
<p><strong>Note </strong>The user must not have an on-premises mailbox.</li>
<li>Create the user by using the Office 365 portal or by using Microsoft Online Services PowerShell Module, and then assign the user an Exchange Online license.</li>
</ul>
</li>
<li>Configure the IIS SMTP relay server. To do this, follow these steps:
<ol>
<li type="a">Install IIS on an internal server. During the installation, select the option to install the SMTP components.</li>
<li type="a">In Internet Information Services (IIS) Manager, expand the Default SMTP Virtual Server, and then click <strong>Domains</strong>.</li>
<li type="a">Right-click <strong>Domains</strong>, click <strong>New</strong>, click <strong>Domain</strong>, and then click <strong>Remote</strong>.</li>
<li type="a">In the <strong>Name</strong> box, type <strong>*.com</strong>, and then click <strong>Finish</strong>.</li>
</ol>
</li>
<li>Double-click the domain that you just created.</li>
<li>Click to select the <strong>Allow incoming mail to be relayed to this domain </strong>check box.</li>
<li>In the <strong>Route domain</strong> area, click <strong>Forward all mail to smart host</strong>, and then in the box, type the mailbox server name.</li>
<li>Click<strong> Outbound Security</strong>, and then configure the following settings:
<ol>
<li type="a">Click <strong>Basic Authentication</strong>.</li>
<li type="a">In the <strong>User name</strong> box, type the user name of the Office 365 mailbox user.</li>
<li type="a">In the <strong>Password</strong> box, type the password of the Office 365 mailbox user.</li>
<li type="a">Click to select the <strong>TLS encryption </strong>check box, and then click <strong>OK</strong>.</li>
</ol>
</li>
<li>Right-click the Default SMTP Virtual Server node, and then click <strong>Properties</strong>.</li>
<li>On the <strong>Delivery </strong>tab, click <strong>Outbound Connections</strong>.</li>
<li>In the <strong>TCP Port </strong>box, type 587, and then click <strong>OK</strong>.</li>
<li>Click <strong>Outbound Security</strong>, and then configure the following settings:
<ol>
<li type="a">Click <strong>Basic Authentication</strong>.</li>
<li type="a">In the <strong>User name</strong> box, type the user name of the Office 365 mailbox user.</li>
<li type="a">In the <strong>Password</strong> box, type the password of the Office 365 mailbox user.</li>
<li type="a">Click to select the <strong>TLS encryption </strong>check box, and then click <strong>OK</strong>.</li>
</ol>
</li>
<li>On the <strong>Access </strong>tab, click <strong>Authentication</strong>, click to select the <strong>Anonymous access</strong> check box, and then click <strong>OK</strong>.</li>
<li>On the <strong>Relay </strong>tab, select <strong>Only the list below</strong>, type the IP addresses of the client computers that will be sending the email messages, and then click <strong>OK</strong>.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2012/01/office-365-scan-to-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assigning &#8220;Send As&#8221; Permissions to a user</title>
		<link>http://spottedhyena.co.uk/2011/12/assigning-send-as-permissions-to-a-user/</link>
		<comments>http://spottedhyena.co.uk/2011/12/assigning-send-as-permissions-to-a-user/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 10:54:44 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[2003]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=101</guid>
		<description><![CDATA[It was brought to my attention that following the steps listed in KB327000 (http://support.microsoft.com/?kbid=327000), which applies to Exchange 2000 and 2003, to assign a user &#8220;Send As&#8221; permission as another user did not appear to work.  I too tried to &#8230; <a href="http://spottedhyena.co.uk/2011/12/assigning-send-as-permissions-to-a-user/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Verdana; font-size: x-small;">It was brought to my attention that following the steps listed in KB327000 (</span><a href="http://support.microsoft.com/?kbid=327000"><span style="font-family: Verdana; font-size: x-small;">http://support.microsoft.com/?kbid=327000</span></a><span style="font-family: Verdana; font-size: x-small;">), which applies to Exchange 2000 and 2003, to assign a user &#8220;Send As&#8221; permission as another user did not appear to work.  I too tried to follow the steps and found that they did not work. I know this feature works, so I went looking around for other documentation on this and found KB281208 (</span><a href="http://support.microsoft.com/?kbid=281208"><span style="font-family: Verdana; font-size: x-small;">http://support.microsoft.com/?kbid=281208</span></a><span style="font-family: Verdana; font-size: x-small;">) which applies to Exchange 5.5 and 2000.  Following the steps in KB281208 properly gave an user &#8220;Send As&#8221; permission as another user. But I found the steps listed in KB281208 were not complete either. The additional step that I performed was to remove all other permissions other than &#8220;Send As&#8221;.  Here are the modified steps for KB281208 that I performed (changes noted in <span style="color: #0000ff;">blue</span>):</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">1. Start Active Directory Users and Computers; click <strong>Start</strong>, point to <strong>Programs</strong>, point to<strong>Administrative Tools</strong>, and then click <strong>Active Directory Users and Computers</strong>.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">2. On the <strong>View</strong> menu, make sure that <strong>Advanced Features</strong> is selected.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">3. Double-click the user that you want to grant send as rights for, and then click the<strong>Security</strong> tab.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">4. Click <strong>Add</strong>, click the user that you want to give send as rights to, and then check <strong>send as</strong> under <strong>allow</strong> in the <strong>Permissions</strong> area.</span></p>
<p><span style="color: #0000ff; font-family: Verdana; font-size: x-small;">4.5  Remove all other permissions granted by default so only the <strong>send as</strong> permission is granted.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">5. Click <strong>OK</strong> to close the dialog box.</p>
<p>So after I verified that the steps for KB281208 worked, I was curious as to why the steps for KB327000 did not work.  What I found was that Step #7 of KB327000 applied to the permission to &#8220;User Objects&#8221; instead of &#8220;This Object Only&#8221;.  Here are the modified steps for KB327000 that I performed:</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">1. On an Exchange computer, click <strong>Start</strong>, point to <strong>Programs</strong>, point to <strong>Microsoft Exchange</strong>, and then click <strong>Active Directory Users and Computers</strong>.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">2. On the <strong>View</strong> menu, click to select <strong>Advanced Features</strong>.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">3. Expand <strong>Users</strong>, right-click the <em>MailboxOwner</em> object where you want to grant the permission, and then click <strong>Properties</strong>.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">4. Click the <strong>Security</strong> tab, and then click <strong>Advanced</strong>.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">5. In the <strong>Access Control Settings for <em>MailboxOwner</em></strong> dialog box, click <strong>Add</strong>.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">6. In the <strong>Select User, Computer, or Group</strong> dialog box, click the user account or the group that you want to grant &#8220;Send as&#8221; permissions to, and then click <strong>OK</strong>.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">7. In the <strong>Permission Entry for <em>MailboxOwner</em></strong> dialog box, click <strong><span style="color: #0000ff;">This Object Only</span></strong> in the<strong>Apply</strong> onto list.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">8. In the <strong>Permissions</strong> list, locate <strong>Send As</strong>, and then click to select the <strong>Allow</strong> check box.</span></p>
<p><span style="font-family: Verdana; font-size: x-small;">9. Click <strong>OK</strong> three times to close the dialog boxes.</p>
<p>The KB articles were updated to include correct information. But, if you had problems with this in the past, this might be why!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2011/12/assigning-send-as-permissions-to-a-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To View and Kill Processes On Remote Windows Computers</title>
		<link>http://spottedhyena.co.uk/2011/09/how-to-view-and-kill-processes-on-remote-windows-computers/</link>
		<comments>http://spottedhyena.co.uk/2011/09/how-to-view-and-kill-processes-on-remote-windows-computers/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 13:30:38 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=98</guid>
		<description><![CDATA[Windows provides several methods to view processes remotely on another computer. Terminal Server is one way or you can use the command line utility pslist from Microsoft Sysinternals site. While both options are good alternatives, Windows XP and Vista provides &#8230; <a href="http://spottedhyena.co.uk/2011/09/how-to-view-and-kill-processes-on-remote-windows-computers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Windows provides several methods to view processes remotely on another computer. Terminal Server is one way or you can use the command line utility pslist from Microsoft Sysinternals site. While both options are good alternatives, Windows XP and Vista provides a built in utility for viewing and killing process on remote Computers using Tasklist and Taskkill commands.</p>
<p>Both tasklist.exe and taskkill,exe can be found in %SYSTEMROOT%\System32 (typically C:\Windows\System32) directory.</p>
<p>To view processes on a remote Computer in your home, you will need to know the username and password on the Computer you want to view the processes. Once you have the user account information, the syntax for using <em>tasklist</em> follows:</p>
<p><strong><em>tasklist.exe /S SYSTEM /U USERNAME /P PASSWORD</em></strong></p>
<p>(To view all tasklist options, type <em>tasklist /?</em> at the command prompt)</p>
<p>To execute, click on <em>Start \ Run…</em> and in the run window type <em>cmd</em> to open a command prompt. Then type the tasklist command, substituting <strong><em>SYSTEM</em></strong> for the remote computer you want to view processes, <strong><em>USERNAME</em></strong> and <strong>PASSWORD</strong> with an account/password on the remote Computer.</p>
<p>(<em>NOTE:</em> <em>if you are in a Domain environment and have Administrator rights to the remote Computer, you will may not need to specify a Username and Password</em>)</p>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2011/09/how-to-view-and-kill-processes-on-remote-windows-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fortigate and LDAP 4.0 MR3 Patch1</title>
		<link>http://spottedhyena.co.uk/2011/09/fortigate-and-ldap-4-0-mr3-patch1/</link>
		<comments>http://spottedhyena.co.uk/2011/09/fortigate-and-ldap-4-0-mr3-patch1/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 16:17:28 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[Fortigate]]></category>
		<category><![CDATA[fortigate]]></category>
		<category><![CDATA[fortinet]]></category>
		<category><![CDATA[ldap]]></category>
		<category><![CDATA[samaccountname]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=93</guid>
		<description><![CDATA[Hi Guys, I have been setting up a lot of Fortigate&#8217;s recently and on my first few had issues with the settings for LDAP i found that it was tricky to remember the correct settings and also typing out the &#8230; <a href="http://spottedhyena.co.uk/2011/09/fortigate-and-ldap-4-0-mr3-patch1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi Guys,</p>
<p>I have been setting up a lot of Fortigate&#8217;s recently and on my first few had issues with the settings for LDAP i found that it was tricky to remember the correct settings and also typing out the long LDAP Strings can be a bit tricky and cause typo&#8217;s.</p>
<ol>
<li>Logon to the fortigate and go to the Users -&gt; Remote -&gt; LDAP (Create New)</li>
<li>Fill in a Name for the connector</li>
<li>Fill in the IP Address of the server that has LDAP Installed</li>
<li>Change the Common Name Identifier to:<strong> sAMAccountName</strong></li>
<li>Enter the Distinguished Name if your domain was domain.local the distinguished name would be: <strong>DC=domain,DC=local</strong></li>
<li>Make your Bind Type<strong> Regular</strong></li>
<li>In the User DN Box you must type the full path to the user e.g. if you user is domain.local/users/service accounts/fortigate you would need the following: <strong>CN=fortigate,OU=Service Accounts,OU=Users,OU=MyBusiness,DC=domain,DC=local</strong></li>
<li>type the password for your service account</li>
</ol>
<div>This should be all that you require. one thing to keep an eye on is typo&#8217;s when doing the User DN this will stop you from being able to logon with an SSL-VPN or anything for that matter!</div>
<div>If you get an error in the logs for SSL-VPN saying no_matching_policy then you will have a typo somewhere.</div>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2011/09/fortigate-and-ldap-4-0-mr3-patch1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server 2003 Reinstall Terminal Services Licensing.</title>
		<link>http://spottedhyena.co.uk/2011/08/server-2003-reinstall-terminal-services-licensing/</link>
		<comments>http://spottedhyena.co.uk/2011/08/server-2003-reinstall-terminal-services-licensing/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 10:06:47 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[Terminal Services]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[licencing]]></category>
		<category><![CDATA[licensing]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tlslic.edb]]></category>
		<category><![CDATA[tslic.edb]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=89</guid>
		<description><![CDATA[I Came across an issue today where i needed to reinstall terminal services licensing but when you do this licensing is lost and needs to be re-applied. I managed to resolve this issue by copying the licensing db to a different folder &#8230; <a href="http://spottedhyena.co.uk/2011/08/server-2003-reinstall-terminal-services-licensing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I Came across an issue today where i needed to reinstall terminal services licensing but when you do this licensing is lost and needs to be re-applied.</p>
<p>I managed to resolve this issue by copying the licensing db to a different folder and then re-installing terminal services and copying it back.</p>
<p>&nbsp;</p>
<ol>
<li>stop Terminal Services Licensing service</li>
<li>Copy c:\windows\system32\LServer\TLSLic.edb</li>
<li>Paste the db to a different location</li>
<li>Uninstall Terminal Services Licensing from add remove components</li>
<li>Re-Install Terminal Services Licensing</li>
<li>stop Terminal Services Licensing service</li>
<li>copy the TLSLic.edb back to c:\windows\system32\LServer\ overwriting the new db that is in there</li>
<li>start Terminal Services Licensing service</li>
</ol>
<p>Now you will notice that TS Licensing is working and all of your licences still work.</p>
<p>&nbsp;</p>
<p>NOTE: You CANNOT move this to another server it is registered to that Licensing server!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2011/08/server-2003-reinstall-terminal-services-licensing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Block iGoogle with Fortigate</title>
		<link>http://spottedhyena.co.uk/2011/08/block-igoogle-with-fortigate/</link>
		<comments>http://spottedhyena.co.uk/2011/08/block-igoogle-with-fortigate/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 13:02:10 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[Fortigate]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=84</guid>
		<description><![CDATA[Ok so i had a customer that wanted to block iGoogle but allow google which turns out to be tricky as the only way to tell the difference is by the gadgets and the title bar. i tried to do &#8230; <a href="http://spottedhyena.co.uk/2011/08/block-igoogle-with-fortigate/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ok so i had a customer that wanted to block iGoogle but allow google which turns out to be tricky as the only way to tell the difference is by the gadgets and the title bar.<br />
i tried to do some research about iGoogle: every sites of iGoogle what I tested has the same title in html source code. Exactly: &lt;title&gt;iGoogle&lt;/title&gt;</p>
<p>So you can use DLP sensor to detect this title in http request and block this sites. I have tested this on a FortiGate-60B with 4.2.3 version of firmware.</p>
<p><a href="http://spottedhyena.co.uk/wp-content/uploads/2011/08/01.jpg"><img class="alignnone size-full wp-image-85" title="01" src="http://spottedhyena.co.uk/wp-content/uploads/2011/08/01.jpg" alt="" width="500" height="400" /></a><br />
I tried to solve this problem over application control, web content filter and FortiGuard web filter but I didnt find solution here.</p>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2011/08/block-igoogle-with-fortigate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning: Cannot modify header information &#8211; headers already sent by&#8230;</title>
		<link>http://spottedhyena.co.uk/2011/08/warning-cannot-modify-header-information-headers-already-sent-by/</link>
		<comments>http://spottedhyena.co.uk/2011/08/warning-cannot-modify-header-information-headers-already-sent-by/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 16:33:20 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[href]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[refresh]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=74</guid>
		<description><![CDATA[Ok so today i was doing some PHP coding and get the dreaded header error caused me a bit of a headache as i needed to redirect some pages. After a bit of searching i managed to find an alternative &#8230; <a href="http://spottedhyena.co.uk/2011/08/warning-cannot-modify-header-information-headers-already-sent-by/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ok so today i was doing some PHP coding and get the dreaded header error caused me a bit of a headache as i needed to redirect some pages. After a bit of searching i managed to find an alternative to using:</p>
<pre class="crayon-plain-tag"><code>header(location:&amp;quot;index.php&amp;quot;);</code></pre>
<p>So to get rid of the error that this produces simply change it to any of the below:</p>
<pre class="crayon-plain-tag"><code>ob_start();

//script

header(&amp;quot;Location:file.php&amp;quot;);

ob_end_flush();</code></pre><p><p>OR</p>
<pre class="crayon-plain-tag"><code>if ($success)
{
echo '&amp;lt;META HTTP-EQUIV=&amp;quot;Refresh&amp;quot; Content=&amp;quot;0; URL=success.php&amp;quot;&amp;gt;';
exit;
}
else
{
echo '&amp;lt;META HTTP-EQUIV=&amp;quot;Refresh&amp;quot; Content=&amp;quot;0; URL=retry.php&amp;quot;&amp;gt;';
exit;
}</code></pre>
<p>OR</p>
<pre class="crayon-plain-tag"><code>printf(&amp;quot;&amp;lt;script&amp;gt;location.href='errorpage.html'&amp;lt;/script&amp;gt;&amp;quot;);</code></pre><p><p><p>
<p>i used the last option as i found this worked best compared to the others with my program however they may all work well for your application</p>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2011/08/warning-cannot-modify-header-information-headers-already-sent-by/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mapping a network drive in NT4 with logon credentials</title>
		<link>http://spottedhyena.co.uk/2011/07/mapping-a-network-drive-in-nt4-with-logon-credentials/</link>
		<comments>http://spottedhyena.co.uk/2011/07/mapping-a-network-drive-in-nt4-with-logon-credentials/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 09:20:55 +0000</pubDate>
		<dc:creator>marksie1988</dc:creator>
				<category><![CDATA[NT 4]]></category>
		<category><![CDATA[credentials]]></category>
		<category><![CDATA[drive]]></category>
		<category><![CDATA[logon]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[NT4]]></category>

		<guid isPermaLink="false">http://spottedhyena.co.uk/?p=69</guid>
		<description><![CDATA[Ok so today i have had a customer come to me saying that when they map a network drive in NT 4 the user details don&#8217;t get remembered when the pc is rebooted. Here is a simple solution to the issue we &#8230; <a href="http://spottedhyena.co.uk/2011/07/mapping-a-network-drive-in-nt4-with-logon-credentials/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ok so today i have had a customer come to me saying that when they map a network drive in NT 4 the user details don&#8217;t get remembered when the pc is rebooted.</p>
<p>Here is a simple solution to the issue we have been having:</p>
<pre class="crayon-plain-tag"><code>net use I: \\SERVERNAME\SHARENAME /User:DOMAIN\username password</code></pre>
<p>run this at startup or as a logon script and the issue will be no more.</p>
]]></content:encoded>
			<wfw:commentRss>http://spottedhyena.co.uk/2011/07/mapping-a-network-drive-in-nt4-with-logon-credentials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

