<?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>Marc Valk dot Net &#187; Uncategorized</title>
	<atom:link href="http://www.marcvalk.net/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marcvalk.net</link>
	<description>blogging about...... Microsoft, Cloud Computing and all other things I find interesting</description>
	<lastBuildDate>Mon, 16 Jan 2012 12:48:56 +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>EC2: Windows activation</title>
		<link>http://www.marcvalk.net/2012/01/ec2-windows-activation/</link>
		<comments>http://www.marcvalk.net/2012/01/ec2-windows-activation/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 12:48:56 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Amazon EC2]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2012/01/ec2-windows-activation/</guid>
		<description><![CDATA[Today I had a problem with a Amazon EC2 Windows instance. It said &#8220;this copy of windows is not genuine&#8221;. I tried to activate it, but it kept giving me errors. After some searching on the EC2 Forums I found &#8230; <a href="http://www.marcvalk.net/2012/01/ec2-windows-activation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I had a problem with a Amazon EC2 Windows instance. It said &#8220;this copy of windows is not genuine&#8221;. I tried to activate it, but it kept giving me errors.   </p>
<p>After some searching on the EC2 Forums I found <a href="https://forums.aws.amazon.com/thread.jspa?threadID=79204" target="_blank">this</a> post which helped me out.</p>
<p>In short:</p>
<p>1. Open &quot;C:\Program Files\Amazon\Ec2ConfigService\Settings\DnsSuffixSettings.xml&quot;   <br />2. Remove the extra &lt;/RegionMapping&gt; tag from line 34    <br />3. Open &quot;C:\Program Files\Amazon\Ec2ConfigService\Settings\config.xml&quot;    <br />4. On line 34, change the state of EC2WindowsActivate plugin from Disabled to Enabled    <br />5. Stop and Start the Ec2Config service    <br />6. Wait couple minutes and then run slui.exe to verify Windows is activated (for core installation use &quot;slmgr.vbs /dli&quot;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2012/01/ec2-windows-activation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL: getting column information</title>
		<link>http://www.marcvalk.net/2011/12/sql-getting-column-information/</link>
		<comments>http://www.marcvalk.net/2011/12/sql-getting-column-information/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 08:33:10 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[TSQL]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2011/12/sql-getting-column-information/</guid>
		<description><![CDATA[To retrieve a list of column information for a table using T-SQL, use the following method: SELECT ORDINAL_POSITION ,COLUMN_NAME ,DATA_TYPE ,CHARACTER_MAXIMUM_LENGTH ,IS_NULLABLE ,COLUMN_DEFAULT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '&#60;your table&#62;' ORDER BY ORDINAL_POSITION ASC; &#160; &#160; .csharpcode, .csharpcode pre { &#8230; <a href="http://www.marcvalk.net/2011/12/sql-getting-column-information/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To retrieve a list of column information for a table using T-SQL, use the following method:</p>
<pre class="csharpcode"><span class="kwrd">SELECT</span>
   ORDINAL_POSITION
  ,COLUMN_NAME
  ,DATA_TYPE
  ,CHARACTER_MAXIMUM_LENGTH
  ,IS_NULLABLE
  ,COLUMN_DEFAULT
<span class="kwrd">FROM</span>
  INFORMATION_SCHEMA.COLUMNS
<span class="kwrd">WHERE</span>
  TABLE_NAME = <span class="str">'&lt;your table&gt;'</span>
<span class="kwrd">ORDER</span> <span class="kwrd">BY</span>
  ORDINAL_POSITION <span class="kwrd">ASC</span>; </pre>
<pre class="csharpcode">&#160;</pre>
<pre class="csharpcode">&#160;</pre>
<p>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>thanks to the original <a href="http://weblogs.sqlteam.com/joew/archive/2008/04/27/60574.aspx" target="_blank">poster</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2011/12/sql-getting-column-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: backup your SQL Agent Jobs</title>
		<link>http://www.marcvalk.net/2011/11/powershell-backup-your-sql-agent-jobs/</link>
		<comments>http://www.marcvalk.net/2011/11/powershell-backup-your-sql-agent-jobs/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 12:56:49 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2011/11/powershell-backup-your-sql-agent-jobs/</guid>
		<description><![CDATA[I needed to backup some SQL Agent Jobs. I decided to save them to a file, but I wanted to schedule this (in the event they might change). Below the PowerShell Script I used]]></description>
			<content:encoded><![CDATA[<p>I needed to backup some SQL Agent Jobs. I decided to save them to a file, but I wanted to schedule this (in the event they might change).</p>
<p>Below the PowerShell Script I used</p>
<pre class="brush: powershell; title: ; notranslate">

[System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.Smo') | Out-Null
$serverInstance = &quot;.&quot;

$server = New-Object ('Microsoft.SqlServer.Management.Smo.Server') $serverInstance

$jobs = $server.JobServer.Jobs | where-object {$_.category -eq &quot;[your category]&quot;}

if ($jobs -ne $null)
{

ForEach ( $job in $jobs )
{
$FileName = &quot;d:\backup\SQLjobs\&quot; + $job.Name + &quot;.sql&quot;
$job.Script() | Out-File -filepath $FileName
}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2011/11/powershell-backup-your-sql-agent-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: IP Address Details</title>
		<link>http://www.marcvalk.net/2011/11/powershell-ip-address-details/</link>
		<comments>http://www.marcvalk.net/2011/11/powershell-ip-address-details/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 15:45:11 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2011/11/powershell-ip-address-details/</guid>
		<description><![CDATA[It irritates me that when I execute the command &#8220;IPConfig&#8221; to get my current DHCP IP Address, I get a large list of all kind of adapters in which I am not interested. I then have to scroll up in &#8230; <a href="http://www.marcvalk.net/2011/11/powershell-ip-address-details/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It irritates me that when I execute the command &#8220;IPConfig&#8221; to get my current DHCP IP Address, I get a large list of all kind of adapters in which I am not interested. I then have to scroll up in the Command Prompt windows to find my IP Address.</p>
<p><a rel="lightbox" href="http://www.marcvalk.net/wp-content/uploads/PowerShell-IP-Address-Details_E895/image.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="Command Prompt" src="http://www.marcvalk.net/wp-content/uploads/PowerShell-IP-Address-Details_E895/image_thumb.png" border="0" alt="Command Prompt" width="366" height="194" /></a></p>
<p>As a project of my own to get to learn PowerShell more, I decided to make a PowerShell Function which would give me the current IP Address. As I went along, I added an extra feature which displayed my current external IP Address.</p>
<p>Below is the PowerShell Function:</p>
<pre class="brush: powershell; title: ; notranslate">
Function GetMyIP
{
$NetworkAdapter = gwmi win32_networkadapterconfiguration | where {$_.DHCPEnabled -and $_.DNSDomain -ne $null}
$SourcePage = &quot;href=&quot;http://automation.whatismyip.com/n09230945.asp&quot;&gt;http://automation.whatismyip.com/n09230945.asp&quot;
$WebClient = new-object System.Net.WebClient
$ExternalIP = $WebClient.downloadString($SourcePage)

Write-host &quot;IP Address IPV4: &quot;$networkadapter.IPAddress[0]
Write-host &quot;IP Address IPV6: &quot;$networkadapter.IPAddress[1]
Write-host &quot;Gateway Address:&quot; $Networkadapter.DefaultIpGateway
write-host &quot;External IP Address:&quot; $ExternalIP
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2011/11/powershell-ip-address-details/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Windows 8: installing in VMware Workstation 8</title>
		<link>http://www.marcvalk.net/2011/09/windows-8-installing-in-vmware-workstation-8/</link>
		<comments>http://www.marcvalk.net/2011/09/windows-8-installing-in-vmware-workstation-8/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 08:09:33 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2011/09/windows-8-installing-in-vmware-workstation-8/</guid>
		<description><![CDATA[Most of you will know that Microsoft released a developer preview of the next version of Windows 8. You can download the ISO it here. I downloaded the ISO and tried to install it as a Virtual Machine (vmware workstation &#8230; <a href="http://www.marcvalk.net/2011/09/windows-8-installing-in-vmware-workstation-8/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Most of you will know that Microsoft released a developer preview of the next version of Windows 8. You can download the ISO it <a href="http://msdn.microsoft.com/en-us/windows/apps/br229516" target="_blank">here</a>.</p>
<p>I downloaded the ISO and tried to install it as a Virtual Machine (vmware workstation 8 because vmware v7.1 gave me an error).   <br />During initial startup for install I received the following error:</p>
<p><strong>Windows cannot read the &lt;ProductKey&gt; setting from the unattend answer file</strong>    </p>
<p><a href="http://www.marcvalk.net/wp-content/uploads/2011/09/image1.png" rel="lightbox"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="imageWindows cannot read the &lt;ProductKey&gt; setting from the unattend answer file" border="0" alt="Windows cannot read the &lt;ProductKey&gt; setting from the unattend answer file" src="http://www.marcvalk.net/wp-content/uploads/2011/09/image_thumb1.png" width="260" height="119" /></a>&#160;</p>
<p>This is because of the fact that VMware is mounting an floppy disk with an autoinst.flp file.</p>
<p>Just disconnect your floppy drive and try again.</p>
<p><a href="http://www.marcvalk.net/wp-content/uploads/2011/09/SNAGHTML49656be.png" rel="lightbox"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Disconnect Floppy Drive" border="0" alt="Disconnect Floppy Drive" src="http://www.marcvalk.net/wp-content/uploads/2011/09/SNAGHTML49656be_thumb.png" width="260" height="228" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2011/09/windows-8-installing-in-vmware-workstation-8/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PowerShell: Change Service startup mode</title>
		<link>http://www.marcvalk.net/2011/09/powershell-change-service-startup-mode/</link>
		<comments>http://www.marcvalk.net/2011/09/powershell-change-service-startup-mode/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 10:45:18 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2011/09/powershell-change-service-startup-mode/</guid>
		<description><![CDATA[To change the startup mode of every disabled service to manual, you can use the following PowerShell Code: get-wmiobject win32_service &#124; where-object {$_.StartMode -eq &#8216;Disabled&#8217;} &#124; ` foreach-object {set-service $_.Name -StartupType Manual}]]></description>
			<content:encoded><![CDATA[<p>To change the startup mode of every disabled service to manual, you can use the following PowerShell Code:</p>
<p>get-wmiobject win32_service | where-object {$_.StartMode -eq &#8216;Disabled&#8217;} | `   <br />foreach-object {set-service $_.Name -StartupType Manual}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2011/09/powershell-change-service-startup-mode/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SQL: installing SQL server on Windows 7 Dutch</title>
		<link>http://www.marcvalk.net/2011/09/sql-installing-sql-server-on-windows-7-dutch/</link>
		<comments>http://www.marcvalk.net/2011/09/sql-installing-sql-server-on-windows-7-dutch/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 11:17:11 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2011/09/sql-installing-sql-server-on-windows-7-dutch/</guid>
		<description><![CDATA[When you install SQL server 2008 R2 on Windows 7 Dutch, it is possible you will receive the following error during the &#8220;setup support rules&#8221; phase: Performance counter registry hive consistency The solution was found here: http://bertvanvreumingen.blogspot.com/2010/11/performance-counter-registry-hive.html In short: export &#8230; <a href="http://www.marcvalk.net/2011/09/sql-installing-sql-server-on-windows-7-dutch/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When you install SQL server 2008 R2 on Windows 7 Dutch, it is possible you will receive the following error during the &#8220;setup support rules&#8221; phase: <strong>Performance counter registry hive consistency</strong></p>
<p><a href="http://www.marcvalk.net/wp-content/uploads/2011/09/image.png" rel="lightbox"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Setup Support Rules" border="0" alt="Setup Support Rules" src="http://www.marcvalk.net/wp-content/uploads/2011/09/image_thumb.png" width="260" height="199" /></a></p>
<p>The solution was found here: <a href="http://bertvanvreumingen.blogspot.com/2010/11/performance-counter-registry-hive.html">http://bertvanvreumingen.blogspot.com/2010/11/performance-counter-registry-hive.html</a></p>
<p>In short: </p>
<ul>
<li>export the registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib\009     </li>
<li>Edit the registry file you just created and change the value 009 to 013, resulting in:     <br />HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib\013      </li>
<li>Merge the registry file and re-run the &#8220;setup support rules&#8221;</li>
<li></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2011/09/sql-installing-sql-server-on-windows-7-dutch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PowerShell: Count Files in Folder and write to file</title>
		<link>http://www.marcvalk.net/2011/07/powershell-count-files-in-folder-and-write-to-file/</link>
		<comments>http://www.marcvalk.net/2011/07/powershell-count-files-in-folder-and-write-to-file/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 12:22:34 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2011/07/powershell-count-files-in-folder-and-write-to-file/</guid>
		<description><![CDATA[For my own backlog: $subfolders = Get-childitem &#60;path to folder&#62; -recurse &#124; where {$_.psIsContainer} foreach ($subfolder in $subfolders) { $filecount = (dir $subfolder.fullname&#160; &#124; where {$_.GetType() -match &#34;fileInfo&#34;}).count if&#160; ($filecount -ne $null) &#160;&#160;&#160; { &#160;&#160;&#160;&#160;&#160;&#160;&#160; write-output &#34;$($subfolder.fullname) `t$($filecount)&#34; &#124; Out-File &#8230; <a href="http://www.marcvalk.net/2011/07/powershell-count-files-in-folder-and-write-to-file/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For my own backlog:</p>
<p>$subfolders = Get-childitem &lt;path to folder&gt; -recurse | where {$_.psIsContainer}    <br />foreach ($subfolder in $subfolders)     <br />{     <br />$filecount = (dir $subfolder.fullname&#160; | where {$_.GetType() -match &quot;fileInfo&quot;}).count     <br />if&#160; ($filecount -ne $null)     <br />&#160;&#160;&#160; {     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; write-output &quot;$($subfolder.fullname) `t$($filecount)&quot; | Out-File $resultfile -append     <br />&#160;&#160;&#160; }     <br />}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2011/07/powershell-count-files-in-folder-and-write-to-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BPOS: calendar meetings and send on behalf of permissions</title>
		<link>http://www.marcvalk.net/2011/06/bpos-calendar-meetings-and-send-on-behalf-of-permissions/</link>
		<comments>http://www.marcvalk.net/2011/06/bpos-calendar-meetings-and-send-on-behalf-of-permissions/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 11:52:04 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BPOS]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2011/06/bpos-calendar-meetings-and-send-on-behalf-of-permissions/</guid>
		<description><![CDATA[I just noticed something. We have a mailbox which we use with multiple people. But this mailbox is also used for sending out mail from software and servers (via SMTP authentication). In order to use the mailing from software, we &#8230; <a href="http://www.marcvalk.net/2011/06/bpos-calendar-meetings-and-send-on-behalf-of-permissions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just noticed something.   </p>
<p>We have a mailbox which we use with multiple people. But this mailbox is also used for sending out mail from software and servers (via SMTP authentication).</p>
<p>In order to use the mailing from software, we had to give the mailbox permissions to send out mail (send as or send on behalf of).   </p>
<p>Now we had the following issue, the mailbox mentioned above (the system mailbox) had send on behalf permissions on the mailbox of user-A. Whenever user-A received a meeting request it also ended up in the system mailbox.</p>
<p>How weird is that?   <br />As we read through the BPOS manual we see this:    </p>
<h4><em>Send on Behalf Of Access</em></h4>
<p><em>Send on Behalf Of access is similar to Send As access except that when the delegate user sends mail for the mailbox owner, the From field of the message will read &quot;Sent on behalf of mailbox owner by delegate user.&quot;</em></p>
<p><em>The Send on Behalf Of parameter sets delegate access for the specified mailboxes, and enables the default Microsoft Outlook settings for delegates, including default folder permissions and meeting request behavior.</em></p>
<p>So the system mailbox becomes a delegate of the user-A mailbox. And this means:   </p>
<p><em>By default, when you add a delegate, the delegate has full access to your <b>Calendar</b> and <b>Tasks</b> folders. The delegate can also respond to meeting requests on your behalf.</em></p>
<p> So.. setting just the send as permission was more then enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2011/06/bpos-calendar-meetings-and-send-on-behalf-of-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AWS: elasticfox-ec2tag</title>
		<link>http://www.marcvalk.net/2011/06/aws-elasticfox-ec2tag/</link>
		<comments>http://www.marcvalk.net/2011/06/aws-elasticfox-ec2tag/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 10:09:08 +0000</pubDate>
		<dc:creator>mvalk</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Amazon EC2]]></category>
		<category><![CDATA[Amazon Web Services]]></category>

		<guid isPermaLink="false">http://www.marcvalk.net/2011/06/aws-elasticfox-ec2tag/</guid>
		<description><![CDATA[Since the firefox plugin for Amazon Web Services isn&#8217;t working anymore inside firefox 4, I&#8217;ve been looking for an replacement. And. I found one (else I did not have anything to say). It is a stand alone tool and an &#8230; <a href="http://www.marcvalk.net/2011/06/aws-elasticfox-ec2tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since the firefox plugin for Amazon Web Services isn&#8217;t working anymore inside firefox 4, I&#8217;ve been looking for an replacement.</p>
<p>And. I found one (else I did not have anything to say). It is a stand alone tool and an improved version of elasticfox named elasticfox-ec2tag.</p>
<p>You can download it <a href="https://bitbucket.org/winebarrel/elasticfox-ec2tag/downloads" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.marcvalk.net/2011/06/aws-elasticfox-ec2tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

