<?xml version="1.0"?><rss version="2.0">
			  <channel>
				<title>Tillverkarna berättar</title>
				<link>http://www.itf.se</link>
				<description></description>
				<generator>BeGood</generator>				
		<item>
  <title>Varför kan jag inte ha större disk än 2 TB ?</title>
  <link>http://www.itf.se//microsoft/varfor-kan-jag-inte-ha-storre-disk-an-2-tb-/</link>
  <description>
    <![CDATA[
    
    <p>Detta är en vanlig fråga nu när disk blir billigare och större.
Nedan beskriver Microsoft Enterprise Platforms Support problemet.</p>
    <p>There are actually three different 2 TB limitations that are commonly hit...</p>
<ul type="disc">
<li>Partition size </li>
<li>Number of clusters </li>
<li>SCSI goo </li>
</ul>
<p><strong><span style="text-decoration: underline;">Partition Size Limitation </span></strong></p>
<p>The partition size is pretty straight forward.&nbsp; On an MBR (Master Boot Record) disk, the locations where the partition sizes are stored are only 4 bytes long.&nbsp; Since this is in hexadecimal, the largest value we can stuff in there is all F's.&nbsp; So the max value would 4,294,967,295 in decimal.&nbsp;</p>
<p>FF FF FF FFh = 4294967295d</p>
<p>This maximum partition size is not in bytes, it is in number of sectors.&nbsp; Since currently sectors are limited to 512 bytes, the maximum size ends up being 2 TB.</p>
<p>4,294,967,295 sectors * 512 bytes/sectors = 2,199,023,255,040 bytes or 2TB.</p>
<p><strong><span style="text-decoration: underline;">Number of Clusters </span></strong></p>
<p>The second limitation is harder to spot.&nbsp; It is a limitation of NTFS.&nbsp; NTFS is limited to (2^32 -1) clusters....no matter what.&nbsp; The smallest cluster size possible is 512 bytes (1 sector).&nbsp; So again the math leaves us at 2,199,023,255,040 or 2TB.</p>
<p>(2^32)-1 = (4,294,967,296)-1 = 4,294,967,295 clusters</p>
<p>4,294,967,295 clusters * 512 bytes/cluster = = 2,199,023,255,040 bytes or 2TB</p>
<p>Here is a quick reference chart to help you see the maximum NTFS size for each cluster size.</p>
<p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="163" valign="top">
<p align="center"><strong>Cluster size </strong><strong></strong></p>
</td>
<td width="396" valign="top">
<p align="center"><strong>NTFS Max Size </strong><strong></strong></p>
</td>
</tr>
<tr>
<td width="163" valign="top">
<p>&nbsp; 512 bytes&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
</td>
<td width="396" valign="top">
<p>&nbsp;&nbsp;2,199,023,255,040 (2TB)</p>
</td>
</tr>
<tr>
<td width="163" valign="top">
<p>&nbsp;1024 bytes</p>
</td>
<td width="396" valign="top">
<p>&nbsp;&nbsp;4,398,046,510,080 (4TB)</p>
</td>
</tr>
<tr>
<td width="163" valign="top">
<p>&nbsp;2048 bytes</p>
</td>
<td width="396" valign="top">
<p>&nbsp;&nbsp;8,796,093,020,160 (8TB)</p>
</td>
</tr>
<tr>
<td width="163" valign="top">
<p>&nbsp;4096 bytes</p>
</td>
<td width="396" valign="top">
<p>&nbsp;17,592,186,040,320 (16TB) Default cluster size</p>
</td>
</tr>
<tr>
<td width="163" valign="top">
<p>&nbsp;8192 bytes</p>
</td>
<td width="396" valign="top">
<p>&nbsp;35,184,372,080,640 (32TB)</p>
</td>
</tr>
<tr>
<td width="163" valign="top">
<p>16384 bytes &nbsp;</p>
</td>
<td width="396" valign="top">
<p>&nbsp;70,368,744,161,280 (64TB)</p>
</td>
</tr>
<tr>
<td width="163" valign="top">
<p>32768 bytes</p>
</td>
<td width="396" valign="top">
<p>140,737,488,322,560 (128TB)</p>
</td>
</tr>
<tr>
<td width="163" valign="top">
<p>65536 bytes&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
</td>
<td width="396" valign="top">
<p>281,474,976,654,120 (256TB)</p>
</td>
</tr>
</tbody>
</table>
</p>
<p>&nbsp;</p>
<p>Cluster size really depends on your needs.&nbsp; While 512 is fine if you just have a bunch of tiny files, it isn't as efficient for say a volume with just SQL DBs.&nbsp; Also, a tiny cluster size can adversely affect VSS.&nbsp; But that is a topic for another time.</p>
<p><strong><span style="text-decoration: underline;">SCSI Goo </span></strong></p>
<p>This is by far the hardest to understand as it requires some basic SCSI knowledge.&nbsp; Microsoft Windows operating systems support two different SCSI standards when it comes to reads and writes.&nbsp; There is a third but it is very old and is mostly just used one tape devices.&nbsp; So let's just forget about that one and stick to the two that are relevant.</p>
<p>These two standards are <em>Read10/Write10</em> and <em>Read16/Write16</em>.&nbsp; This all has to do with the way the CDB (Command Descriptor Block) is structured.</p>
<p><em>Read10/Write10</em> - This standard reserves bytes 2-5 to define the LBA (Logical Block Address).&nbsp; Think of LBA as sector numbers....it makes it easier on your brain.&nbsp; So we have 4 bytes that can define the addressable sectors.&nbsp; Just like in the &lsquo;partition size limitation' we are back to dealing with a 4 byte number used to define all the addresses on the drive.</p>
<p>FF FF FF FFh = 4294967295d</p>
<p>And just like before, the above is just the possible number of address (number of sectors).&nbsp; Multiply by the standard sector size of 512 bytes and we get...</p>
<p>4,294,967,295 sectors * 512 bytes/sectors = 2,199,023,255,040 bytes or 2TB.</p>
<p>What this all means is that when Windows is using the <em>Read10/Write10</em> standard, then the biggest drive that will be supported is 2TB.&nbsp;</p>
<p><em>Read16/Write16</em> - Sometimes called LBA64 by some vendors, this standard reserves bytes 2-9 to define the LBAs.&nbsp; That would be 8 bytes, each byte being 8 bits in size.&nbsp; Now here is where we start getting into some really big numbers.&nbsp; The approximate size comes out to be around 8ZB (zettabytes).&nbsp; Here's a quick chart to put it in some perspective.</p>
<ul type="disc">
<li>1024KB = 1MB (megabyte) </li>
<li>1024MB = 1GB (gigabyte) </li>
<li>1024GB = 1TB (terabyte) </li>
<li>1024TB = 1PB (petabyte) </li>
<li>1024PB = 1EB (exabyte) </li>
<li>1024EB = 1ZB (zettabyte) </li>
</ul>
<p>So it is going to be a while before we have to worry about running into the limitation of Read16/Write16.</p>
<p><strong><span style="text-decoration: underline;">Exceeding the limitations</span></strong></p>
<p>Each limitation has a way of getting around it.&nbsp; Otherwise we'd still be stuck at 2TB.&nbsp;</p>
<p><strong>Partition size limitation</strong> - There are actually two ways around this.&nbsp; The first way is to convert your disks to dynamic disks and create volume sets.&nbsp; This functionality has been around since Windows 2000.&nbsp; This doesn't really allow you to increase the partition size.&nbsp; What it does is give you the ability to chain your partitions together to form larger volumes.&nbsp; So I could use two drives of 2TB and create a volume of roughly 4TB in size.</p>
<p>The second method to bypass the partition size limitation is to use a GPT (Guid Partition Table) configuration.&nbsp; In Windows 2003 SP1 Microsoft introduced its implementation of the GPT.&nbsp; A disk configured to be GPT rather than the MBR style would have a 32 sector partition array instead of a tiny 64 byte partition table.</p>
<p>NOTE:&nbsp; 32 sectors is equal to 16,384 bytes</p>
<p>The partitions that can be defined on a GPT disk can be up to 16EB in size.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
<p><strong>Number of clusters</strong> - There really isn't a way around this limitation.&nbsp; NTFS is currently still limited in its number of clusters.&nbsp; However, you can get past 2TB by making sure your cluster size is larger than the minimum size of 512 bytes.&nbsp;</p>
<p>It is important to note that for the most part, if you create a FAT partition and then convert it to NTFS the cluster size will come out as 512 bytes.&nbsp; There are ways around this but most of them require that you know ahead of time that you are going to be converting your FAT partition to NTFS.&nbsp;</p>
<p><strong>SCSI goo</strong> - There isn't anything in Windows you can do to get around the limitation of Read10/Write10 as&nbsp;&nbsp; Windows is already able to use <em>Read16/Write16</em>.&nbsp; However, the hardware MUST support it as well.&nbsp; Windows will query the storage devices and negotiate if <em>Read10/Write10</em> or <em>Read16/Write16</em> is to be used.&nbsp; When in doubt, check with your storage vendor.</p>
<p>Robert Mitchell <br />Senior Support Escalation Engineer <br />Microsoft Enterprise Platforms Support<img id="_x0000_i1025" src="http://blogs.technet.com/aggbug.aspx?PostID=3313737" alt="" width="1" height="1" />&nbsp;</p>
    ]]>
  </description>
  <guid>/microsoft/varfor-kan-jag-inte-ha-storre-disk-an-2-tb-/#lastedit:2010-07-01 11:19:29</guid>
</item>
<item>
  <title>Implementing networks in support of Failover Clusters</title>
  <link>http://www.itf.se//microsoft/implementing-networks-in-support-of-failover-clusters-/</link>
  <description>
    <![CDATA[
    
    <p></p>
    <p><strong>Implementing networks in support of Failover Clusters<a name="Implement"></a> </strong></p>
<p>The main consideration when designing Failover Cluster networks is to ensure there is built-in redundancy for cluster communications.&nbsp; This is typically accomplished by having a minimum of two physical Network Interface Cards (NICs) installed in each node that will be part of the cluster.&nbsp; These cards must be supported by two separate and distinct buses (e.g.&nbsp; Two PCI NICs).&nbsp; Many people think a single multi-port NIC card meets this requirement - it does not as this configuration creates a single point of failure for all cluster communications.&nbsp;&nbsp; The best configuration would be two multi-port NICs running on separate buses and having fault tolerance implemented by way of NIC Teaming software (provided by 3<sup>rd</sup> Party vendors.) and being physically connected to separate network switches.</p>
<p><strong>Note:</strong>&nbsp; NIC Teaming is not supported on iSCSI connections.&nbsp; Please review the <a href="http://www.microsoft.com/windowsserver2003/technologies/storage/iscsi/iscsicluster.mspx">iSCSI Cluster Support: Frequently Asked Questions.</a>&nbsp; The appropriate fault-tolerant mechanism for iSCSI connectivity would be multi-path software. Please review the <a href="http://www.microsoft.com/WindowsServer2003/technologies/storage/mpio/faq.mspx">Microsoft Multi-path I/O: Frequently Asked Questions</a>.</p>
<p>There are two primary design scenarios when planning for Failover Cluster network connectivity.&nbsp; In the first scenario (and the most common), all nodes in the cluster are located on the same networks.&nbsp; In the second scenario, nodes in the cluster are located on separate and distinct routed networks (this is very common in multi-site cluster implementations).&nbsp; Figure 18 shows an example of the second scenario.</p>
<p><a href="http://blogs.technet.com/blogfiles/askcore/WindowsLiveWriter/WindowsServer2008FailoverClustersNetwork_7236/clip_image002_2.jpg"><img id="_x0000_i1025" title="clip_image002" src="http://blogs.technet.com/blogfiles/askcore/WindowsLiveWriter/WindowsServer2008FailoverClustersNetwork_7236/clip_image002_thumb.jpg" border="0" alt="clip_image002" width="436" height="228" /></a></p>
<p align="center">Figure 18:&nbsp; Multi-site cluster (network connectivity only)</p>
<p><strong>Note:</strong>&nbsp; Even though it is supported to locate cluster nodes on separate, routed networks, it is still supported to connect nodes in a multi-site cluster using stretched Virtual Local Area Networks (VLAN).&nbsp; This configuration places the nodes on the same network(s).</p>
<p>It is important in any cluster that there are no NICs on the same node that are configured to be on the same subnet.&nbsp; This is because the cluster network driver uses the subnet to identify networks and will use the first one detected and ignore any other NICs configured on the same subnet on the same node.&nbsp; The cluster validation process will register a <strong>Warning</strong> if any network interfaces in a cluster node are configured to be on the same network.&nbsp; The only possible exception to this would be for iSCSI (Internet Small Computer System Interface) connections.&nbsp; If iSCSI is implemented in a cluster, and MPIO (Multi-Path Input/Output) is being used for fault-tolerant connections to iSCSI Storage, then it is possible that the network interfaces could be on the same network. In this configuration, the iSCSI network in the Failover Cluster Manager should be configured such that cluster would not use it for any cluster communications.</p>
<p><strong>Note:</strong>&nbsp; Please consult the <a href="http://www.microsoft.com/WindowsServer2003/technologies/storage/iscsi/iscsicluster.mspx">iSCSI Cluster support: Frequently Asked Question</a>.</p>
<p>As previously mentioned, Windows Server 2008 accommodates cluster nodes being located on separate, routed networks by including a new logic, called an <strong>OR</strong> logic, when it comes to IP Address resources.&nbsp; Figure 19 illustrates this.</p>
<p align="center"><a href="http://blogs.technet.com/blogfiles/askcore/WindowsLiveWriter/WindowsServer2008FailoverClustersNetwork_7236/clip_image004_2.jpg"><img id="_x0000_i1026" title="clip_image004" src="http://blogs.technet.com/blogfiles/askcore/WindowsLiveWriter/WindowsServer2008FailoverClustersNetwork_7236/clip_image004_thumb.jpg" border="0" alt="clip_image004" width="440" height="289" /></a></p>
<p align="center">Figure 19:&nbsp; IP Address Resource OR logic</p>
<p>When a Network Name resource is configured with an <strong>OR</strong> dependency on more than one IP Address resource, this means at least one of the IP Address resources must be able to come <strong>Online</strong> before the Network Name resource can come <strong>Online</strong>.&nbsp; Since a Network Name resource can be associated with more than one IP Address, there is a property of a Network Name resource that can be modified so DNS registrations will occur for all of the IP Addresses.&nbsp; The property is called RegisterAllProvidersIP (See Figure 20).</p>
<p align="center"><a href="http://blogs.technet.com/blogfiles/askcore/WindowsLiveWriter/WindowsServer2008FailoverClustersNetwork_7236/clip_image006_2.jpg"><img id="_x0000_i1027" title="clip_image006" src="http://blogs.technet.com/blogfiles/askcore/WindowsLiveWriter/WindowsServer2008FailoverClustersNetwork_7236/clip_image006_thumb.jpg" border="0" alt="clip_image006" width="506" height="279" /></a></p>
<p align="center">Figure 20:&nbsp; Network Name resource properties</p>
<p><strong>Note:</strong>&nbsp; In Figure 20 above, Failover Cluster PowerShell cmdlets were used to access cluster configuration information.&nbsp; This is new in Windows Server 2008 R2.&nbsp; For more information, review the TechNet <a href="http://technet.microsoft.com/en-us/library/ee461009.aspx">Cmdlet&nbsp; Reference</a>.</p>
<p>The default registration behavior is to register only the IP Address that can come <strong>Online</strong> on the node.&nbsp; Implementing this other behavior by modifying the setting to (1) can assist name resolution in a multi-site cluster scenario.</p>
<p><strong>Note:</strong>&nbsp; Please review <a href="http://support.microsoft.com/kb/947048">KB 947048</a> for other things to consider when deploying failover cluster nodes on different, routed subnets (multi-site cluster scenario)<a name="_GoBack"></a>.</p>
<p>While Failover Clusters require a minimum of two NICs to provide reliable cluster communications, there are scenarios where more NICs may be desired and\or required based on the services or applications that are running in the cluster.&nbsp; One such scenario we already mentioned - iSCSI connectivity to storage.&nbsp; The other scenario involves Microsoft's virtualization technology - Hyper-V.</p>
<p>The integration of Failover Clustering with Hyper-V was introduced in Windows Server 2008 (RTM) in the form of making Virtual Machines highly available in a cluster by being able to move (Failover) the Virtual Machines between the nodes in the cluster using a process called Quick Migration.&nbsp; In Windows Server 2008 R2, additional capabilities were introduced including Live Migration and Cluster Shared Volumes (CSV).&nbsp; These features improved the high availability story for Virtual machines, but also introduced new networking requirements.&nbsp;&nbsp; The inner workings of Hyper-V networking will not be discussed here.&nbsp; For more information, please download this <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=3fac6d40-d6b5-4658-bc54-62b925ed7eea">whitepaper</a> (<a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=3fac6d40-d6b5-4658-bc54-62b925ed7eea">http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=3fac6d40-d6b5-4658-bc54-62b925ed7eea</a>).&nbsp;</p>
<p>The networking requirements in a Hyper-V Cluster supporting Live Migration and using Cluster Shared Volumes (CSV) can add up quickly as illustrated in Figure 21.</p>
<p align="center"><a href="http://blogs.technet.com/blogfiles/askcore/WindowsLiveWriter/WindowsServer2008FailoverClustersNetwork_7236/clip_image008_2.jpg"><img id="_x0000_i1028" title="clip_image008" src="http://blogs.technet.com/blogfiles/askcore/WindowsLiveWriter/WindowsServer2008FailoverClustersNetwork_7236/clip_image008_thumb.jpg" border="0" alt="clip_image008" width="587" height="344" /></a></p>
<p align="center">Figure 21: Hypothetical Networking Requirements</p>
<p>For more information on Live Migration and Cluster Shared Volumes in Windows Server 2008 R2, visit the Microsoft TechNet site.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ff182346(WS.10).aspx">Using Cluster Shared Volumes in a Failover Cluster in Windows Server 2008 R2</a></p>
<p><a href="http://technet.microsoft.com/en-us/library/dd446679(WS.10).aspx">Hyper-V:&nbsp; Using Live Migration with Cluster Shared Volumes in Windows Server 2008 R2</a></p>
<p>In the next segment I will discuss <strong><a href="http://blogs.technet.com/askcore/archive/2010/02/25/windows-server-2008-failover-clusters-networking-part-3.aspx">Troubleshooting cluster networking issues (Part 3).</a></strong>&nbsp; See ya then.</p>
<p>Chuck Timon <br />Senior Support Escalation Engineer <br />Microsoft Enterprise Platforms Support</p>
<p>&nbsp;</p>
    ]]>
  </description>
  <guid>/microsoft/implementing-networks-in-support-of-failover-clusters-/#lastedit:2010-07-01 11:14:12</guid>
</item>
<item>
  <title>Demo Videos Microsoft Windows Server 2008 med Hyper-V</title>
  <link>http://www.itf.se//microsoft/microsoft-windows-server-2008-med-hyper-v/</link>
  <description>
    <![CDATA[
    
    <p></p>
    <p>H&auml;r har vi samlat ett antal videodemonstrationer&nbsp;g&auml;llande Windows Server 2008 och hyper-V. Demonstrationerna &auml;r dock p&aring; engelska.</p>
<p><a href="http://www.virtualisering.nu/microsoft/Hyper-V-1" target="_self">Video 1 "Windows Server 2008 med Hyper-V&nbsp;Start"</a></p>
<p><a href="http://www.virtualisering.nu/microsoft/Hyper-V-2" target="_self">Video 2 &nbsp;"Windows Server 2008 Hyper-V regler"</a></p>
<p><a href="http://www.virtualisering.nu/microsoft/Hyper-V-3" target="_self">Video 3 "Windows Server 2008 Skapa en virtuell maskin i Hyper-V"</a></p>
<p><a href="http://www.virtualisering.nu/microsoft/Hyper-V-4" target="_self">Video 4 "Windows Server 2008 S&auml;tta upp ett Hyper-V kluster"</a></p>
<p><a href="http://www.virtualisering.nu/microsoft/Hyper-V-5" target="_self">Video 5 "Windows Server 2008 Placera Virtual Machine i ett kluster"</a></p>
<p><a href="http://www.virtualisering.nu/microsoft/Hyper-V-6" target="_self">Video 6 "Windows Server 2008 En titt p&aring; snabb migrering"</a></p>
    ]]>
  </description>
  <guid>/microsoft/microsoft-windows-server-2008-med-hyper-v/#lastedit:2010-02-17 13:43:29</guid>
</item>
<item>
  <title>Windows Server 2008 En titt på snabb migrering</title>
  <link>http://www.itf.se//microsoft/hyper-v-6/</link>
  <description>
    <![CDATA[
    
    <p></p>
    <p>VIDEO 6</p>
<p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">
<param name="src" value="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=228" /><embed type="application/x-shockwave-flash" width="400" height="350" src="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=228"></embed>
</object>
&nbsp;</p>
    ]]>
  </description>
  <guid>/microsoft/hyper-v-6/#lastedit:2010-02-17 13:24:36</guid>
</item>
<item>
  <title>Windows Server 2008 Placera Virtual Machine i ett kluster</title>
  <link>http://www.itf.se//microsoft/hyper-v-5/</link>
  <description>
    <![CDATA[
    
    <p></p>
    <p>VIDEO 5</p>
<p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">
<param name="src" value="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=226" /><embed type="application/x-shockwave-flash" width="400" height="350" src="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=226"></embed>
</object>
&nbsp;</p>
    ]]>
  </description>
  <guid>/microsoft/hyper-v-5/#lastedit:2010-02-17 13:25:25</guid>
</item>
<item>
  <title>Windows Server 2008 Sätta upp ett Hyper-V kluster</title>
  <link>http://www.itf.se//microsoft/hyper-v-4/</link>
  <description>
    <![CDATA[
    
    <p></p>
    <h2>VIDEO 4</h2>
<p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">
<param name="src" value="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=231" /><embed type="application/x-shockwave-flash" width="400" height="350" src="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=231"></embed>
</object>
</p>
    ]]>
  </description>
  <guid>/microsoft/hyper-v-4/#lastedit:2010-02-17 13:19:31</guid>
</item>
<item>
  <title>Windows Server 2008   -    Skapa en Virtuell maskin i Hyper-V</title>
  <link>http://www.itf.se//microsoft/hyper-v-3/</link>
  <description>
    <![CDATA[
    
    <p></p>
    <h2>VIDEO 3&nbsp;</h2>
<p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">
<param name="src" value="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=227" /><embed type="application/x-shockwave-flash" width="400" height="350" src="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=227"></embed>
</object>
</p>
    ]]>
  </description>
  <guid>/microsoft/hyper-v-3/#lastedit:2010-02-17 12:53:58</guid>
</item>
<item>
  <title>Wndows Server 2008 Installation Hyper-V regler</title>
  <link>http://www.itf.se//microsoft/hyper-v-2/</link>
  <description>
    <![CDATA[
    
    <p></p>
    <h2>VIDEO 2</h2>
<p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">
<param name="src" value="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=229" /><embed type="application/x-shockwave-flash" width="400" height="350" src="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=229"></embed>
</object>
</p>
    ]]>
  </description>
  <guid>/microsoft/hyper-v-2/#lastedit:2010-02-17 12:50:55</guid>
</item>
<item>
  <title>Windows Server 2008 med Hyper-V</title>
  <link>http://www.itf.se//microsoft/hyper-v-1/</link>
  <description>
    <![CDATA[
    
    <p></p>
    <h2>VIDEO 1</h2>
<p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">
<param name="src" value="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=225" /><embed type="application/x-shockwave-flash" width="400" height="350" src="/begood/includes/tinymce3/plugins/media/img/flv_player.swf?autoStart=false&amp;type=flv&amp;flvToPlay=http://www.itf.se/begood/file_db.php?id=225"></embed>
</object>
&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
    ]]>
  </description>
  <guid>/microsoft/hyper-v-1/#lastedit:2010-02-17 12:47:45</guid>
</item>
<item>
  <title>Virtualisering kommer dominera besparingsfokus 2014</title>
  <link>http://www.itf.se//citrix/virtualisering-kommer-dominera-besparingsfokus-2014/</link>
  <description>
    <![CDATA[
    
    <p></p>
    <p>Citrix har publiserat ett whitepaper&nbsp;"The Citrix Virtualisation Index" l&auml;s dokumentet <a href="/begood/file_db.php?id=219" target="_blank">h&auml;r. <img src="/begood/image_db.php?id=643" alt="adobe.jpg" width="40" height="40" /></a></p>
    ]]>
  </description>
  <guid>/citrix/virtualisering-kommer-dominera-besparingsfokus-2014/#lastedit:2010-02-10 11:14:25</guid>
</item>

			  </channel>
			</rss>
		