<?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>Gatt&#039;s Ramblings</title>
	<atom:link href="http://www.gattancha.co.uk/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gattancha.co.uk/wordpress</link>
	<description>The Ramblings of an IT Professional</description>
	<lastBuildDate>Wed, 14 Dec 2011 19:27:02 +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>Revised Powershell Script to export Event Logs to CSV file(s)</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/12/14/revised-powershell-script-to-export-event-logs-to-csv-files/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=revised-powershell-script-to-export-event-logs-to-csv-files</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/12/14/revised-powershell-script-to-export-event-logs-to-csv-files/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 19:25:09 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/?p=355</guid>
		<description><![CDATA[I have updated the code so that it can check multiple servers at once &#8211; though the names need to be entered into the script Also, it now has a paramter for the days and prompts only once for the credentials: Code: # +--------------------------------------------------------------------------- # &#124; File : EventLogs.ps1 # &#124; Version : 1.5 # &#124; [...]]]></description>
			<content:encoded><![CDATA[<p>I have updated the code so that it can check multiple servers at once &#8211; though the names need to be entered into the script Also, it now has a paramter for the days and prompts only once for the credentials:</p>
<div>
<div>Code:</div>
<pre># +---------------------------------------------------------------------------
# | File : EventLogs.ps1
# | Version : 1.5
# | Purpose : Export Remote Event Logs to CSV.
# | Synopsis: Creates a CSV file containing all Errors and Warnings from the
# |           "Application", "System" &amp; "Operations Manager" Event Logs
# | Usage : .\EventLogs.ps1 -days NUMDAYS
# +----------------------------------------------------------------------------
# | Maintenance History
# | -------------------
# | Name            Date         Version         Description
# | ------------------------------------------------------------------------------
# | Craig Wilson    25/11/2011   1.0            Initial Release
# | Craig Wilson    28/11/2011   1.1            Added '$store' variable for Log Location
# | Craig Wilson    28/11/2011   1.2            Added Help Infomration
# | Craig Wilson    28/11/2011   1.3            BUG FIX: added "-Credential $user" switch in for all logs
# | Craig Wilson    28/11/2011   1.4            Added filter for Events
# | Craig Wilson    01/12/2011   1.5*           Added Array to loop through all servers in array and removed Paramter for servers.
# +-------------------------------------------------------------------------------
##################
## HELP SECTION ##
##################
&lt;#
.SYNOPSIS
Script to export specific events from remote event logs to a CSV file
.DESCRIPTION
This script will read the event logs of the array of Servers and export all but
all relevant logs to a CSV File for the specified server over the period of history
requested at the command line.
Logs can be filtered by modifing the Query for the appropriate log..
.EXAMPLE
.\EventLogs.PS1 -days 7
.NOTES
Script may error if there are no events to record and will prompt for the password.
NO username or password information is stored by this script and nothing is written back
to the server.
#&gt;
#  Specify Command Line parameters
param([string]$days=$(throw "Days cannot be null"))
$servers = @("SERVER1", "SERVER2", "SERVER3")
$user = Get-Credential
#Set namespace and calculate the date to start from
$namespace = "root\CIMV2"
$BeginDate=[System.Management.ManagementDateTimeConverter]::ToDMTFDateTime((get-date).AddDays(-$days))
$store = "C:\Logs"  # No trailing slash, Folder must already exist
foreach ($computer in $servers)
{
    # Get the Application Log and export to CSV
    Get-WmiObject -ComputerName $computer -Credential $user `
        -Query "SELECT ComputerName,Logfile,Type,TimeWritten,SourceName,Message,Category,EventCode,User `
            FROM Win32_NTLogEvent WHERE (logfile='Application') AND (type!='Information') AND (EventCode!='1062') `
            AND (EventCode!='9001') AND (EventCode!='1517') AND (EventCode!='16434') AND (EventCode!='16435') `
            AND (EventCode!='30969') AND (EventCode!='1202') AND (EventCode!='1517')  AND (EventCode!='257') `
            AND (TimeWritten &gt; '$BeginDate')" | `
            SELECT ComputerName,Logfile,Type,@{name='TimeWritten';Expression={$_.ConvertToDateTime($_.TimeWritten)}},SourceName,Message,Category,EventCode,User | `
            Export-Csv "$store\$computer-Application.csv"
    # Get the System Log and export to CSV
    Get-WmiObject -ComputerName $computer -Credential $user `
        -Query "SELECT ComputerName,Logfile,Type,TimeWritten,SourceName,Message,Category,EventCode,User `
            FROM Win32_NTLogEvent WHERE (logfile='System') AND (type!='Information') AND (EventCode!='257') AND (TimeWritten &gt; '$BeginDate')" | `
            SELECT ComputerName,Logfile,Type,@{name='TimeWritten';Expression={$_.ConvertToDateTime($_.TimeWritten)}},SourceName,Message,Category,EventCode,User | `
            Export-Csv "$store\$computer-System.csv"
}</pre>
</div>
<p>You will need to change a few parameters to suit your environment : $servers = Array of all servers you want to get the logs from $store = Location where logs will be saved In each of the -Query - amend the filters as needed to remove any events that aren&#8217;t needed &#8211; you may need to play with this a bit to get it right &#8211; but it should be safe to remove anything after the tpe != &#8216;information&#8217;.. Command to run to collect previous 3 days worth of logs is :</p>
<div>
<div>Code:</div>
<pre> EventLogs -days 3</pre>
</div>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/12/14/revised-powershell-script-to-export-event-logs-to-csv-files/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/12/14/revised-powershell-script-to-export-event-logs-to-csv-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 SP2</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/12/05/exchange-2010-sp2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-sp2</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/12/05/exchange-2010-sp2/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 15:47:41 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Address]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[gal]]></category>
		<category><![CDATA[Global]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[pack]]></category>
		<category><![CDATA[Segmentation]]></category>
		<category><![CDATA[Seperation]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[Sp2]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/?p=349</guid>
		<description><![CDATA[Service pack 2 for Exchange 2010 has now been released http://blogs.technet.com/b/exchange/archive/2011/05/17/announcing-exchange-2010-service-pack-2.aspx One feature that has been long overdue is the ability to segment the GAL so that only certain elements of the GAL are visible to specific groups of users (EG: Only let System Administrator&#8217;s see Administrative Accounts&#8230;..) I&#8217;ll post a full update once I [...]]]></description>
			<content:encoded><![CDATA[<p>Service pack 2 for Exchange 2010 has now been released</p>
<p><a href="http://blogs.technet.com/b/exchange/archive/2011/05/17/announcing-exchange-2010-service-pack-2.aspx">http://blogs.technet.com/b/exchange/archive/2011/05/17/announcing-exchange-2010-service-pack-2.aspx</a></p>
<p>One feature that has been long overdue is the ability to segment the GAL so that only certain elements of the GAL are visible to specific groups of users (EG: Only let System Administrator&#8217;s see Administrative Accounts&#8230;..)</p>
<p>I&#8217;ll post a full update once I have applied it to my Lab environment&#8230;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/12/05/exchange-2010-sp2/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/12/05/exchange-2010-sp2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 SP1 &#8211; Blank Page with OWA</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/11/27/exchange-2010-sp1-blank-page-with-owa/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=exchange-2010-sp1-blank-page-with-owa</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/11/27/exchange-2010-sp1-blank-page-with-owa/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 20:51:04 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Blank]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[OWA]]></category>
		<category><![CDATA[Page]]></category>
		<category><![CDATA[reason=0]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Sp1]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/?p=341</guid>
		<description><![CDATA[So I had recently installed Exchange 2010 SP1 on my Lab Domain and was struggling to get OWA working &#8211; all I got was a blank page and no Form-Based Authentication logon.. After a lot of suggestions about recreating OWA to redirects in IIS and a Web.Config file, i eventually stumbled across this post.. http://www.msexchangeblog.nl/2010/05/11/blank-page-in-owa-fix-for-exchange-2010/ Which basically says [...]]]></description>
			<content:encoded><![CDATA[<p>So I had recently installed Exchange 2010 SP1 on my Lab Domain and was struggling to get OWA working &#8211; all I got was a blank page and no Form-Based Authentication logon..</p>
<p>After a lot of suggestions about recreating OWA to redirects in IIS and a Web.Config file, i eventually stumbled across this post..</p>
<p><a href="http://www.msexchangeblog.nl/2010/05/11/blank-page-in-owa-fix-for-exchange-2010/">http://www.msexchangeblog.nl/2010/05/11/blank-page-in-owa-fix-for-exchange-2010/</a></p>
<p>Which basically says to run a powershell script buried within Exchange to update the CAS</p>
<p>&nbsp;</p>
<p>Voila! All now up and running..</p>
<p>&nbsp;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/11/27/exchange-2010-sp1-blank-page-with-owa/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/11/27/exchange-2010-sp1-blank-page-with-owa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powershell Script to export Event Logs to CSV file (s)</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/11/19/powershell-script-to-export-event-logs-to-csv-file-s/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=powershell-script-to-export-event-logs-to-csv-file-s</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/11/19/powershell-script-to-export-event-logs-to-csv-file-s/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 11:40:00 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/2011/11/19/powershell-script-to-export-event-logs-to-csv-file-s/</guid>
		<description><![CDATA[Been working on this for a bit and finally got it working: Code: $computer = Read-Host &#34;Server&#34; $creds = Read-Host &#34;Domain\User account to user&#34; $days = Read-Host &#34;History (Days)&#34; $path = &#34;C:\Logs&#34; #DO NOT add a trailing slash $namespace = &#34;root\CIMV2&#34; $BeginDate=[System.Management.ManagementDateTimeConverter]::ToDMTFDateTime((get-date).AddDays(-$days)) Get-WmiObject -ComputerName $computer -Credential $creds ` -Query &#34;SELECT ComputerName,Logfile,Type,TimeWritten,SourceName,Message,Category,EventCode,User ` FROM Win32_NTLogEvent WHERE [...]]]></description>
			<content:encoded><![CDATA[<p>Been working on this for a bit and finally got it working:</p>
<p>Code:</p>
<pre>$computer = Read-Host &quot;Server&quot;
$creds = Read-Host &quot;Domain\User account to user&quot;
$days = Read-Host &quot;History (Days)&quot;
$path = &quot;C:\Logs&quot;  #DO NOT add a trailing slash
$namespace = &quot;root\CIMV2&quot;
$BeginDate=[System.Management.ManagementDateTimeConverter]::ToDMTFDateTime((get-date).AddDays(-$days))

Get-WmiObject -ComputerName $computer -Credential $creds `
    -Query &quot;SELECT ComputerName,Logfile,Type,TimeWritten,SourceName,Message,Category,EventCode,User `
    FROM Win32_NTLogEvent WHERE (logfile='Application') AND (type='Error') AND (TimeWritten &gt; '$BeginDate')&quot; | `
    SELECT ComputerName,Logfile,Type,@{name='TimeWritten';Expression={$_.ConvertToDateTime($_.TimeWritten)}},SourceName,Message,Category,EventCode,User | `
    Export-Csv &quot;$path\$computer-Application-Errors.csv&quot; 

Get-WmiObject -ComputerName $computer `
    -Query &quot;SELECT ComputerName,Logfile,Type,TimeWritten,SourceName,Message,Category,EventCode,User `
    FROM Win32_NTLogEvent WHERE (logfile='Application') AND (type='Warning') AND (TimeWritten &gt; '$BeginDate')&quot; | `
    SELECT ComputerName,Logfile,Type,@{name='TimeWritten';Expression={$_.ConvertToDateTime($_.TimeWritten)}},SourceName,Message,Category,EventCode,User | `
    Export-Csv &quot;$path\$computer-Application-Warnings.csv&quot; 

Get-WmiObject -ComputerName $computer `
    -Query &quot;SELECT ComputerName,Logfile,Type,TimeWritten,SourceName,Message,Category,EventCode,User `
    FROM Win32_NTLogEvent WHERE (logfile='System') AND (type='Error') AND (TimeWritten &gt; '$BeginDate')&quot; | `
    SELECT ComputerName,Logfile,Type,@{name='TimeWritten';Expression={$_.ConvertToDateTime($_.TimeWritten)}},SourceName,Message,Category,EventCode,User | `
    Export-Csv &quot;$path\$computer-System-Errors.csv&quot; 

Get-WmiObject -ComputerName $computer `
    -Query &quot;SELECT ComputerName,Logfile,Type,TimeWritten,SourceName,Message,Category,EventCode,User `
    FROM Win32_NTLogEvent WHERE (logfile='System') AND (type='Warning') AND (TimeWritten &gt; '$BeginDate')&quot; | `
    SELECT ComputerName,Logfile,Type,@{name='TimeWritten';Expression={$_.ConvertToDateTime($_.TimeWritten)}},SourceName,Message,Category,EventCode,User | `
    Export-Csv &quot;$path\$computer-System-Warnings.csv&quot;</pre>
<p>The above example exports all the Errors and Warnings from the Application and System Logs<br />
  <br />To export more logs simply copy the Get-WmiObject lines and <b>WHERE (logfile=&#8217;System&#8217;) AND (type=&#8217;Error&#8217;) </b>as appropriate</p>
<p>
  <br />Comments welcome <img title="Smile" border="0" alt="" src="http://www.edugeek.net/images/smilies/smile.png" /></p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/11/19/powershell-script-to-export-event-logs-to-csv-file-s/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/11/19/powershell-script-to-export-event-logs-to-csv-file-s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Metro UI and Remote Desktop</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/09/19/metro-ui-and-remote-desktop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=metro-ui-and-remote-desktop</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/09/19/metro-ui-and-remote-desktop/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 19:26:11 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[8]]></category>
		<category><![CDATA[charm]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[metro]]></category>
		<category><![CDATA[mstsc]]></category>
		<category><![CDATA[Remote Desktop]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/?p=332</guid>
		<description><![CDATA[Thought I&#8217;d try the Remote Desktop tile from within Metro UI&#8230; Everything went as exptected in that it asked me for the computer name (or IP) of the remote machine and it connected fine, after bibbing about the lack of a certificate.. First thing I noticed was the lack of the bar across the top of [...]]]></description>
			<content:encoded><![CDATA[<p>Thought I&#8217;d try the Remote Desktop tile from within Metro UI&#8230;</p>
<p>Everything went as exptected in that it asked me for the computer name (or IP) of the remote machine and it connected fine, after bibbing about the lack of a certificate..</p>
<p>First thing I noticed was the lack of the bar across the top of the screen &#8211; not that this is much of an issue.<br />
Moving the mouse to the top or bottom of the screen and right clicking brings up the new App Bar, and allows you to change to another Remote PC..</p>
<p>Now for the annoying bit.. Don&#8217;t try using any WIN+&lt;KEY&gt; commands &#8211; they wont work on the remote PC..</p>
<p>Pressing the WIN key on its own, suspends the RDC and takes you back to the Metro Start Screen..<br />
Win+R? Forget it &#8211; doesn&#8217;t work&#8230; Win+M (Minimize) &#8211; not a chance&#8230;<br />
Win+C brings up the charm and you can change the RDC preferences (by that I mean change Display preferences or the RD Gateway address..</p>
<p>If you really want to use the Remote Desktop Connection, then I would strongly suggest switching to the Desktop first then running &#8220;mstsc.exe&#8221; which behaves like Windows 7, etc&#8230;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/09/19/metro-ui-and-remote-desktop/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/09/19/metro-ui-and-remote-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 8 and Multiple Monitors.</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/09/19/windows-8-and-multiple-monitors/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-8-and-multiple-monitors</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/09/19/windows-8-and-multiple-monitors/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 18:39:41 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[8]]></category>
		<category><![CDATA[Monitor]]></category>
		<category><![CDATA[Multiple]]></category>
		<category><![CDATA[Taskbar]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/?p=330</guid>
		<description><![CDATA[Microsoft have finally given those of us who use multiple monitors the ability to extend the Taskbar across monitors!! From what I can gather you can simply extend the Taskbar across (start button on one &#8211; and clock on the last..) or  you can have a different taskbar for each monitor! I haven&#8217;t yet tried [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft have finally given those of us who use multiple monitors the ability to extend the Taskbar across monitors!!</p>
<p>From what I can gather you can simply extend the Taskbar across (start button on one &#8211; and clock on the last..) or  you can have a different taskbar for each monitor!</p>
<p>I haven&#8217;t yet tried this, but it sounds like you can have a different taskbar for each screen, with different sets of pinned apps on each one..</p>
<p>I&#8217;ll need to have a play and post the results&#8230;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/09/19/windows-8-and-multiple-monitors/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/09/19/windows-8-and-multiple-monitors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 8 &#8211; ISO Images</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/09/18/windows-8-iso-images/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-8-iso-images</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/09/18/windows-8-iso-images/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 10:23:18 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[8]]></category>
		<category><![CDATA[drive]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/?p=327</guid>
		<description><![CDATA[Windows 8 finally allows you to mount ISO files to a virtual CD drive without the need for a 3rd Party utility! It&#8217;s a feature that Windows 7 should have had but never did &#8211; it only allowed you to burn an ISO image.. As always, I&#8217;ll post more info and appropriate screenshots over time.. [...]]]></description>
			<content:encoded><![CDATA[<p>Windows 8 finally allows you to mount ISO files to a virtual CD drive without the need for a 3rd Party utility!</p>
<p>It&#8217;s a feature that Windows 7 should have had but never did &#8211; it only allowed you to burn an ISO image..</p>
<p>As always, I&#8217;ll post more info and appropriate screenshots over time..</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/09/18/windows-8-iso-images/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/09/18/windows-8-iso-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Metro UI Grabs</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/09/18/metro-ui-grabs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=metro-ui-grabs</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/09/18/metro-ui-grabs/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 08:11:30 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[8]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[metro]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[tile]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/?p=318</guid>
		<description><![CDATA[A few quick screenshots of the new Metro UI in Windows 8, which replaces the Start Menu .. 1.. The &#8220;Start Screen&#8221; as Microsoft 2.. When you press Win+C together then &#8220;Settings&#8221; on the Charm it allows you access to the properties for the screen, app or tile.. 3.. Right clicking on a tile allows [...]]]></description>
			<content:encoded><![CDATA[<p>A few quick screenshots of the new Metro UI in Windows 8, which replaces the Start Menu ..</p>
<p>1.. The &#8220;Start Screen&#8221; as Microsoft</p>
<p><a href="http://www.gattancha.co.uk/wordpress/wp-content/uploads/2011/09/Metro-UI-1.png" target="_blank"><img class="alignnone size-full wp-image-319" title="Metro-UI-1" src="http://www.gattancha.co.uk/wordpress/wp-content/uploads/2011/09/Metro-UI-1.png" alt="" width="340" height="212" /></a></p>
<p>2.. When you press Win+C together then &#8220;Settings&#8221; on the Charm it allows you access to the properties for the screen, app or tile..</p>
<p><a href="http://www.gattancha.co.uk/wordpress/wp-content/uploads/2011/09/Metro-UI-2.png"><img class="alignnone size-full wp-image-321" title="Metro-UI-2" src="http://www.gattancha.co.uk/wordpress/wp-content/uploads/2011/09/Metro-UI-2.png" alt="" width="341" height="213" /></a></p>
<p>3.. Right clicking on a tile allows you to resize the size to a smaller tile (like the Firefox Tile) or a larger tile (like the Desktop tile). You can also unpin the tile or uninstall the app itself.. Different options are available for different tiles..</p>
<p><a href="http://www.gattancha.co.uk/wordpress/wp-content/uploads/2011/09/Metro-UI-3.png"><img class="alignnone size-full wp-image-322" title="Metro-UI-3" src="http://www.gattancha.co.uk/wordpress/wp-content/uploads/2011/09/Metro-UI-3.png" alt="" width="337" height="210" /></a></p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/09/18/metro-ui-grabs/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/09/18/metro-ui-grabs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 8 &#8211; Homegroup Changes</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/09/17/windows-8-homegroup-changes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-8-homegroup-changes</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/09/17/windows-8-homegroup-changes/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 20:18:57 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[8]]></category>
		<category><![CDATA[homegroup]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/?p=311</guid>
		<description><![CDATA[It looks like Homegroups now have some sort of grouping by Username: As the above image shows, all the users currently logged into the homegroup are shown, but unlike in Windows 7, expanding a username lists all the PCs that user is logged into and then under each PC, the expected list of their shared [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like Homegroups now have some sort of grouping by Username:</p>
<p><a href="http://www.gattancha.co.uk/wordpress/wp-content/uploads/2011/09/Win8-HG-1.png"><img class="alignnone size-medium wp-image-312" title="Win8-HG-1" src="http://www.gattancha.co.uk/wordpress/wp-content/uploads/2011/09/Win8-HG-1-300x210.png" alt="" width="300" height="210" /></a></p>
<p>As the above image shows, all the users currently logged into the homegroup are shown, but unlike in Windows 7, expanding a username lists all the PCs that user is logged into and then under each PC, the expected list of their shared libraries on that specific machine.. This is much more organised that in Windows 7 where there was a separate entry for each computer that the user was logged into&#8230;</p>
<p>Also, it would appear that a users Desktop is now a visible share in the homegroup&#8230;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/09/17/windows-8-homegroup-changes/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/09/17/windows-8-homegroup-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 8 &#8211; Disabling Metro UI</title>
		<link>http://www.gattancha.co.uk/wordpress/2011/09/17/windows-8-disabling-metro-ui/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-8-disabling-metro-ui</link>
		<comments>http://www.gattancha.co.uk/wordpress/2011/09/17/windows-8-disabling-metro-ui/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 10:48:42 +0000</pubDate>
		<dc:creator>Gatt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[8]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[Metru]]></category>
		<category><![CDATA[Ribbon]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.gattancha.co.uk/wordpress/?p=306</guid>
		<description><![CDATA[If, like me, you have given the Metro UI a try in Windows 8 and have developed an instant dislike towards it then the folks over at ghacks.com have, kindly posted an article on how to get rid of Metro UI but keep the new Ribbon interface in Windows Explorer&#8230; http://www.ghacks.net/2011/09/17/metro-controller-disable-metro-ui-ribbon-explorer-in-windows-8/ &#160; &#160; &#160; {lang: [...]]]></description>
			<content:encoded><![CDATA[<p>If, like me, you have given the Metro UI a try in Windows 8 and have developed an instant dislike towards it then the folks over at ghacks.com have, kindly posted an article on how to get rid of Metro UI but keep the new Ribbon interface in Windows Explorer&#8230;</p>
<p><a href="http://www.ghacks.net/2011/09/17/metro-controller-disable-metro-ui-ribbon-explorer-in-windows-8/" target="_blank">http://www.ghacks.net/2011/09/17/metro-controller-disable-metro-ui-ribbon-explorer-in-windows-8/</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="tall" count="1" href="http://www.gattancha.co.uk/wordpress/2011/09/17/windows-8-disabling-metro-ui/">{lang: 'en-GB'}</g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.gattancha.co.uk/wordpress/2011/09/17/windows-8-disabling-metro-ui/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

