<?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>freethecityone.co.uk &#187; Microsoft</title>
	<atom:link href="http://www.freethecityone.co.uk/category/microsoft/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freethecityone.co.uk</link>
	<description>Geek in the city</description>
	<lastBuildDate>Tue, 03 Jan 2012 09:11:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Cannot connect to the configuration database</title>
		<link>http://www.freethecityone.co.uk/2011/02/cannot-connect-to-the-configuration-database/</link>
		<comments>http://www.freethecityone.co.uk/2011/02/cannot-connect-to-the-configuration-database/#comments</comments>
		<pubDate>Sun, 06 Feb 2011 15:12:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SBS]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2011/02/cannot-connect-to-the-configuration-database/</guid>
		<description><![CDATA[Following a series of Windows Updates to your server you may encounter an issue connecting to your Sharepoint website. If the site comes up with the message “Cannot connect to the configuration database” then this is the result of one of the updates applied. To resolve the issue follow the steps below on your server: [...]]]></description>
			<content:encoded><![CDATA[<p>Following a series of Windows Updates to your server you may encounter an issue connecting to your Sharepoint website. If the site comes up with the message “Cannot connect to the configuration database” then this is the result of one of the updates applied. To resolve the issue follow the steps below on your server:</p>  <ol>   <li>Go to Start &gt; All Programs &gt; Microsoft SQL Server 2005 (or 2008) &gt; Configuration Tools &gt; SQL Server Configuration Manager</li>    <li>Now navigate through the tree on the left side to “SQL Server Network Configuration” and select “Protocols for MSSQLServer”</li>    <li>From the right pane ensure that “Named Pipes” is enabled     <br /><a href="http://www.freethecityone.co.uk/wp-content/uploads/2011/02/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.freethecityone.co.uk/wp-content/uploads/2011/02/image_thumb.png" width="542" height="269" /></a> </li>    <li>Once it has been enabled then you can restart the service “SQL Server (MSSQLSERVER)”</li>    <li>Now check the Sharepoint website to confirm that it is working again.</li> </ol>  <p>These steps resolved the issue on our server so I hope this will help others resolve their issue.</p>  <p>- Rob</p>]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2011/02/cannot-connect-to-the-configuration-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharepoint 2010 backup with Powershell</title>
		<link>http://www.freethecityone.co.uk/2010/12/sharepoint-2010-backup-with-powershell/</link>
		<comments>http://www.freethecityone.co.uk/2010/12/sharepoint-2010-backup-with-powershell/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 12:12:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SBS]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[small business]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2010/12/sharepoint-2010-backup-with-powershell/</guid>
		<description><![CDATA[Always one for trying to get things automated then I wanted to get backups of my new Sharepoint 2010 website automated. Previously I have not had a great experience of this, as I never tried a restore of the backup set before it was time...still we live and learn. In previous versions of Sharepoint backups [...]]]></description>
			<content:encoded><![CDATA[<p>Always one for trying to get things automated then I wanted to get backups of my new Sharepoint 2010 website automated. Previously I have not had a great experience of this, as I never tried a restore of the backup set before it was time...still we live and learn. In previous versions of Sharepoint backups were taken care of through the use of STSADM however this is not the case in the latest version. You can, as always, run a manual backup through the central administration console on the server but this is not what I needed. So I started searching around and found a couple of articles on the web which described the use of the Powershell to perform backups, so here is what I have come up with through the combination of the two sources:</p>  <p><code>     <br />Add-PsSnapin Microsoft.SharePoint.Powershell -ErrorAction SilentlyContinue       <br />try       <br />{       <br />&#160; $today = (Get-Date -Format dd-MM-yyyy)       <br /># Created the a new directory with todays date and store in a variable       <br />&#160; [IO.Directory]::CreateDirectory(&quot;F:\sp_backup\&quot;+$today)       <br />&#160; $backuppath = &quot;F:\sp_backup\&quot;+$today</code> </p>  <p># This will iterate through all of your sharepoint sites and create a backup with the site URL as the name&#160; <br />&#160; Get-SPWebApplication | Get-SPSite | ForEach-Object{$filepath = $backuppath + &quot;\&quot; + $_.Url.Replace(&quot;<a href="http://&quot;,&quot;&quot;).Replace(&quot;/&quot;,&quot;-&quot;).Replace(&quot;:&quot;,&quot;-&quot;)">http://&quot;,&quot;&quot;).Replace(&quot;/&quot;,&quot;-&quot;).Replace(&quot;:&quot;,&quot;-&quot;)</a> + &quot;.bak&quot; ; Backup-SPSite -Identity $_.Url -Path $filepath}</p>  <p># Edit this address to suit your own needs&#160; <br />&#160; $emailFrom = "<a href="mailto:&ldquo;Sharepoint@server.local">Sharepoint@server.local</a>"</p>  <p># This is the address that the notification email should be sent to&#160; <br />&#160; $emailTo = "<a href="mailto:&ldquo;administrator@server.local">administrator@server.local</a>"</p>  <p># Subject for the notification email. The + "$today" part will add the date in the subject.    <br />&#160; $subject = &quot;The SharePoint sites Backup was Successful for &quot;+&quot;$today&quot;</p>  <p># Body or the notification email. The + "$today" part will add the date in the subject.    <br />&#160; $body = &quot;The SharePoint sites Backup was Successful for &quot;+&quot;$today&quot;</p>  <p>&#160; # IP address of your SMTP server. Make sure relay Is enabled for the SharePoint server on your SMTP server    <br />&#160; $smtpServer = &quot;1.1.1.1&quot;     <br />&#160; $smtp = new-object Net.Mail.SmtpClient($smtpServer)     <br />&#160; $smtp.Send($emailFrom, $emailTo, $subject, $body)     <br />}     <br />Catch     <br />{     <br />&#160; $ErrorMessage = $_.Exception.Message     <br />&#160; # Configure the below parameters as per the above.     <br />&#160; $emailFrom = "<a href="mailto:&ldquo;Sharepoint@server.local">Sharepoint@server.local</a>"     <br />&#160; $emailTo = "<a href="mailto:&ldquo;administrator@server.local">administrator@server.local</a>"     <br />&#160; $subject = &quot;The SharePoint sites Backup Job failed on &quot;+&quot;$today&quot;     <br />&#160; $body = &quot;The SharePoint sites Backup Job failed on &quot;+&quot;$today and the reason for failure was $ErrorMessage.&quot;     <br />&#160; $smtpServer = &quot;1.1.1.1&quot;     <br />&#160; $smtp = new-object Net.Mail.SmtpClient($smtpServer)     <br />&#160; $smtp.Send($emailFrom, $emailTo, $subject, $body)     <br />} </p>    <p>&#160;</p>  <p>This script can simply be copied into notepad and saved onto your server as a ".ps1" file. This can then be run straight from the servers "run" command by entering "powershell {scriptname}.ps1" and it will create a backup file, this in turn can be used to created a scheduled task on your server to be run each day/week etc.</p>  <p>Credit where due though, this script is a combination of the following 2 sources:</p>  <p><a href="http://thecommunicator.co.cc/2010/12/07/automated-powershell-script-to-backup-sharepoint-farm-or-site-collection-with-email-notification/">http://thecommunicator.co.cc/2010/12/07/automated-powershell-script-to-backup-sharepoint-farm-or-site-collection-with-email-notification/</a></p>  <p><a href="http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?List=56f96349-3bb6-4087-94f4-7f95ff4ca81f&amp;ID=191&amp;Web=48e6fdd1-17db-4543-b2f9-6fc7185484fc">http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?List=56f96349-3bb6-4087-94f4-7f95ff4ca81f&amp;ID=191&amp;Web=48e6fdd1-17db-4543-b2f9-6fc7185484fc</a></p>  <p>Hopefully this will help others out there <img style="border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.freethecityone.co.uk/wp-content/uploads/2010/12/wlEmoticon-smile.png" /></p>  <p>- Rob</p>]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2010/12/sharepoint-2010-backup-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharepoint Foundation 2010 and Sharepoint Workspace</title>
		<link>http://www.freethecityone.co.uk/2010/12/sharepoint-foundation-2010-and-sharepoint-workspace/</link>
		<comments>http://www.freethecityone.co.uk/2010/12/sharepoint-foundation-2010-and-sharepoint-workspace/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 14:03:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SBS]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2010/12/sharepoint-foundation-2010-and-sharepoint-workspace/</guid>
		<description><![CDATA[Having re-launched my love affair with Sharepoint since the introduction of Sharepoint Foundation 2010 I really do love it. Much of the work that I have done previously when out and about have been using Dropbox which has worked great but as more people in the business needed access to the same data as me [...]]]></description>
			<content:encoded><![CDATA[<p>Having re-launched my love affair with <a href="http://sharepoint.microsoft.com/en-us/pages/default.aspx" target="_blank">Sharepoint</a> since the introduction of <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=49c79a8a-4612-4e7d-a0b4-3bb429b46595&amp;displaylang=en" target="_blank">Sharepoint Foundation 2010</a> I really do love it. Much of the work that I have done previously when out and about have been using <a href="https://www.dropbox.com" target="_blank">Dropbox</a> which has worked great but as more people in the business needed access to the same data as me then I needed another solution. Since I have a nasty habit of just plonking down where I am and just starting to work I really needed something that would work well when mobile and would also utilise the infrastructure I had already..enter <a href="http://sharepoint.microsoft.com/en-us/pages/default.aspx" target="_blank">Sharepoint</a>.</p>  <p>Having configured it for remote use it was great but it was still a little clunky as I needed to be online to do anything (I could work through Outlook but it is not too pretty IMHO)..then I discovered <a href="http://office.microsoft.com/en-gb/sharepoint-workspace/" target="_blank">Microsoft Sharepoint Workspace</a>, formally Groove. The only real drawback about it is that you can only get it with <a href="http://office.microsoft.com/en-gb/professional-plus/" target="_blank">Microsoft Office Professional Plus 2010</a> which is only available through Microsoft Volume Licensing, a real over sight by <a href="http://www.microsoft.com/" target="_blank">Microsoft</a> in my opinion. That said, if you do have it then use it!!</p>  <p>As standard, Sharepoint Foundation 2010 does not work when you click the link in the library that says "Sync to Sharepoint Workspace" you get the message:</p>  <blockquote>   <p>SharePoint Workspace was unable to interpret the SharePoint location. Please check and ensure the location contains no typing errors.</p> </blockquote>  <p>This is due to a change which needs to be made on the Sharepoint server to make it work, follow the link below to resolve the issue:</p>  <p><a href="http://weblogs.asp.net/jeffwids/archive/2010/05/06/configuring-sharepoint-foundation-2010-for-sharepoint-workspace-2010.aspx">http://weblogs.asp.net/jeffwids/archive/2010/05/06/configuring-sharepoint-foundation-2010-for-sharepoint-workspace-2010.aspx</a></p>  <p>If you have Sharepoint setup on a none standard port then ensure that you have it specified at the end of the URL.</p>  <p>- Rob</p>]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2010/12/sharepoint-foundation-2010-and-sharepoint-workspace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Security Essential free to SMB&#8217;s</title>
		<link>http://www.freethecityone.co.uk/2010/09/microsoft-security-essential-free-to-smbs/</link>
		<comments>http://www.freethecityone.co.uk/2010/09/microsoft-security-essential-free-to-smbs/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 12:05:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[spyware]]></category>
		<category><![CDATA[anti-virus]]></category>
		<category><![CDATA[security essentails]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2010/09/microsoft-security-essential-free-to-smbs/</guid>
		<description><![CDATA[Yesterday Microsoft announced that as from early October (no actual date as yet) it will be making Microsoft Security Essentials available for small businesses with up to 10 PC's FREE OF CHARGE. If you are not already aware of it I would highly recommend taking a look this move signifies a shift in the way [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display: inline; margin-left: 0px; margin-right: 0px" align="left" src="http://www.sectechno.com/wp-content/uploads/2009/09/Microsoft-Security-Essentials.jpg" width="172" height="173" />Yesterday <a href="http://www.microsoft.com/" target="_blank">Microsoft</a> announced that as from early October (no actual date as yet) it will be making <a href="http://www.microsoft.com/security_essentials/" target="_blank">Microsoft Security Essentials</a> available for small businesses with up to 10 PC's FREE OF CHARGE. If you are not already aware of it I would highly recommend taking a look this move signifies a shift in the way that software is delivered to the SMB space. Microsoft have always supplied <a href="http://www.microsoft.com/security_essentials/" target="_blank">Security Essentials</a> to home users free of charge but the SMB space has always been covered by <a href="http://www.microsoft.com/forefront" target="_blank">Microsoft Forefront Security</a> as part of their Business Ready Security Suite. </p>  <p>So what's the difference? The core difference between the two products is that <a href="http://www.microsoft.com/forefront" target="_blank">Microsoft Forefront Security</a> is a centrally managed product which had updates and definitions distributed from a central source which is traditionally the office server. In contrast <a href="http://www.microsoft.com/security_essentials/" target="_blank">Microsoft Security Essentials</a> is ideally suited to Small businesses that may not have a server in place, for example when they are using cloud services, or that do not require central management. Either way it is a compelling and interesting move by <a href="http://www.microsoft.com/" target="_blank">Microsoft</a> in to a market space which they currently do not have a significant market share in.</p>  <p>Either way this is great news for Small Businesses everywhere!</p>  <p>- Rob </p>]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2010/09/microsoft-security-essential-free-to-smbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2007: PST and OST files may be up to 20% larger after the February 24, 2009 Cumulative Update</title>
		<link>http://www.freethecityone.co.uk/2009/03/outlook-2007-pst-and-ost-files-may-be-up-to-20-larger-after-the-february-24-2009-cumulative-update/</link>
		<comments>http://www.freethecityone.co.uk/2009/03/outlook-2007-pst-and-ost-files-may-be-up-to-20-larger-after-the-february-24-2009-cumulative-update/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 20:31:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[small business]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2009/03/23/outlook-2007-pst-and-ost-files-may-be-up-to-20-larger-after-the-february-24-2009-cumulative-update.html</guid>
		<description><![CDATA[As per: http://support.microsoft.com/?kbid=968413 The February 24, 2009 cumulative update for Outlook 2007 includes changes related to the general reading and writing characteristics of the .pst/.ost file so that less is demanded from your hard drive to perform the same general operations in Outlook. For instance, the file flushing process was optimized so that it interacts [...]]]></description>
			<content:encoded><![CDATA[<p>As per: <a title="http://support.microsoft.com/?kbid=968413" href="http://support.microsoft.com/?kbid=968413">http://support.microsoft.com/?kbid=968413</a></p>
<p><em>The February 24, 2009 cumulative update for Outlook 2007 includes changes related to the general reading and writing characteristics of the .pst/.ost file so that less is demanded from your hard drive to perform the same general operations in Outlook. For instance, the file flushing process was optimized so that it interacts more efficiently with operating system and disk-write caches. There is also a change in the way new data is written to the .pst/.ost so that the data is saved much closer together on the physical disk. As a result, there is less physical work required from the drive, thereby speeding up the time it takes to write the same amount of data to the drive. However, a side-effect of this data writing algorithm is that .pst/.ost files will be about 20% larger than before the February 24, 2009 cumulative update.</em></p>
<p>Most people will not have noticed the difference as many corporate clients use Exchange &amp; Outlook so never see the OST files but those with PST files may have. For what it&#8217;s worth with the cost of storage being so low I would put up with the storage increase for the performance gain.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2009/03/outlook-2007-pst-and-ost-files-may-be-up-to-20-larger-after-the-february-24-2009-cumulative-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>There&#8217;s a price on yer head</title>
		<link>http://www.freethecityone.co.uk/2009/02/theres-a-price-on-yer-head/</link>
		<comments>http://www.freethecityone.co.uk/2009/02/theres-a-price-on-yer-head/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 11:11:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[conflicker]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[worm]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2009/02/14/theres-a-price-on-yer-head.html</guid>
		<description><![CDATA[Some of you may have read that latest news that Microsoft has put out a $250,000 reward to find who is behind the Conficker worm that is said to have infected as many as 12 million computers.&#160; They are doing this because it has taken the firm view that the creation of the Conficker worm [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you may have read that latest news that <a href="http://www.microsoft.com" target="_blank">Microsoft</a> has put out a $250,000 reward to find who is behind the <a href="http://en.wikipedia.org/wiki/Conficker" target="_blank">Conficker</a> worm that is said to have infected as many as 12 million computers.&#160; They are doing this because it has taken the firm view that the creation of the <a href="http://en.wikipedia.org/wiki/Conficker" target="_blank">Conficker</a> worm as a criminal act.</p>
<p>This may seem like a bold move but it is not the first time they have done this. In 2005 they paid $250,000 to two individuals who helped identify the creator of the <a href="http://en.wikipedia.org/wiki/Sasser_worm" target="_blank">Sasser</a> worm.&#160; Rewards were also offered of $250,000 for the creators of the other three major computer worms <a href="http://en.wikipedia.org/wiki/Blaster_(computer_worm)" target="_blank">Blaster</a>, <a href="http://en.wikipedia.org/wiki/Mydoom" target="_blank">MyDoom</a> and <a href="http://en.wikipedia.org/wiki/Sobig" target="_blank">Sobig</a> however the authors of these were never caught.</p>
<p>In reality this amount of money is a small drop in the ocean for a company like <a href="http://www.microsoft.com" target="_blank">Microsoft</a> but in doing so they are trying to send out a strong message to the authors of such worms.&#160; They are simply saying that they will not sit idly by while the creators wreak havoc on their clients systems.&#160; In reality the fact of the matter is that regardless of what <a href="http://www.microsoft.com" target="_blank">Microsoft</a> or <a href="http://www.microsoft.com/mscorp/twc/default.mspx" target="_blank">Microsoft Trustworth Computing Group</a> offer it seems that it will offer very little in the way of a deterrent for such authors as it is a challenge that they enjoy rising to.&#160; What it does do is help their clients to feel that they are doing all they can to try an prevent such hassles returning in the future.</p>
<p>The worm itself infects a computer that is not fully up to date with the latest updates from the Microsoft Update website. If you are in any doubt then the best action is to visit the <a href="http://update.microsoft.com" target="_blank">Microsoft Update</a> website and apply all the latest critical updates.&#160; Once this is complete continue to revisit the site until you are told there are no further critical updates. You should also ensure that your Anti-Virus software is fully up-to-date, if you don&#8217;t already have one then visit either <a href="http://www.avg.com" target="_blank">AVG</a> or <a href="http://www.avast.com" target="_blank">aVast</a> who both provide free versions for home use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2009/02/theres-a-price-on-yer-head/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friend or foe?</title>
		<link>http://www.freethecityone.co.uk/2009/01/friend-or-foe/</link>
		<comments>http://www.freethecityone.co.uk/2009/01/friend-or-foe/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 01:56:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2009/01/11/friend-or-foe.html</guid>
		<description><![CDATA[This week has been an important week in terms of IT, Technology and gadget lovers for this week has been CES (Consumer Electronics Association) in Las Vegas.&#160; For those not familiar with the event this the annual show where technology vendors get an opportunity to show their wares to the international community both in terms [...]]]></description>
			<content:encoded><![CDATA[<p>This week has been an important week in terms of IT, Technology and gadget lovers for this week has been CES (Consumer Electronics Association) in Las Vegas.&#160; For those not familiar with the event this the annual show where technology vendors get an opportunity to show their wares to the international community both in terms of the general public as well as the trade press.&#160; So of the best upcoming gadgets are seen here before anywhere else.&#160; This years big showing from Microsoft is Windows 7, a product which has received a great deal of attention ever since it was first discussed.</p>
<p>Once of the reasons has been due to the dismal failure of Windows Vista, that is not to say that the product is bad because to be quite honest it isn&#8217;t, but initially it received a lot of bad press due delayed deliveries as well as, once launched, poor compatibility with hardware as well as some software.&#160; Now what we have to understand with this is when any new product is released there will always be teething problems, this is not unique to technology this applies&#160; to cars, motorbikes just about anything really.&#160; This is because not matter how much you test something there is always going to be someone that will do something in a way that was never imagined or it will become visible through simple length of use.&#160; Windows Vista itself has been a very solid stable product for a great deal of time now, I have been using it myself for over a year now and it really just works, that&#8217;s all there is to say on the matter.&#160; But it never won the hearts of the IT community which resulted in poor uptake, this then left a poor legacy for Microsoft which is going to be hard to shake.&#160; One of the biggest challenges it had to overcome is that Windows XP is just so good, it had been a solid operating system that is highly compatible which has left it with an almost &#8220;cult-like&#8221; following.</p>
<p>So what does this mean for Windows 7?&#160; Well simply put it has a very hard path to find in life, it must first overcome that love and passion that is held by the Windows XP followers.&#160; Then, if it overcomes XP, it must then work its way through the minefield of the Windows Vista naysayers which in itself is going to be a challenge of its own and I believe that in itself will be more difficult.</p>
<p>So what of Windows 7 itself, well I have not yet had chance to install it myself however I picked up a twitter from <a href="http://twitter.com/sullrich" target="_blank">Scott Ullrich</a> (the developer behind <a href="http://www.pfsense.org/" target="_blank">pfSense</a>) overnight which said</p>
<blockquote><p>Upgraded windows Vista -&gt; Windows 7 and holy &lt;beepers&gt;, it&#8217;s fantastic! No, seriously&#8230; Not kidding!!</p>
<p>&#160;</p>
</blockquote>
<p>Still in the meantime take a look at these videos courtesy of BBC news and see for yourself:&#160; <a href="http://news.bbc.co.uk/1/hi/technology/7817550.stm" target="_blank">BBC News</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2009/01/friend-or-foe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gimme just a little more time</title>
		<link>http://www.freethecityone.co.uk/2008/04/gimme-just-a-little-more-time/</link>
		<comments>http://www.freethecityone.co.uk/2008/04/gimme-just-a-little-more-time/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 05:22:08 +0000</pubDate>
		<dc:creator>robfranklin</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2008/04/04/gimme-just-a-little-more-time.html</guid>
		<description><![CDATA[I had a call from a client (whose also a friend of mine) the other which at the time made me laugh, the kinds of laugh that makes you fall of the seat.&#160; It goes a little like this: Client: Hi Rob, I&#8217;m probably going to regret asking this but I have been asked and [...]]]></description>
			<content:encoded><![CDATA[<p>I had a call from a client (whose also a friend of mine) the other which at the time made me laugh, the kinds of laugh that makes you fall of the seat.&#160; It goes a little like this:</p>
<blockquote><p><font style="background-color: #ffffff">Client: Hi Rob, I&#8217;m probably going to regret asking this but I have been asked and I don&#8217;t quite know how to fix it.</font></p>
<p><font style="background-color: #ffffff">Me: Go on</font></p>
<p><font style="background-color: #ffffff">Client: I have been asked to look at the time on the server as it&#8217;s wrong so it&#8217;s making all the PC&#8217;s the wrong time.</font></p>
<p><font style="background-color: #ffffff">Me: Oh right, I thought we had the network timesyncing externally</font></p>
<p><font style="background-color: #ffffff">Client: I&#8217;m on the <a href="http://wwp.greenwichmeantime.com/" target="_blank">Grenwich Mean Time website</a> and our server is 20 seconds fast and I&#8217;ve been told to see if it can be sorted.</font></p>
<p><font style="background-color: #ffffff">Me: (thud as I hit the floor, wait a further 10 second to stop laughing) Right ok, you are joking right?</font></p>
<p><font style="background-color: #ffffff">Client: NO</font></p>
<p><font style="background-color: #ffffff">Me: Oh right, you sure you&#8217;re not joking?</font></p>
<p><font style="background-color: #ffffff">Client: NO</font></p>
<p><font style="background-color: #ffffff">Me: Ok let&#8217;s see if we can sort it out</font></p>
</blockquote>
<p>So the conversation went on, now the above wasn&#8217;t being rude as it may seem as we often make a point taking pot shots for a laugh but it did raise an interesting point which I tend to perform as second nature on servers that we manage but not everyone does.&#160; The point is that now with the advent of PC integrated clocking in systems they often take their time source from the network so if the time is wrong (usually tends to be a problem when its out by minutes rather than seconds but hey not for me to judge) then staff could be clocking out at the wrong times so these systems become flawed.&#160; So if anyone wants to get their Windows Domain controller synced with a reliable time source then read on.</p>
<p><strong>Important</strong> The following information contains details of changes to be made to the Windows Registry.&#160; If you are unsure of what you are doing then please do not attempt it as serious damage can occur if you modify it incorrectly.&#160; For extra protection read the following KB article from Microsoft on how to backup and restore the registry <a href="http://support.microsoft.com/kb/322756/" target="_blank">KB322756</a></p>
<p>To configure the server with an external time source then do the following:</p>
<ol>
<li><font color="#555555">Click on <strong>Start</strong>, click <strong>Run</strong>, type <strong>Regedit </strong>then click <strong>OK</strong></font></li>
<li><font color="#555555">Change the type to NTP Server</font></li>
<ol>
<li><font color="#555555">Locate the registry key         <br />HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters\Type</font></li>
<li><font color="#555555">In the right pane double click on <strong>Type</strong></font></li>
<li><font color="#555555">Change the value to read <strong>NTP, </strong>the click <strong>OK</strong></font></li>
</ol>
<li><font color="#555555">Set AnnounceFlags to 5</font></li>
<ol>
<li><font color="#555555">Locate the registry key         <br />HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config\AnnounceFlags</font></li>
<li><font color="#555555">In the right pane double click on <strong>AnnounceFlags</strong></font></li>
<li><font color="#555555">Change the value to read <strong>5, </strong>then click <strong>OK</strong></font></li>
</ol>
<li><font color="#555555">Enable NTPServer</font></li>
<ol>
<li><font color="#555555">Locate the registry key         <br />HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer</font></li>
<li><font color="#555555">In the right pane double click <strong>NTPServer</strong></font></li>
<li><font color="#555555">Change the value to read <strong>0.pool.ntp.org,0&#215;1</strong>, then click <strong>OK           <br /></strong>Other time servers can be specified however I have found that this one is the most accurate</font></li>
</ol>
<li><font color="#555555">Quit the registry editor</font></li>
<li><font color="#555555">Open the command prompt an enter:       <br /><strong>net stop w32time &amp;&amp; net start w32time</strong></font></li>
</ol>
<p>There are a number of other values that can be changed with regard to acceptable time differences and time shift however the standard setting is sufficient for most small business however details can be found in article <a href="http://support.microsoft.com/kb/816042" target="_blank">KB816042</a>.&#160; With regard to my friend, this is the process that I ran on his server now he&#8217;s a happy man as his server is now accurate to within half a second of GMT&#8230;&#8230;go figure!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2008/04/gimme-just-a-little-more-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The enemy within&#8230;..</title>
		<link>http://www.freethecityone.co.uk/2008/03/the-enemy-within/</link>
		<comments>http://www.freethecityone.co.uk/2008/03/the-enemy-within/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 00:21:51 +0000</pubDate>
		<dc:creator>robfranklin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2008/03/27/the-enemy-within.html</guid>
		<description><![CDATA[Following on from the recent security theme I would like to carry this on a little further and discuss an aspect of security in business that may not always be so obvious to everyone.&#160; Most individuals will be aware of the threat that the Internet poses to business as well as the threat that is [...]]]></description>
			<content:encoded><![CDATA[<p>Following on from the recent security theme I would like to carry this on a little further and discuss an aspect of security in business that may not always be so obvious to everyone.&nbsp; Most individuals will be aware of the threat that the Internet poses to business as well as the threat that is posed by wireless networks.&nbsp; However what are great deal of businesses do not understand is that the greatest threat is not always what lies without but in fact it is what lies within.&nbsp; It is a known fact that a number of employee&#8217;s that leave businesses go on to work for other companies but a number of these individuals go on to start their own business.&nbsp; Either way these, soon to be former, employee&#8217;s have access to key information about you business and more importantly your clients.&nbsp; In the past it has been difficult for this information to be transported out of the business without being easily spotted however with the rise in USB storage devices transport of this data has become much simpler and moreover much more discreet.&nbsp; So what can you do to stop this, the simplest way is to block USB storage devices and CD/DVD writers to all but the most trusted users.&nbsp; In order to achieve this you could buy some software to handle endpoint security such as <a target="_blank" href="http://www.gfi.com/endpointsecurity/">GFI EndPoint Security</a> but for up to 25 computers this costs in excess of &pound;400 which is beyond the reach of most small businesses.&nbsp; So what can small businesses do to protect themselves; well the answer is through a group policy on the server restrictions can be placed on users or groups of users and I will explain how.</p>
<p><span id="more-64"></span></p>
<p>By adding in the ADM template at the bottom of this article you will be able to restrict access to USB storage devices as well as CD/DVD Drives.&nbsp; Once you have the downloaded file then on your server go to the %SYSTEMROOT% folder this is typically &quot;C:\WINDOWS&quot; and copy the ADM file into the &quot;INF&quot; folder.&nbsp; Once you have done this go into the &quot;Group Policy Management&quot; tool.&nbsp; Once there if you create a new group policy or edit an existing policy then navigate to &quot;Administrative Templates&quot; under &quot;Computer Management&quot;.</p>
<p><a href="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp1.png"><img width="244" height="175" border="0" src="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp1-thumb.png" alt="gp1" style="border: 0px none ;" /></a></p>
<p>Right click on &quot;Administrative Templates&quot; and select &quot;Add/Remove Templates&quot;</p>
<p><a href="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp2.png"><img width="244" height="151" border="0" src="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp2-thumb.png" alt="gp2" style="border: 0px none ;" /></a></p>
<p>Click on &quot;Add&quot; and from the list of files select &quot;ext_storage.adm&quot; and click on &quot;OK&quot;, now click on &quot;Close&quot;</p>
<p><a href="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp3.png"><img width="244" height="175" border="0" src="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp3-thumb.png" alt="gp3" style="border: 0px none ;" /></a></p>
<p>Now from the &quot;View&quot; menu select &quot;Filtering&quot; and unselect the &quot;Only show policy settings that can be fully managed&quot; option and click &quot;OK&quot;</p>
<p><a href="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp4.png"><img width="244" height="236" border="0" src="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp4-thumb.png" alt="gp4" style="border: 0px none ;" /></a></p>
<p>Now from the main group policy window under &quot;Administrative Templates&quot; you will see &quot;Custom Policy Settings&quot; and below this you will see &quot;Restrict Drives&quot;.&nbsp; Once selected on the right hand pane you will see the options to disable USB, CD Rom, Floppy and High Capacity Floppy.</p>
<p><a href="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp5.jpg"><img width="244" height="141" border="0" src="http://79.170.44.115/freethecityone.co.uk/wp-content/uploads/2008/03/gp5-thumb.jpg" alt="gp5" style="border: 0px none ;" /></a></p>
<p>Once these are enabled the users which have this policy applied to will no longer be able to use these facilities.&nbsp; This gives small businesses a means of securing their data without spending the earth.</p>
<p>Attachments: <a href="http://www.freethecityone.co.uk/wp-content/uploads/2008/03/ext_storage.adm">ext_storage.adm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2008/03/the-enemy-within/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More details on Vista SP1</title>
		<link>http://www.freethecityone.co.uk/2008/03/more-details-on-vista-sp1/</link>
		<comments>http://www.freethecityone.co.uk/2008/03/more-details-on-vista-sp1/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 23:01:36 +0000</pubDate>
		<dc:creator>robfranklin</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft vista]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[vista sp1]]></category>

		<guid isPermaLink="false">http://www.freethecityone.co.uk/2008/03/17/more-details-on-vista-sp1.html</guid>
		<description><![CDATA[The latest word on Vista&#8217;s SP1 official release to the public looks set to be the 18th March 2008 and will be rolled out as part of the Windows Update program installed on Vista machines.&#160; Microsoft however seem to still be reluctant to commit to a date simply stating that users will receive the update [...]]]></description>
			<content:encoded><![CDATA[<p>The latest word on Vista&#8217;s SP1 official release to the public looks set to be the 18th March 2008 and will be rolled out as part of the Windows Update program installed on Vista machines.&#160; Microsoft however seem to still be reluctant to commit to a date simply stating that users will receive the update &quot;mid-March&quot; by either selecting the optional update or downloading it from the Microsoft website.&#160; It would appear that the delay has been caused by some issues with hardware drivers which has been an ongoing issue for Vista throughout it&#8217;s life so it seems ironic that it is still thwarted by the same problems.&#160; From the 19th March 2008 new buyers will be able to buy copies of Vista which will come pre-installed with Service Pack 1 which it seems may experience a price reduction but time will tell on that one.&#160; So keep the peeled the update is coming and what I have heard and experienced so far has been positive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.freethecityone.co.uk/2008/03/more-details-on-vista-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

