<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Petri IT Knowledgebase</title>
	
	<link>http://www.petri.co.il</link>
	<description>Petri IT Knowledgebase is one of the most comprehensive IT related web sites. With hundreds of MS Windows Client and Server related tips, tricks and how-to articles, Petri.co.il has become one of the world's leading MCSE and IT related knowledge bases.</description>
	<lastBuildDate>Wed, 19 Jun 2013 19:00:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
<image>
	<title>Petri</title>
	<url>http://www.petri.co.il/media/logo.gif</url>
	<link>http://www.petri.co.il/</link>
	<width>151</width>
	<height>74</height>
	</image>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Petri" /><feedburner:info uri="petri" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Petri</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Managing Network Adapters with PowerShell: Addressing and Configuration Info</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/MqZumkJFNEc/manage-network-adapters-powershell-addressing-configuration-info.htm</link>
		<comments>http://www.petri.co.il/manage-network-adapters-powershell-addressing-configuration-info.htm#comments</comments>
		<pubDate>Wed, 19 Jun 2013 19:00:19 +0000</pubDate>
		<dc:creator>Jeff Hicks</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PowerShell 3]]></category>
		<category><![CDATA[RSAT]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=37446</guid>
		<description><![CDATA[We're back with our series on managing network adapters with PowerShell! Learn to get addressing and configuration info with this tutorial.]]></description>
			<content:encoded><![CDATA[<p>In my previous article, we started exploring working with <a href="http://www.petri.co.il/manage-windows-server-201-network-adapters-powershell-part-1.htm">network adapters in Windows Server 2012 using PowerShell</a>. In that article, we looked at getting information from the physical adapter. Today let’s get some addressing and configuration information. As before, I’m running <strong>PowerShell 3</strong> in a Windows 8 desktop that has RSAT (Remote Server Administration Tools) installed in a domain setting. The commands can be used remotely, but the server must be running Windows Server 2012 or later.</p>
<div id="adkit_content-block" class="adkit content-block"  rel="nofollow"><a href="http://www.petri.co.il/uri/?id=3680&amp;host=go.solarwinds.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3680', 'Click']);" title="Read How To>>" rel="nofollow" style="font-size:12px;border:none"><strong style="display: block; clear: both;">How-To: Monitor Exchange Server Health & Performance</strong></a><a href="http://www.petri.co.il/uri/?id=3680&amp;host=go.solarwinds.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3680', 'Click']);" title="Read How To>>" rel="nofollow"><img src="/media/3680.gif"  alt=" " style="float: left; padding: 5px;font-size: 1em;"/></a> <p>Read this How To from SolarWinds and learn the best practices for monitoring the health &  performance of your Microsoft Exchange Servers.  <br />
<br />
Don’t wait until it’s too late!<br />
</p><a  href="http://www.petri.co.il/uri/?id=3680&amp;host=go.solarwinds.com" class="link-title" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3680', 'Click']);" title="How-To: Monitor Exchange Server Health & Performance" style="clear: both;" rel="nofollow">Read How To>></a></div>
<h2>Managing Network Adapters: Get-NetIPInterface</h2>
<p>First, I want to track down interface information for a remote server</p>
<div>
<pre>

PS C:\&gt; Get-NetIPInterface -CimSession chi-dev01

</div></pre>
<p>Results are displayed below in Figure 1.</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig1.png"><img class="alignnone size-full wp-image-37448" title="Get-NetIPInterface" src="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig1.png" alt="Get-NetIPInterface" width="580" height="187" /></a></p>
<p>Since I’m not using IPv6 in my network, let me focus only on IPv4.</p>
<div>
<pre>

PS C:\&gt; Get-NetIPInterface -CimSession chi-dev01 -AddressFamily IPv4

</div></pre>
<p>Figure 2 displays an easier-to-read result.</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig2.png"><img class="alignnone size-full wp-image-37449" title="Get-NetIPInterface" src="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig2.png" alt="Get-NetIPInterface" width="580" height="189" /></a></p>
<p>If I can do this for one, I can do it for many. Since I’m going to be querying remote machines more than once, I’ll go ahead and create some <strong>CIMSessions</strong> that I can reuse.</p>
<div>
<pre>

PS C:\&gt; $cim = New-CimSession -ComputerName chi-dc04,chi-fp02,chi-dev01,chi-app01

</div></pre>
<p>Now I’ll repeat my previous command for all the computers and filter out the loopback adapters. But I’ll also need to tweak it to show the computer name.</p>
<div>
<pre>

PS C:\&gt; Get-NetIPInterface -CimSession $cim -AddressFamily IPv4 -InterfaceAlias ethernet,team* | Select PSComputername,if*,InterfaceMetric,DHCP,nlMTU | Out-Gridview –title "IP Interface Data"

</div></pre>
<p>This will give me a nice list displayed in a sortable and filterable grid.</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig3.png"><img class="alignnone size-full wp-image-37450" title="Get-NetIPInterface" src="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig3.png" alt="Get-NetIPInterface" width="580" height="259" /></a></p>
<p>The interface index can come in handy when using the next cmdlets if a server has multiple adapters and you want to limit your query. I don’t have the situation in my test domain.</p>
<div id="adkit_freestyle" class="adkit freestyle"><a  href="/uri/?id=2727&amp;host=www.solarwinds.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '2727', 'Click']);" title="" rel="nofollow"><span><div style="min-height:46px; background:url(http://www.petri.co.il/media/download.jpg) no-repeat left center; padding-top:5px"><p style="font-weight:bold; margin-left:30px; margin-top:3px; padding:6px 0px 6px 10px; ">FREE Tool >> VM Console: Bounce VMs & Track Their Status from Your Desktop!</p></div></span></a></div>
<h2>Getting More Info with Get-NetIPAddress</h2>
<p>Based on the preceding, I can get an idea of the TCPIP configuration for each adapter. But I want more information, so I’ll turn to <strong>Get-NetIPAddress</strong>, focusing on IPv4 addresses.</p>
<div>
<pre>
PS C:\&gt; Get-NetIPAddress -CimSession (get-cimsession -comp chi-app01) -AddressFamily IPv4

</div></pre>
<p>I want to re-use an existing CIMSession I’ve already created for CHI-APP01. You can see my results below in Figure 4.</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig4.png"><img class="alignnone size-full wp-image-37451" title="Get-NetIPAddress" src="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig4.png" alt="Get-NetIPAddress" width="580" height="336" /></a></p>
<p>I don’t really need to know about the loopback adapter, so I’ll filter it out. As before, I grab IPv4 address configuration for multiple servers.</p>
<div>
<pre>

PS C:\&gt; Get-NetIPAddress -CimSession $cim -AddressFamily IPv4 -InterfaceAlias ethernet,team* | Select PSComputername,IPAddress,Prefix*,AddressState,*Lifetime,Interface* | out-gridview -title "IP Address"

</div></pre>
<p>I know this seems like a lot to type – and if you need to do this on a regular basis, you’ll definitely want to turn this command into a script or function. Figure 5 illustrates the result.</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig5.png"><img class="alignnone size-full wp-image-37452" title="Get-NetIPAddress" src="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig5.png" alt="Get-NetIPAddress" width="580" height="176" /></a></p>
<p>Many of the cmdlets I’m demonstrating are designed to work together. I could also have used my earlier command getting IP Interface objects and pipe them to Get-NetIPAddress.</p>
<div>
<pre>

PS C:\&gt; Get-NetIPInterface -CimSession $cim -AddressFamily IPv4 -InterfaceAlias ethernet,team* | Get-NetIPAddress | Select PSComputername,IPAddress,PrefixLength,*Origin,*Lifetime

</div></pre>
<p>&nbsp;</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig6.png"><img class="alignnone size-full wp-image-37453" title="Get-NetIPAddress" src="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig6.png" alt="Get-NetIPAddress" width="580" height="336" /></a></p>
<p>This is sort of like running IPConfig remotely – plus, we get objects.</p>
<p>&nbsp;</p>
<h2>More Details with Get-NetIPConfiguration</h2>
<p>Actually, we can more details on IP Configuration using <strong>Get-NetIPConfiguration</strong>. I think of this cmdlet as the IPCONFIG PowerShell equivalent.</p>
<div>
<pre>

PS C:\&gt; get-netipconfiguration

&nbsp;

&nbsp;

InterfaceAlias       : Ethernet 3

InterfaceIndex       : 17

InterfaceDescription : Microsoft Hyper-V Network Adapter #3

NetProfile.Name      : GLOBOMANTICS.local

IPv4Address          : 172.16.30.8

IPv4DefaultGateway   : 172.16.10.254

DNSServer            : 172.16.30.203

172.16.30.200

172.16.10.1

</div></pre>
<p>Although the major benefit to the cmdlet is that it can query a remote computer.</p>
<div>
<pre>

PS C:\&gt; get-netipconfiguration -CimSession (get-cimsession -comp chi-app01)

&nbsp;

&nbsp;

InterfaceAlias       : Ethernet

InterfaceIndex       : 12

InterfaceDescription : Microsoft Hyper-V Network Adapter

NetProfile.Name      : GLOBOMANTICS.local

IPv4Address          : 172.16.10.126

IPv6DefaultGateway   :

IPv4DefaultGateway   : 172.16.10.254

DNSServer            : 172.16.30.203

172.16.30.200

</div></pre>
<p>Or you can get detailed configuration information.</p>
<div>
<pre>

PS C:\&gt; get-netipconfiguration -CimSession (get-cimsession -comp chi-app01) –Detailed

</div></pre>
<p>&nbsp;</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig7.png"><img class="alignnone size-full wp-image-37454" title="Get-NetIPConfiguration" src="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig7.png" alt="Get-NetIPConfiguration" width="580" height="297" /></a></p>
<center><div id="adkit_in-content-lower-block" class="adkit lower-block"><a  href="/uri/?id=3741&amp;host=www.trainsignal.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 10', '3741', 'Click']);" title="" rel="nofollow"><img src="/media/3741.gif"  alt=" " /> </a></div></center>
<p>Querying remote computers is a little different, as the –CimSession parameter for Get-NetIPConfiguration won’t accept an array of sessions. However, you can pipe a CIMSession to the cmdlet.</p>
<div>
<pre>

PS C:\&gt; Get-CimSession -comp chi-fp02 | Get-NetIPConfiguration –Detailed

</div></pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig8.png"><img class="alignnone size-full wp-image-37455" title="Get-NetIPConfiguration" src="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig8.png" alt="Get-NetIPConfiguration" width="580" height="298" /></a></p>
<p>Where it gets difficult is selecting the properties to display in gridview, export to a CSV, or build an HTML report. This is because many of the properties are themselves nested <strong>CIMInstances</strong>. The shell automatically unrolls everything when displaying to the console as I’ve done above. But anything else takes a little more work.</p>
<div>
<pre>

$cim | get-netipconfiguration -Detailed |

Select Computername,InterfaceAlias,

@{N="Status";E={$_.NetAdapter.Status}},

@{N="IP";E={"$($_.IPv4Address.IPv4Address)/$($_.IPv4Address.PrefixLength)"}},

@{N="DefaultGateway";E={$_.IPv4DefaultGateway.nexthop}},

@{N="MAC";E={$_.NetAdapter.MACAddress}},

@{N="DHCP";E={$_.NetIPv4Interface.DHCP}},

@{N="DNS";E={

($_.DNSServer | where {$_.AddressFamily -eq 2} |

select -ExpandProperty ServerAddresses) -join ","}}

</div></pre>
<p>This is definitely something you would want to script. But now I can run my CIMSessions through this and then to <strong>Out-Gridview</strong>, as you can see in Figure 9.</p>
<p>&nbsp;</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig9.png"><img class="alignnone size-full wp-image-37456" title="Get-NetIPConfiguration" src="http://www.petri.co.il/wp-content/uploads/NIC-Part2-Fig9.png" alt="Get-NetIPConfiguration" width="580" height="123" /></a></p>
<p>Based on this, I can see I need to make some configuration changes to a few servers. We’ll look at that in a future article.</p>
<p>As with everything I show you in PowerShell, be sure to read the full help and examples because I am not demonstrating every parameter and use case. I know it looks like a lot of typing, but most of the time that was because I wanted some specific information. If you are happy with the default console output, it doesn’t take much work to get network adapter information from Windows Server 2012 with PowerShell.</p>
<p>Next time we’ll look at some other information we can gather remotely.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=MqZumkJFNEc:lDN7mymHIXQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=MqZumkJFNEc:lDN7mymHIXQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=MqZumkJFNEc:lDN7mymHIXQ:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/MqZumkJFNEc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/manage-network-adapters-powershell-addressing-configuration-info.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/manage-network-adapters-powershell-addressing-configuration-info.htm</feedburner:origLink></item>
		<item>
		<title>System Center Virtual Machine Manager 2012 SP1: Installation</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/H8KaVMgas_0/system-center-virtual-machine-manager-2012-sp1-installation.htm</link>
		<comments>http://www.petri.co.il/system-center-virtual-machine-manager-2012-sp1-installation.htm#comments</comments>
		<pubDate>Wed, 19 Jun 2013 15:00:28 +0000</pubDate>
		<dc:creator>Aidan Finn</dc:creator>
				<category><![CDATA[System Center]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[System Center Virtual Machine Manager]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=36752</guid>
		<description><![CDATA[Install System Center 2012 SP1 - Virtual Machine Manager (VMM/SCVMM) with this easy-to-follow guide.]]></description>
			<content:encoded><![CDATA[<p>In this post we will show you how to install S<strong>ystem Center Virtual Machine Manager 2012 SP1/Virtual Machine Manager</strong> (<strong>SCVMM/VMM</strong>) in just a few easy steps. Of course, this assumes that you have prepared the <a href="http://www.petri.co.il/requirements-system-center-virtual-machine-manager-2012-sp1.htm">System Center Virtual Machine Manager 2012 SP1 hardware requirements</a>, the <a href="http://www.petri.co.il/system-center-virtual-machine-manager-2012-sp1-software-requirements.htm" target="_blank">SCVMM software requirements</a>, and you have prepared the environment for VMM. If you haven't done that yet, go do so.</p>
<div id="adkit_content-block" class="adkit content-block"  rel="nofollow"><a href="http://www.petri.co.il/uri/?id=3229&amp;host=www.microsoft.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '3229', 'Click']);" title="Download FREE 180-Day Full Featured Trial" rel="nofollow" style="font-size:12px;border:none"><strong style="display: block; clear: both;">Download Windows Server 2012</strong></a><a href="http://www.petri.co.il/uri/?id=3229&amp;host=www.microsoft.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '3229', 'Click']);" title="Download FREE 180-Day Full Featured Trial" rel="nofollow"><img src="/media/3229.gif"  alt=" " style="float: left; padding: 5px;font-size: 1em;"/></a> <p><b>Windows Server 2012 is now available!</b><br><br />
It offers businesses and service providers a scalable, dynamic, and multitenant-aware cloud-optimized infrastructure. <br><br>Windows Server 2012 helps organizations connect securely across premises and helps IT Professionals to respond to business needs faster and more efficiently. </p><a  href="http://www.petri.co.il/uri/?id=3229&amp;host=www.microsoft.com" class="link-title" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '3229', 'Click']);" title="Download Windows Server 2012" style="clear: both;" rel="nofollow">Download FREE 180-Day Full Featured Trial</a></div>
<h2>How to Install System Center Virtual Machine Manager 2012 SP1</h2>
<ul>
<li>First, insert the installation DVD or mount the ISO and run the setup program. A splash screen will appear.</li>
<li>Click the <strong>Install</strong> link. In the Select the Features to Install screen, choose both <strong>VMM Management Server</strong> and <strong>VMM Console</strong>.</li>
<li>Enter the license information, including the product key. You get a time-limited trial if you do not enter the key. You can add this afterwards in the VMM Console. You can normally choose the default installation location.</li>
<li>In the Database Configuration screen, enter the name of the VMM server. Leaving Port blank will cause VMM to default to TCP 1433. If the user you are logged in as does not have admin rights in the SQL Server instance, then you can check <strong>Use The Following Credentials</strong> and supply an alternative username and password for a user with sufficient privileges.</li>
<li>Choose the <strong>SQL Server Instance</strong>. The final option defaults to creating a new database called VirtualManagerDB. You have the option to reuse an existing VMM database if one exists (in the case of an upgrade or repair).</li>
</ul>
<p style="text-align: center;"><a href="http://www.petri.co.il/?attachment_id=36753" rel="attachment wp-att-36753"><img class="size-full wp-image-36753 aligncenter" title="SCVMM Installation - Database Configuration" src="http://www.petri.co.il/wp-content/uploads/rsz_scvmmdbconfig.png" alt="SCVMM Installation - Database Configuration" width="550" height="415" /></a></p>
<p style="text-align: left;"><div id="adkit_freestyle" class="adkit freestyle"><a  href="/uri/?id=2134&amp;host=www.microsoft.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '2134', 'Click']);" title="" rel="nofollow"><span><div style="min-height:46px; background:url(http://www.petri.co.il/media/download.jpg) no-repeat left center; padding-top:5px"><p style="font-weight:bold; margin-left:30px; margin-top:3px; padding:6px 0px 6px 10px; ">FREE 180-Day Trial >> System Center Virtual Machine Manager</p></div></span></a></div></p>
<ul>
<li>The next screen allows you to put some of your environment preparation into use. By default the VMM service will log in using the Local System account. This limits VMM functionality, so you should opt instead to using the domain-based service account that you should have created.</li>
<li>By default, the encryption keys for the sensitive data in the VMM database are stored on the VMM server. Check the <strong>Store My Keys in Active Directory</strong> option, then enter the location of the DKM container that you should have already created and configured.</li>
</ul>
<p style="text-align: center;"><a href="http://www.petri.co.il/?attachment_id=36755" rel="attachment wp-att-36755"><img class="size-full wp-image-36755 aligncenter" title="SCVMM Installation - Configuring Service and DKM" src="http://www.petri.co.il/wp-content/uploads/rsz_scvmmsvcconfig.png" alt="SCVMM Installation - Configuring Service and DKM" width="550" height="414" /></a></p>
<p>The <strong>Port Configuration screen</strong> gives you the opportunity to customize the ports that are used by VMM. Normally you will not change these settings.</p>
<p>The <strong>Library Configuration screen</strong> allows you to customize the VMM library location, share name, and share description. You might have an existing library (upgrade or install) that you would like to use. Best practice is to place this library on a non-system drive. This will protect the operating system and allow you to enable volume deduplication to optimize VMM library storage utilization. Note that you can add extra libraries later in the VMM console.</p>
<p style="text-align: center;"><a href="http://www.petri.co.il/?attachment_id=36756" rel="attachment wp-att-36756"><img class="size-full wp-image-36756 aligncenter" title="SCVMM Installation - Library Location" src="http://www.petri.co.il/wp-content/uploads/rsz_scvmmlibrarylocation.png" alt="SCVMM Installation - Library Location" width="550" height="414" /></a></p>
<p style="text-align: left;"><center><div id="adkit_in-content-lower-block" class="adkit lower-block"><a  href="/uri/?id=2780&amp;host=" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 18', '2780', 'Click']);" title="" rel="nofollow"><span><!-- begin ad tag (tile=1) -->
<script type="text/javascript">
//<![CDATA[
ord = window.ord || Math.floor(Math.random()*1E16);
document.write('<script type="text/javascript" src="http://ad2.netshelter.net/adj/ns.petri/general;ppos=btf;kw=;tile=1;sz=300x600,300x250;ord=' + ord + '?"><\/script>');
//]]&gt;
</script>
<noscript><a href="http://ad2.netshelter.net/jump/ns.petri/general;ppos=btf;kw=;tile=1;sz=300x600,300x250;ord=123456789?" target="_blank" ><img src="http://ad2.netshelter.net/ad/ns.petri/general;ppos=btf;kw=;tile=1;sz=300x600,300x250;ord=123456789?" border="0" alt="" /></a></noscript>
<!-- end ad tag --></span></a></div></center></p>
<ul>
<li>Complete the wizard and you are nearly done. The second-to-last step is to apply the latest <strong>Update Rollup for System Center 2012 SP1 – Virtual Machine Manager</strong>. These URs are being released pretty regularly, so use your favorite search engine to find the latest one and install it.</li>
<li>Finally, run Windows Update and update/reboot your VMM server until all updates are applied.</li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=H8KaVMgas_0:nPkUTB7hWLs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=H8KaVMgas_0:nPkUTB7hWLs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=H8KaVMgas_0:nPkUTB7hWLs:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/H8KaVMgas_0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/system-center-virtual-machine-manager-2012-sp1-installation.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/system-center-virtual-machine-manager-2012-sp1-installation.htm</feedburner:origLink></item>
		<item>
		<title>Install and Configure Remote BLOB Storage (RBS) in a SharePoint Farm</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/ogz1Qo09XRU/install-configure-remote-blob-storage-rbs-sharepoint-farm.htm</link>
		<comments>http://www.petri.co.il/install-configure-remote-blob-storage-rbs-sharepoint-farm.htm#comments</comments>
		<pubDate>Tue, 18 Jun 2013 19:00:47 +0000</pubDate>
		<dc:creator>Phoummala Schmitt</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[BLOB]]></category>
		<category><![CDATA[RBS]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=37418</guid>
		<description><![CDATA[Need to maximize your hardware investment with tiered storage? Discover how RBS for Sharepoint can help! Learn to install and configure RBS in Sharepoint. ]]></description>
			<content:encoded><![CDATA[<p><strong>Optimizing disk usage</strong> is on every administrator’s wish list. Tiered storage is becoming an everyday consideration for administrator’s as the ever rising need for storage continues to grow. SharePoint administrators can now utilize <strong>Remote BLOB Storage</strong> (<strong>RBS</strong>) capabilities in SharePoint and SQL to take advantage of tiered storage. SharePoint RBS capabilities allow for the storage of potentially larger BLOB SQL database content to less-expensive disks and utilizing the expensive disks for intensive SQL workloads. RBS is available with SharePoint 2010 and 2013, so either version can take advantage of RBS. This article will show you how to configure a SharePoint farm for RBS using the <strong>Native SQL FILESTREAM </strong>provider. You can use these instructions in either SharePoint 2010 or 2013.</p>
<div id="adkit_content-block" class="adkit content-block"  rel="nofollow"><a href="http://www.petri.co.il/uri/?id=3598&amp;host=www.trainsignal.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 10', '3598', 'Click']);" title="TrainSignal - Start FREE Trial Now!" rel="nofollow" style="font-size:12px;border:none"><strong style="display: block; clear: both;">Unlimited IT Training - $49 Per Month</strong></a><a href="http://www.petri.co.il/uri/?id=3598&amp;host=www.trainsignal.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 10', '3598', 'Click']);" title="TrainSignal - Start FREE Trial Now!" rel="nofollow"><img src="/media/3598.gif"  alt=" " style="float: left; padding: 5px;font-size: 1em;"/></a> <p>Get unlimited access to TrainSignal's entire IT library, certification practice exams & more! <br />
<br />
With TrainSignal, you’ll be able to take practice exams for some of the most popular IT certifications, including CompTIA A+, CompTIA Network+, Cisco CCNA, Microsoft MCSE and the VMware VCP exam.</p><a  href="http://www.petri.co.il/uri/?id=3598&amp;host=www.trainsignal.com" class="link-title" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 10', '3598', 'Click']);" title="Unlimited IT Training - $49 Per Month" style="clear: both;" rel="nofollow">TrainSignal - Start FREE Trial Now!</a></div>
<h2><strong>What Is BLOB?</strong></h2>
<p>BLOB stands for <strong>Binary Large Object</strong>. In SharePoint, BLOB is large block of unstructured data that is stored in the content databases. When BLOB is stored in the content databases, it is stored with all the metadata that it is associated with it, causing the database to grow in size. Typically BLOB data comprises word documents, video files, and power points, all of which can be large in size, so storing them outside of the content databases can mean performance improvements to the SQL database. Using RBS allows SharePoint to utilize less-expensive disks for BLOB and optimizes the faster disks for more intensive SQL transactions. When RBS is used with SharePoint, the metadata for the BLOB is stored in the SQL content database while the BLOB data is stored remotely on the RBS store.</p>
<p>In order to use RBS you need a <strong>provider</strong>. The provider is what communicates and connects the BLOB store to the database. SharePoint supports third-party providers and the local FILESTREAM provider that is part of SQL 2008 installation. <em>Local FILESTREAM</em> basically means storing the BLOB data outside of the content database but still on the same local server. <em>Remote Provider</em> means storing the BLOB data on a different volume or server. There is, however, some limitations with using SharePoint 2013 and Remote RBS Provider – certain backup and restore functions are not supported and can only be used with the local FILESTREAM Provider. Check out this link for more about <a href="http://technet.microsoft.com/en-us/library/ee748649.aspx">RBS and SharePoint</a>.</p>
<div id="adkit_freestyle" class="adkit freestyle"><a  href="/uri/?id=2687&amp;host=www.solarwinds.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '2687', 'Click']);" title="" rel="nofollow"><span><div style="min-height:46px; background:url(http://www.petri.co.il/media/download.jpg) no-repeat left center; padding-top:5px"><p style="font-weight:bold; margin-left:30px; margin-top:3px; padding:6px 0px 6px 10px; "> Download FREE Trial: SolarWinds Virtualization Manager - Learn More >></p></div></span></a></div>
<h2><strong>Configure the Database Server</strong></h2>
<p>Even though FILESTREAM is installed with SQL 2008 by default, you will need to enable and configure the settings on the SQL server that your SharePoint databases are residing on. You can follow these steps to enable FILESTREAM.</p>
<ul>
<li>Go to SQL Server Configuration Manager and right-click <strong>SQL Server Services</strong> to open it.</li>
<li>Right-click on the instance of the SQL server on which you’re enabling FILESTREAM and select <strong>Properties</strong>.</li>
</ul>
<p><a href="http://www.petri.co.il/wp-content/uploads/Fig1_SQLBLOB.jpg"><img class="alignnone size-full wp-image-37419" title="SQL BLOB" src="http://www.petri.co.il/wp-content/uploads/Fig1_SQLBLOB.jpg" alt="SQL BLOB" width="530" height="221" /></a></p>
<ul>
<li>Select the <strong>FILESTREAM</strong> tab and check the box to <strong>Enable FILESTREAM for Transact-SQL access</strong>.</li>
<li>Type the name of the Windows share.</li>
<li>If you want to allow remote clients to connect to the FILESTREAM, then select <strong>Allow remote clients to have streaming access to FILESTREAM data</strong>, then select <strong>Apply</strong>.</li>
</ul>
<p><a href="http://www.petri.co.il/wp-content/uploads/Fig2_SQLBLOB.jpg"><img class="alignnone size-full wp-image-37420" title="SQL BLOB" src="http://www.petri.co.il/wp-content/uploads/Fig2_SQLBLOB.jpg" alt="SQL BLOB" width="389" height="431" /></a></p>
<ul>
<li>Next, open the SQL Server Management Studio, then click on <strong>Query</strong>.</li>
<li>Type the following command in the Query editor (also shown in the image below). When completed, execute the command.</li>
</ul>
<pre><strong>EXEC sp_configure filestream_access_level, 2</strong></pre>
<p><strong>RECONFIGURE</strong></p>
<p><a href="http://www.petri.co.il/wp-content/uploads/Fig3_SQLBLOB.jpg"><img class="alignnone size-full wp-image-37421" title="SQL BLOB" src="http://www.petri.co.il/wp-content/uploads/Fig3_SQLBLOB.jpg" alt="SQL BLOB" width="530" height="176" /></a></p>
<ul>
<li>When the query completes, restart the SQL services.</li>
</ul>
<h2><strong>Provision a BLOB Store</strong></h2>
<p>Each content database that you want to use RBS with must have a BLOB store provisioned for use. Follow these steps to provision a BLOB Store.</p>
<ul>
<li>Using SQL Server Management Studio, connect to the SQL instance and locate the Content database.</li>
<li>Select the database you want to provision for, and click on <strong>New Query</strong>.</li>
<li>You will need to enter the following queries into the editor replacing <em>[WSS_Content]</em> with the database you want to enable RBS for, and c<em>:\BlobStore</em> with the location where you want the BLOB store. Run the queries in the following order:</li>
</ul>
<p style="padding-left: 60px;"><strong>1<sup>st</sup> query to run:</strong></p>
<p style="padding-left: 60px;">use [WSS_Content]</p>
<p style="padding-left: 60px;">if not exists</p>
<p style="padding-left: 60px;">(select * from sys.symmetric_keys</p>
<p style="padding-left: 60px;">where name = N'##MS_DatabaseMasterKey##')</p>
<p style="padding-left: 60px;">create master key encryption by password = N'Admin Key Password yourpassword'</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/Fig4_SQLBLOB.jpg"><img class="alignnone size-full wp-image-37422" title="SQL BLOB store" src="http://www.petri.co.il/wp-content/uploads/Fig4_SQLBLOB.jpg" alt="SQL BLOB store" width="571" height="219" /></a></p>
<p><strong>2<sup>nd</sup> query to run:</strong></p>
<p style="padding-left: 60px;">use [WSS_Content]</p>
<p style="padding-left: 60px;">if not exists</p>
<p style="padding-left: 60px;">(select groupname from sysfilegroups</p>
<p style="padding-left: 60px;">where groupname=N'RBSFilestreamProvider')</p>
<p style="padding-left: 60px;">alter database [WSS_Content]</p>
<p style="padding-left: 60px;">add filegroup RBSFilestreamProvider contains filestream</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/Fig5_SQLBLOB.jpg"><img class="alignnone size-full wp-image-37423" title="SQL BLOB store" src="http://www.petri.co.il/wp-content/uploads/Fig5_SQLBLOB.jpg" alt="SQL BLOB store" width="494" height="236" /></a></p>
<p>&nbsp;</p>
<p style="padding-left: 60px;"><strong>3<sup>rd</sup> query to run:</strong></p>
<p style="padding-left: 60px;">use [WSS_Content]</p>
<p style="padding-left: 60px;">alter database [WSS_Content]</p>
<p style="padding-left: 60px;">add file (name = RBSFilestreamFile, filename =</p>
<p style="padding-left: 60px;">'c:\Blobstore')</p>
<p style="padding-left: 60px;">to filegroup RBSFilestreamProvider</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/Fig6_SQLBLOB.jpg"><img class="alignnone size-full wp-image-37424" title="SQL BLOB store" src="http://www.petri.co.il/wp-content/uploads/Fig6_SQLBLOB.jpg" alt="SQL BLOB store" width="478" height="267" /></a></p>
<p>&nbsp;</p>
<h2><strong>Install the RBS Client Library on the Web Server</strong></h2>
<p>Even though each database is configured separately for the BLOB store, you will only need to install the RBS client once on the web server.</p>
<ul>
<li>Download the <a href="http://go.microsoft.com/fwlink/p/?LinkId=271938">RBS_amd64.msi file</a>.</li>
<li>Open CMD and type the command (shown below), then press <strong>Enter</strong> to run it. You will need to change <em>WSS_Content</em> to reflect your database name and <em>DBInstanceName</em> with your SQL Server instance.</li>
</ul>
<p>msiexec /qn /lvx* rbs_install_log.txt /i RBS_amd64.msi TRUSTSERVERCERTIFICATE=true FILEGROUP=PRIMARY DBNAME="WSS_Content" DBINSTANCE="DBInstanceName" FILESTREAMFILEGROUP=RBSFilestreamProvider FILESTREAMSTORENAME=FilestreamProvider_1</p>
<p>To verify the installed successfully type the following command:</p>
<p>Rbs_install_log.txt |find “successfully” /i</p>
<p>&nbsp;</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/Fig7_SQLBLOB.jpg"><img class="alignnone size-full wp-image-37425" title="Install the RBS client library on the Web Server" src="http://www.petri.co.il/wp-content/uploads/Fig7_SQLBLOB.jpg" alt="Install the RBS client library on the Web Server" width="600" height="134" /></a></p>
<center><div id="adkit_in-content-lower-block" class="adkit lower-block"><a  href="/uri/?id=2780&amp;host=" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 18', '2780', 'Click']);" title="" rel="nofollow"><span><!-- begin ad tag (tile=1) -->
<script type="text/javascript">
//<![CDATA[
ord = window.ord || Math.floor(Math.random()*1E16);
document.write('<script type="text/javascript" src="http://ad2.netshelter.net/adj/ns.petri/general;ppos=btf;kw=;tile=1;sz=300x600,300x250;ord=' + ord + '?"><\/script>');
//]]&gt;
</script>
<noscript><a href="http://ad2.netshelter.net/jump/ns.petri/general;ppos=btf;kw=;tile=1;sz=300x600,300x250;ord=123456789?" target="_blank" ><img src="http://ad2.netshelter.net/ad/ns.petri/general;ppos=btf;kw=;tile=1;sz=300x600,300x250;ord=123456789?" border="0" alt="" /></a></noscript>
<!-- end ad tag --></span></a></div></center>
<p><em>Note:</em> If you have multiple web servers, then you will need to repeat the steps and type the following command into each additional web server:</p>
<p>msiexec /qn /lvx* rbs_install_log.txt /i RBS_amd64.msi DBNAME="WSS_Content" DBINSTANCE="DBInstanceName" ADDLOCAL=Client,Docs,Maintainer,ServerScript,FilestreamClient,FilestreamServer</p>
<ul>
<li>Once you are finished with installation, confirm the RBS installation on the databases by checking the database to see if there are tables that start with <em>mssqlrbs%</em>.</li>
</ul>
<p><a href="http://www.petri.co.il/wp-content/uploads/Fig8_SQLBLOB.jpg"><img class="alignnone size-full wp-image-37426" title="Install the RBS client library on the Web Server" src="http://www.petri.co.il/wp-content/uploads/Fig8_SQLBLOB.jpg" alt="Install the RBS client library on the Web Server" width="444" height="540" /></a></p>
<h2><strong>Enable RBS on a Content Database Using PowerShell<br />
</strong></h2>
<p>After installing RBS, it now must be enabled on at least one web server in a SharePoint farm. The only way to enable RBS is through PowerShell, using the following cmdlets. You will need to change the <strong>ContentDatabaseName</strong> to reflect your database name.</p>
<pre>$cdb = Get-SPContentDatabase &lt;ContentDatabaseName&gt;

$rbss = $cdb.RemoteBlobStorageSettings

$rbss.Installed()

$rbss.Enable()

$rbss.SetActiveProviderName($rbss.GetProviderNames()[0])

$rbss</pre>
<p>&nbsp;</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/Fig9_SQLBLOB.jpg"><img class="alignnone size-full wp-image-37427" title="Enable RBS on a Content Database" src="http://www.petri.co.il/wp-content/uploads/Fig9_SQLBLOB.jpg" alt="Enable RBS on a Content Database" width="600" height="149" /></a></p>
<p>Enabling RBS on all your databases may not be an option – or even practical, as there could be performance considerations depending on the type of disk that is used. However, RBS for SharePoint is definitely worth investigating and it's a great option if you’re looking to maximize on hardware investment by utilizing tiered storage.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=ogz1Qo09XRU:4bFE4zODLWc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=ogz1Qo09XRU:4bFE4zODLWc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=ogz1Qo09XRU:4bFE4zODLWc:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/ogz1Qo09XRU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/install-configure-remote-blob-storage-rbs-sharepoint-farm.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/install-configure-remote-blob-storage-rbs-sharepoint-farm.htm</feedburner:origLink></item>
		<item>
		<title>Installing the Desktop Experience on Windows Server 2012</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/PRu_lQolKfY/install-desktop-experience-windows-server-2012.htm</link>
		<comments>http://www.petri.co.il/install-desktop-experience-windows-server-2012.htm#comments</comments>
		<pubDate>Tue, 18 Jun 2013 15:00:44 +0000</pubDate>
		<dc:creator>Russell Smith</dc:creator>
				<category><![CDATA[Windows Server 2012]]></category>
		<category><![CDATA[Ask an Admin]]></category>
		<category><![CDATA[Desktop Experience]]></category>
		<category><![CDATA[RDS]]></category>
		<category><![CDATA[Remote Desktop Services]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=36779</guid>
		<description><![CDATA[Miss having desktop features like the snipping tool and desktop themes on Windows Server 2012? Learn how to install Desktop Experience and add them.]]></description>
			<content:encoded><![CDATA[<h2><strong>How do I install the Desktop Experience on Windows Server 2012?</strong></h2>
<p>Although it might seem counterintuitive to install desktop features on a server, there may be certain scenarios where it is desirable. One case is where users have access to a remote server desktop via Remote Desktop Services. The <strong>Desktop Experience</strong> installs features on Windows Server 2012 that are present in Windows 8 but are not part of the standard install of Windows Server.</p>
<div id="adkit_content-block" class="adkit content-block"  rel="nofollow"><a href="http://www.petri.co.il/uri/?id=244&amp;host=www.manageengine.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 21', '244', 'Click']);" title="Monitor 10 Servers for Free! Download a 30-day Trial Here »" rel="nofollow" style="font-size:12px;border:none"><strong style="display: block; clear: both;">Your Windows Infrastructure Will Want This Nifty Tool!</strong></a><a href="http://www.petri.co.il/uri/?id=244&amp;host=www.manageengine.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 21', '244', 'Click']);" title="Monitor 10 Servers for Free! Download a 30-day Trial Here »" rel="nofollow"><img src="/media/244.gif"  alt=" " style="float: left; padding: 5px;font-size: 1em;"/></a> <p>Wouldn't you love it if you could automatically discover and restart an FTP service before even 30 seconds of it being down?<br />
<br />
OpManager through over 500 built-in monitors, event log rules, SNMP traps and remote troubleshooting tools, gives admins a tight grip over Windows server performance, including even MS Exchange, SQL and Active Directory.<br />
<br />
</p><a  href="http://www.petri.co.il/uri/?id=244&amp;host=www.manageengine.com" class="link-title" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 21', '244', 'Click']);" title="Your Windows Infrastructure Will Want This Nifty Tool!" style="clear: both;" rel="nofollow">Monitor 10 Servers for Free! Download a 30-day Trial Here »</a></div>
<h3>Desktop Experience Install Components</h3>
<p>The Desktop Experience feature installs the following components on Windows Server 2012:</p>
<ul>
<li>Windows Media Player</li>
<li>Desktop themes</li>
<li>Video for Windows (AVI support)</li>
<li>Disk Cleanup</li>
<li>Sync Center</li>
<li>Sound Recorder</li>
<li>Character Map</li>
<li>Snipping Tool</li>
</ul>
<p><a href="http://www.petri.co.il/?attachment_id=36780" rel="attachment wp-att-36780"><img class="alignnone size-full wp-image-36780" title="Desktop features on the Windows Server 2012 Start screen" src="http://www.petri.co.il/wp-content/uploads/Figure114.jpg" alt="Desktop features on the Windows Server 2012 Start screen" width="258" height="536" /></a></p>
<h3>How to Install Desktop Experience</h3>
<p>Desktop Experience is an all-or-nothing feature, so you can’t choose which components to install. Before adding the Desktop Experience feature on Windows Server, I recommend that you test in a preproduction lab environment to ensure that Desktop Experience doesn’t conflict with any important server functions.</p>
<ul>
<li>Log on to Windows Server 2012 with an account that has local administrator permissions.</li>
<li>Open <strong>Server Manager</strong> from the Start screen or the icon on the desktop taskbar.</li>
<li>In Server Manager Dashboard, click <strong>Add roles and features</strong> under Welcome to Server Manager.</li>
<li>In the Add Roles and Features Wizard, click <strong>Server Selection</strong> in the left pane.</li>
<li>Now click <strong>Features</strong> in the left pane.</li>
<li>Scroll down the list of features and expand <strong>User Interfaces and Infrastructure</strong>.</li>
<li>Check <strong>Desktop Experience</strong>.</li>
</ul>
<p>In Windows Server 2012, Desktop Experience is no longer listed as a separate feature; instead, it's under <strong>User Interfaces and Infrastructure.</strong></p>
<ul>
<li>In the pop-up dialog, click <strong>Add Features</strong> to add <em>Ink and Handwriting Services</em> and <em>Media Foundation</em>.</li>
<li>In the Add Roles and Features Wizard, click <strong>Next</strong>.</li>
<li>Click <strong>Install</strong> on the confirmation page.</li>
<li>When Desktop Experience has finished installing, click <strong>Close</strong> in the Add Roles and Features Wizard and restart the server.</li>
</ul>
<p>Once the server has rebooted, you will have access to the desktop features from the Start screen.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=PRu_lQolKfY:HYTCfIOsMgw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=PRu_lQolKfY:HYTCfIOsMgw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=PRu_lQolKfY:HYTCfIOsMgw:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/PRu_lQolKfY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/install-desktop-experience-windows-server-2012.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/install-desktop-experience-windows-server-2012.htm</feedburner:origLink></item>
		<item>
		<title>Windows Server 2012: SMB 3.0 and the Scale-Out File Server</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/lwXe5qTJ2eg/windows-server-2012-smb-3-scale-out-file-server.htm</link>
		<comments>http://www.petri.co.il/windows-server-2012-smb-3-scale-out-file-server.htm#comments</comments>
		<pubDate>Mon, 17 Jun 2013 19:00:00 +0000</pubDate>
		<dc:creator>Aidan Finn</dc:creator>
				<category><![CDATA[Backup & Storage]]></category>
		<category><![CDATA[Scale-Out File Server]]></category>
		<category><![CDATA[SMB 3.0]]></category>
		<category><![CDATA[SOFS]]></category>
		<category><![CDATA[Windows Server 2012]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=37295</guid>
		<description><![CDATA[Wondering what's up with SOFS? Learn the basics of Windows Server 2012 SMB 3.0 Scale-Out File Server in this article.]]></description>
			<content:encoded><![CDATA[<p>In this article, we will explain the building blocks of the Windows Server 2012 or <strong>Windows Server 2012 SMB 3.0 R2 Scale-Out File Server</strong>. You should read our previous article, "<a href="http://www.petri.co.il/windows-server-2012-smb-3-file-shares.htm">Windows Server 2012 SMB 3.0 File Shares: An Overview</a>," to understand the role of SMB 3.0 for storing application data, such as SQL Server database files and Hyper-V virtual machines.</p>
<div id="adkit_content-block" class="adkit content-block"  rel="nofollow"><a href="http://www.petri.co.il/uri/?id=3274&amp;host=go.dameware.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3274', 'Click']);" title="Download a FREE trial of DameWare Remote Support here >" rel="nofollow" style="font-size:12px;border:none"><strong style="display: block; clear: both;">Support Thousands of End-Users From Your Desk!</strong></a><a href="http://www.petri.co.il/uri/?id=3274&amp;host=go.dameware.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3274', 'Click']);" title="Download a FREE trial of DameWare Remote Support here >" rel="nofollow"><img src="/media/3274.gif"  alt=" " style="float: left; padding: 5px;font-size: 1em;"/></a> <p>DameWare Remote Support allows you to manage servers, notebooks, and laptops remotely to quickly and easily support end-users! <br />
<br />
Save time by remotely completing Windows administration tasks such as starting and stopping Windows Services, clearing and viewing Windows Event Logs, automatically install agents as you need them, and much, much more. Take full control of the end-user’s desktop in a single click!</p><a  href="http://www.petri.co.il/uri/?id=3274&amp;host=go.dameware.com" class="link-title" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3274', 'Click']);" title="Support Thousands of End-Users From Your Desk!" style="clear: both;" rel="nofollow">Download a FREE trial of DameWare Remote Support here ></a></div>
<h2>What Is a Scale-Out File Server (SOFS)?</h2>
<p>It is clear that while Microsoft is committed to their ongoing development and support for traditional block storage, they see SMB 3.0 as a way to reduce the expense and increase the performance of one of the biggest cost centers in the data center. Once legacy concerns about SMB 3.0 performance have been put to rest, the question of high availability will come up: You don’t want to rely on a single point of failure like a file server when your entire business is relying on it. The traditional active/passive file server will not suffice; the failover process is too slow.</p>
<p>In Windows Server 2012, Microsoft gave us a new storage architecture called the <strong>Scale-Out File Server</strong> (<strong>SOFS</strong>), which is (deep breath required) a scalable and continuously available storage platform with transparent failover. Users of block storage will wonder what this new alien concept is. Actually, it’s not that different to a SAN.</p>
<p>In the case of a SAN, there are four major components or layers:</p>
<ul>
<li>Disk trays</li>
<li>Switches</li>
<li>Controllers</li>
<li>Application servers</li>
</ul>
<p><a href="http://www.petri.co.il/wp-content/uploads/SAN.png"><img class="alignnone  wp-image-37377" title="SAN" src="http://www.petri.co.il/wp-content/uploads/SAN.png" alt="SAN" width="500" /></a></p>
<h3>SAN: Disk Trays</h3>
<p>The disks of the SAN are inserted into one or more disk trays. Disks are aggregated into pools or groups. Logical units (LUNs) or virtual disks are created from theses disk pools, and RAID is optionally configured to provide disk fault tolerance for each LUN. The SAN manufacturer usually requires you to use disks for which they have created a special firmware. While this can provide higher quality, the price of these prone-to-failure devices is increased substantially over their original cost. SANs can offer tiered storage, where slices of data (subsets of files) are automatically promoted from cheaper/slower storage to expensive/faster storage, and vice versa, depending on demand. This gives a great balance between performance and capacity. The disk tray can be seen as a single point of failure – this is why some SAN solutions also offer a form of RAID for disk trays.</p>
<div id="adkit_freestyle" class="adkit freestyle"><a  href="/uri/?id=3572&amp;host=www.trainsignal.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 10', '3572', 'Click']);" title="" rel="nofollow"><span><div id="nolist" style="min-height:46px; background:url(http://www.petri.co.il/media/training.jpg) no-repeat left center"><p style="margin-left:95px; padding:10px 0px 10px 10px; background:#fff">TrainSignal's Unlimited IT Training For Only $49 Per Month - Start FREE Trial</p></div>
</span></a></div>
<h3>SAN: Switches</h3>
<p>The entire SAN is connected together by two or more fiber channel switches. Ideally, the switches are redundant (for network path fault tolerance) and dedicated (for performance) switches. The switches connect the entire SAN solution together, forming the storage area network.</p>
<h3>SAN: Controller</h3>
<p>The controller is an appliance that is actually a very specialized form of server. It is responsible for storage orchestration, mapping logical units to servers, enabling management, and it provides caching. The controller is also a very expensive part of the SAN. Basic SAN models can only have two controllers, and higher end storage systems can expand to more than two controllers.</p>
<h3>SAN: Application Servers</h3>
<p>The application servers will have at least one connection to each switch, and typically these are dedicated connections, such as a network card for iSCSI or a host bus adapter for SAS or Fiber Channel. Multipath IO (MPIO) is installed and configured on the application servers. This software is normally provided by the SAN manufacturer. The role of MPIO is to aggregate the servers’ connections to the switches and to provide transparent redundancy. The application servers access data that is stored in LUNs on the disk tray via the SAN controllers.</p>
<h3>Summarizing the SAN</h3>
<p>The SAN has become the de facto standard for bulk storage in the medium-to-large enterprise. Solutions provide impressive scalability, relatively centralized (per SAN footprint) LUN management, great redundancy, and easier backup. But is this the right solution? The cost per gigabyte of SAN storage is extremely high. The amount of data that we are generating and being forced to retain is escalating. And we do have to ask two very serious questions:</p>
<ul>
<li>Do we need to use a SAN?</li>
<li>If some SAN functionality is required (such as LUN-LUN replication), then do we need to store all/most/just some of our data on this expensive storage?</li>
</ul>
<h2>The Scale-Out File Server</h2>
<p>Before Windows Server 2012, deploying systems with resilient and scalable storage meant deploying a SAN. Microsoft realized that this was becoming an issue for small and large businesses, as well as hosting companies due to the price/GB and the vendor lock-in that this solution requires. Microsoft included multiple features in WS2012 that, when used together, give us software-defined storage that is more economic, more scalable, more flexible, and easier to deploy than a traditional SAN.</p>
<p>One example of this is the <strong>Scale-Out File Server</strong> (<strong>SOFS</strong>). This new architecture is different to a SAN, but it won’t be alien to storage engineers. That is because most of the roles are still there in a different form:</p>
<ul>
<li>JBOD trays</li>
<li>Clustered servers + Scale-Out File Server clustered role</li>
<li>Switches</li>
<li>Application servers</li>
</ul>
<p><a href="http://www.petri.co.il/wp-content/uploads/SOFS.png"><img class="alignnone  wp-image-37378" title="SOFS" src="http://www.petri.co.il/wp-content/uploads/SOFS.png" alt="SOFS" width="500" /></a></p>
<h3>JBOD Trays</h3>
<p>The most commonly explained implementation of a SOFS uses SAS-attached JBOD trays as the shared storage. These are very economic and scalable units of storage that typically have a hardware compatibility list that supports SAS controllers and disks from many manufacturers.</p>
<p>Instead of using hardware RAID, Windows Server Storage Spaces are used. A storage pool is created to aggregate disks. Virtual disks with different kinds of fault tolerance can be created from the storage pool. Virtual disks can be made fault tolerance across multiple JBOD trays. And WS2012 R2 offers tiered storage across SSDs and HDDs, and it builds on the IOPS SSD to provide persistent write-through caching that applications such as Hyper-V can use. This means that a JBOD with Storage Spaces can be cheaper than using SAN disk trays, offering most of the functionality that we want for enterprise level performance.</p>
<h3>SOFS Switches</h3>
<p>The application servers will communicate with the storage of the SOFS via two redundant switches. The SOFS is based on WS2012 and this means a wide variety of networking is supported.</p>
<ul>
<li>1 GbE</li>
<li>10 GbE</li>
<li>iWarp: 10 Gbps Remote Direct Memory Access (RDMA – low CPU impact &amp; high speed offloaded networking)</li>
<li>ROCE: 10/40 Gbps RDMA</li>
<li>Infiband: 56 Gbps RDMA</li>
</ul>
<p>The switches can be dedicated, but it is more likely that they will be used for several roles, including the private networks of a cluster. This especially applies to Windows Server 2012 R2 Hyper-V where Live Migration can make use of RDMA networking. That means an investment in 10 GbE or faster networking can offer more than fast storage; WS2012 R2 can use RDMA networking for CSV redirected IO and SMB Live Migration.</p>
<p>Any brand of switch can be used in a SOFS implementation. This avoids the vendor lock-in that one associates with a SAN, provides the customer with choice, and makes the price more competitive.</p>
<h3>SOFS: Application Servers</h3>
<p>The application servers will use SMB 3.0 to access the SOFS through the switches. SMB 3.0 provides:</p>
<ul>
<li>SMB Multichannel: A feature that requires no configuration to work, and allows an SMB client to communicate to an SMB server via more than one NIC. This MPIO replacement requires no input from a hardware vendor and provided scalable and automatically fault tolerant networking straight out of the box.</li>
<li>SMB Direct: Using RDMA enabled NICs, the SMB client can stream data to/from an SMB server with high speed and with much lower utilization of the processor.</li>
</ul>
<p>SMB 3.0 is supported by WS2012 (and alter) Hyper-V, IIS, and SQL Server. The simplicity of SMB 3.0 and the speed of the protocol, combined with the bandwidth of supported NICs and the potential of RDMA, makes SMB 3.0 a much better alternative to iSCSI or Fiber Channel storage protocols.</p>
<center><div id="adkit_in-content-lower-block" class="adkit lower-block"><a  href="/uri/?id=3560&amp;host=www.trainsignal.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 10', '3560', 'Click']);" title="" rel="nofollow"><img src="/media/3560.gif"  alt=" " /> </a></div></center>
<h2>SOFS: Clustered File Servers</h2>
<p>Application servers will be communicating with between two and eight file servers that are clustered together. The file servers play the role of a SAN controller – a very economic SAN controller, to be precise.</p>
<p>Each of these file servers are connected to the same shared JBOD trays at the back end. Virtual disks are created in the JBOD trays. These appear as available storage in the file server cluster and are converted into active/active Cluster Shared Volumes (CSVs).</p>
<p>A special cluster role is known as the file server for application data is deployed on the cluster. This active/active role creates a computer account in Active Directory; this is the “computer” that will share storage with the application servers. Active/active shares are created on the cluster. The shares’ permissions are configured to allow full control to application servers and administrators. And now you have active/active storage, which also handles transparent failover if one of the clustered file servers fails. All that remains is to use the UNC path of the shares (via the single SOFS computer account) on the application servers to deploy files on the SOFS.</p>
<h3>Summarizing the SOFS</h3>
<p>It doesn’t take long to figure out that:</p>
<ul>
<li>SANs have expensive disk trays and vendor locked-in disks, but a SOFS can use relatively inexpensive JBODs and disks that offer the fault tolerance and performance features of their wealthier cousin.</li>
<li>A SAN has switches, and so does a SOFS, but we can use the SOFS switches for more than just storage.</li>
<li>SAN controllers are expensive devices, but you can use any server as a cluster node in a SOFS. And by the way, the RAM will be used as a cache!</li>
<li>Application servers will use legacy block storage protocols to connect to a SAN, but SOFS clients use the faster SMB 3.0 that provides the aggregation and fault tolerance of MPIO but without the complexity.</li>
<li>If engineered correctly, SAN or a SOFS implementations don’t have single points of failure.</li>
</ul>
<p>Perhaps you're wondering: If I can deploy a SOFS with more performance than a SAN, and much more economic than a SAN, that is software defined (file shares), then why do you continue to pay for overpriced legacy storage platforms? With the SOFS, Microsoft has given you a choice that you have never had before.</p>
<p><strong><span style="text-decoration: underline;">SOFS FAQs</span></strong></p>
<p><strong>Can I use servers with DAS and replicate/stripe that data to create a SOFS?</strong></p>
<p>No; the SOFS is a cluster and must have shared storage. In the most commonly presented example, the SOFS uses shared JBOD with Storage Spaces.</p>
<p><strong>Must I use a JBOD?</strong></p>
<p>No. The SOFS can use any shared storage that WS2012 or WS2012 R2 Failover Clustering supports. This includes JBOD, PCI RAID, SAS, iSCSI, and Fiber Channel Storage. Microsoft argues that using SMB 3.0 in-front of any storage offers better performance and easier operations. It also reduces the number of ports required in a SAN (only the SOFS nodes need connect to the SAN switches). Usingsha legacy SANs as the shared storage of a SOFS offers features such as Offloaded Data Transfer (ODX), TRIM, and UNMAP.</p>
<p><strong>Can I deploy Storage Spaces on my SAN?</strong></p>
<p>No. Storage Spaces is intended to be used with JBOD disk trays that have no hardware RAID.</p>
<p><strong>Does SOFS have the ability to replicate virtual disks?</strong></p>
<p>No. You would instead use Hyper-V Replica in the case of virtual machines, or one of SQL Server’s replication methods. These are hardware agnostic and very flexible.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=lwXe5qTJ2eg:RMHGWKL_q9M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=lwXe5qTJ2eg:RMHGWKL_q9M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=lwXe5qTJ2eg:RMHGWKL_q9M:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/lwXe5qTJ2eg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/windows-server-2012-smb-3-scale-out-file-server.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/windows-server-2012-smb-3-scale-out-file-server.htm</feedburner:origLink></item>
		<item>
		<title>Microsoft Exchange 2013 Highlights from TechEd 2013</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/_WyXWKVpPLY/microsoft-exchange-2013-highlights-teched-2013.htm</link>
		<comments>http://www.petri.co.il/microsoft-exchange-2013-highlights-teched-2013.htm#comments</comments>
		<pubDate>Mon, 17 Jun 2013 15:00:47 +0000</pubDate>
		<dc:creator>Phoummala Schmitt</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[TechEd]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=37284</guid>
		<description><![CDATA[Missed TechEd 2013? We got your back! Check out the latest Microsoft Exchange 2013 news from the conference.]]></description>
			<content:encoded><![CDATA[<p>Last week was <strong>TechEd 2013</strong>, Microsoft’s premier IT event. IT professionals from around the world come together to learn, network, and discover what new technologies Microsoft is launching. If you’re an Exchange admin like myself, the expectations for new announcements on Exchange would be low considering that the official <strong>Microsoft Exchange Conference</strong> (<strong>MEC</strong>) is scheduled for March 2014. Nevertheless, there was some interesting news and product information about Exchange 2013 that was revealed at TechEd.</p>
<div id="adkit_content-block" class="adkit content-block"  rel="nofollow"><a href="http://www.petri.co.il/uri/?id=2612&amp;host=www.enowsoftware.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 29', '2612', 'Click']);" title="Test Drive Mailscape Today!!" rel="nofollow" style="font-size:12px;border:none"><strong style="display: block; clear: both;">Test Drive: Exchange & Mobile Device Management Tool</strong></a><a href="http://www.petri.co.il/uri/?id=2612&amp;host=www.enowsoftware.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 29', '2612', 'Click']);" title="Test Drive Mailscape Today!!" rel="nofollow"><img src="/media/2612.gif"  alt=" " style="float: left; padding: 5px;font-size: 1em;"/></a> <p>Mailscape is an award-winning Exchange and mobile device management tool that provides monitoring, reporting and administrative capabilities in a single, affordable solution.<br><br> Installed in minutes, easy to deploy, and intuitive enough for the help desk to use, Mailscape lets you manage your entire environment in a sleek, one look dashboard.</p><a  href="http://www.petri.co.il/uri/?id=2612&amp;host=www.enowsoftware.com" class="link-title" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 29', '2612', 'Click']);" title="Test Drive: Exchange & Mobile Device Management Tool" style="clear: both;" rel="nofollow">Test Drive Mailscape Today!!</a></div>
<h2>TechEd Exchange Highlights</h2>
<p>If you missed TechEd 2013, or simply didn’t have time for Exchange sessions, here are some of the Exchange-focused highlights:</p>
<ul>
<ul>
<li>Exchange 2013 CU2 will now support 100 databases per server instead of the 50 databases.</li>
<li>There were also hints that with CU2 there could be support to run the witness server in Azure, solidifying the push towards the cloud.</li>
<li>The Remote connectivity Analyzer got an additional component: the <strong>Message Analyzer Beta</strong>. This new component allows the copy and paste of message headers in the tool which then breaks down the header of a message for you to analyze.</li>
<li>Lagged copies in Exchange 2013 will now automatically replay log files that are under low disk space conditions (10%), these settings can be modified in the registry.</li>
</ul>
</ul>
<div id="adkit_freestyle" class="adkit freestyle"><a  href="/uri/?id=3435&amp;host=oriondemo.solarwinds.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3435', 'Click']);" title="Network management and monitoring software that’s powerful & easy to use >> Test drive Demo" rel="nofollow"><span><div style="min-height:46px; background:url(http://www.petri.co.il/media/download.jpg) no-repeat left center; padding-top:5px"><p style="font-weight:bold; margin-left:30px; margin-top:3px; padding:6px 0px 6px 10px; ">FREE Trial Download>> Log Analysis, Real-Time Event Correlation & More</p></div></span></a></div>
<ul>
<ul>
<li>Exchange 2013 continues to supports VHD of the server on SMB3 file shares; there is still no support for NFS at this point.</li>
<li>For those virtualizing Exchange, Microsoft continues to stress that Dynamic memory is not recommended for Exchange servers. When the available memory on an Exchange server is decreased, expect to see High RPC latency numbers.</li>
<li><strong>Exchange 2013 Server Role Requirements Calculator</strong> (formerly the Mailbox role calculator) has been renamed and now includes sizing for all the roles of an Exchange 2013 server. The calculator has made improvements on High Availability Architecture as well as Transport service and CAS roles. It’s a one-stop-shop calculator.</li>
<li>There has been no change on the max database size in a DAG, the max size is still 2TB.</li>
<li>Windows 8.1 RT will be available for Surface RT and will now include Outlook 2013 RT, making Surface RT more appealing to use for business.</li>
</ul>
</ul>
<center><div id="adkit_in-content-lower-block" class="adkit lower-block"><a  href="/uri/?id=3227&amp;host=www.microsoft.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '3227', 'Click']);" title="" rel="nofollow"><img src="/media/3227.gif"  alt=" " /> </a></div></center>
<ul>
<li><strong>Outlook Connectivity to Office 365 Troubleshooter</strong> – This tool will help diagnose outlook connectivity issues that you may experience with Outlook on-premise or in Office 365. It'll help guide you on troubleshooting your connectivity issues. You can <a href="http://aka.ms/outlookconnectivity">download Outlook Connectivity to Office 365 Troubleshooter</a>.</li>
<li>The <strong>Hybrid Environment Free Busy Troubleshooter</strong> – This tool will help troubleshoot issues you may have with Free Busy when transitioning to the cloud. You can <a href="http://aka.ms/hybridfreebusy">download the Hybrid Environment Free Busy Troubleshooter</a>.</li>
</ul>
<p style="text-align: center;"><a href="http://www.petri.co.il/wp-content/uploads/fig2_teched.jpg"><img class="wp-image-37286 aligncenter" title="TechEd 2013 Star Wars" src="http://www.petri.co.il/wp-content/uploads/fig2_teched.jpg" alt="TechEd 2013 Star Wars" width="240" height="316" /></a></p>
<p style="text-align: center;"><em>The writer poses with friends at TechEd 2013.</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=_WyXWKVpPLY:dhl02Gvk3Fw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=_WyXWKVpPLY:dhl02Gvk3Fw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=_WyXWKVpPLY:dhl02Gvk3Fw:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/_WyXWKVpPLY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/microsoft-exchange-2013-highlights-teched-2013.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/microsoft-exchange-2013-highlights-teched-2013.htm</feedburner:origLink></item>
		<item>
		<title>The Friday Funny: Microsoft’s IT Slang and Buzzwords</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/qAjZLuA72ps/friday-funny-microsoft-it-buzzwords-slang.htm</link>
		<comments>http://www.petri.co.il/friday-funny-microsoft-it-buzzwords-slang.htm#comments</comments>
		<pubDate>Fri, 14 Jun 2013 15:57:47 +0000</pubDate>
		<dc:creator>Jeff James</dc:creator>
				<category><![CDATA[The Friday Funny]]></category>
		<category><![CDATA[buzzwords]]></category>
		<category><![CDATA[jargon]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[slang]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=37292</guid>
		<description><![CDATA[IT slang? Let's double-click on that. Pick up some of Microsoft buzzwords in today's Friday Funny!]]></description>
			<content:encoded><![CDATA[<p>Perhaps more than any other business segment, the IT industry is afflicted with legions of often confusing and ambiguous acronyms and buzzwords. Part of this stems from the nature of IT itself, where complex technical concepts need to be communicated in a way that people outside of the organization actually developing the technology can understand it.</p>
<p style="text-align: center;"><a href="http://www.petri.co.il/wp-content/uploads/techslang.jpg"><img class="size-full wp-image-37364 aligncenter" title="tech IT slang" src="http://www.petri.co.il/wp-content/uploads/techslang.jpg" alt="tech IT slang" width="400" height="300" /></a></p>
<p style="text-align: center;"><em>(Image via <a href="http://recremisi.blogspot.com/2010/08/dont-be-404-know-tech-slang.html">WordLo</a>)</em></p>
<p>Microsoft is one of the worst offenders in this respect, and after spending several weeks covering Microsoft more closely that usual -- thanks to a trip or two to the Microsoft campus and a long week at TechEd 2013 -- I thought it might be useful (and humorous) to present a list of some of the most common phrases and buzzwords I've come across. Some of these are actual technical terms and terminology, while others are less technical.</p>
<p>Some of these buzzwords were used by Microsoft employees to describe product features, while others (submitted anonymously by Microsoft employees) deal more with internal Microsoft organizational structures and office politics.</p>
<div id="adkit_freestyle" class="adkit freestyle"><a  href="/uri/?id=3658&amp;host=blogs.technet.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '3658', 'Click']);" title="" rel="nofollow"><span><div style="min-height:46px;"><p style=" padding:10px 10px 10px 10px; background-color:#ffffed; font-weight:bold">Super-fast Failovers with VM Machine Guest Clustering in Windows Server 2012 Hyper-V</p></div></span></a></div>
<ul>
<li><strong>A-dash:</strong> A temporary Microsoft contractor who works for an agency, who may have a temporary Microsoft email address preceded by an "A-" prefix. Also called an "Orange Badge" for the color of their badges issued by Microsoft when on the company campus.</li>
<li><strong>B-dash:</strong> A Microsoft business guest, who may have a temporary Microsoft email address preceded by an "B-" prefix. Also called an "Purple Badge" for the color of their physical badges issued by Microsoft when on the company campus.</li>
<li><strong>BG:</strong> (pronounced “bee gee”) Refers to a business group within Microsoft.</li>
<li><strong>Blue badge: </strong>Internal Microsoft office slang for full-time salaried employees who have blue badges issued by Microsoft security.</li>
<li><strong>Configuration drift: </strong>The propensity of configuration information to slight change -- or "drift" -- as data is being migrated, copied, backed-up, etc. Not to be confused with traditional drifting, which involves obscenely overpowered rear-wheel drive cars turning expensive tire rubber into foul-smelling smoke while sliding sideways around a racetrack.</li>
<li><strong>Dedup cache chunk store: </strong>Refers to a storage concept where data needed for data deduplication is stored in chunks in cache memory. Or something like that. (I included this primarily because it sounds cool when you say it out loud.)</li>
<li><strong>DL:</strong> (Pronounced "dee el") Shorthand for an email distribution list.</li>
<li><strong>Double-click on that: </strong>Heard being used by Microsoft employees and staff at other IT vendors as well. Used to signify a need for more detail on a topic being discussed. Example: "Let's double-click on that white-paper later today, shall we?"</li>
<li><strong>Flowlets: </strong>Refers to a specific aspect of TCP data networking traffic. Not exactly a buzzword, but it sounds like you're referring to the offspring of someone named "Flo" when used in a conversation with anyone but a dedicated TCP network engineer. (See entry for <em>Special needs long-lived flows</em>.)</li>
<li><strong>Live reparenting: </strong>A phrase that deals with reassigning a VM to a local master when migrating or merging them. Despite what it sounds like, it doesn't involve on-the-fly reversal of parenting decisions, particularly when dealing with hungry, grumpy, and sometimes truculent toddlers and teenagers.</li>
<li><strong>Looping a candidate:</strong>  Putting a job applicant through a round of interviews during a job interview process.</li>
<li><strong>PG:</strong> (Pronounced "pee gee") Microsoft shorthand for product group.</li>
<li><strong>Pri0 or P0:</strong> (Pronounced "pry-oh" or "pee zero" ) Refers to a very important topic that has a priority above priority one, hence the phrase "priority zero."</li>
<li><strong>Special needs long-lived flows: </strong>Refers to a specific aspect of TCP data networking traffic. Not exactly a buzzword, but sounds like you're speaking Greek (or <a href="http://blogs.msdn.com/b/translation/archive/2013/05/14/announcing-klingon-for-bing-translator.aspx" target="_blank">Klingon</a>) to anyone but a dedicated TCP network engineer.</li>
<li><strong>Super:</strong> Commonly used to describe how excited someone is about something, but my anonymous sources within Microsoft tell me this superlative is now being used excessively within the halls of Redmond these days. "I'm super excited to join this team."</li>
<li><strong>V-dash:</strong> A vendor who works with Microsoft who may also have a temporary Microsoft email address preceded by the "V-" prefix. Also called an "Green Badge" for the color of their physical badges issued by Microsoft when on the company campus.</li>
<li><strong>V-team or virtual team: </strong>Used in reference to assigning a group of Microsoft employees to a task that aren't part of the current group.</li>
<li><strong>WSSC:</strong> (Pronounced “wisk”) = Shorthand for Windows Server/System Center (WSSC).</li>
</ul>
<p>Do you know of any that I didn't include on this list? Add a comment to this blog post and I'll add them.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=qAjZLuA72ps:oHLv-KvjjmE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=qAjZLuA72ps:oHLv-KvjjmE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=qAjZLuA72ps:oHLv-KvjjmE:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/qAjZLuA72ps" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/friday-funny-microsoft-it-buzzwords-slang.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/friday-funny-microsoft-it-buzzwords-slang.htm</feedburner:origLink></item>
		<item>
		<title>Xbox One and the Cloud OS: A Tale of Two Clouds</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/5LXF9H_wYWY/xbox-one-cloud-os.htm</link>
		<comments>http://www.petri.co.il/xbox-one-cloud-os.htm#comments</comments>
		<pubDate>Thu, 13 Jun 2013 19:00:12 +0000</pubDate>
		<dc:creator>Jeff James</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[PlayStation 4]]></category>
		<category><![CDATA[PS4]]></category>
		<category><![CDATA[XB1]]></category>
		<category><![CDATA[Xbox One]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=37330</guid>
		<description><![CDATA[What do Microsoft's new Xbox One game console and Cloud OS strategy have in common? Read on to find out!]]></description>
			<content:encoded><![CDATA[<p>Microsoft has had lots of news to share at back-to-back tech-related conferences this month, starting with <strong>Microsoft TechEd 2013</strong> in New Orleans the first week of June, and the <strong>Electronic Entertainment Expo (E3)</strong> this week in Los Angeles. The former deals with Microsoft's enterprise IT efforts, while the latter is entirely focused on the video game industry. While you may be wondering why I'm mentioning both in the same article, there are some common threads that bind them together: the use of cloud computing services; the near ubiquity of high-speed, always-on Internet connections; and the impact of losing the ability to utilize software or services in the cloud when that Internet connection is broken or otherwise unavailable.</p>
<div id="adkit_content-block" class="adkit content-block"  rel="nofollow"><a href="http://www.petri.co.il/uri/?id=3240&amp;host=www.microsoft.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '3240', 'Click']);" title="Download FREE 180-Day Full Featured Trial" rel="nofollow" style="font-size:12px;border:none"><strong style="display: block; clear: both;">Download Windows Server 2012</strong></a><a href="http://www.petri.co.il/uri/?id=3240&amp;host=www.microsoft.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '3240', 'Click']);" title="Download FREE 180-Day Full Featured Trial" rel="nofollow"><img src="/media/3240.gif"  alt=" " style="float: left; padding: 5px;font-size: 1em;"/></a> <p><b>Windows Server 2012 is now available!</b><br><br />
It offers businesses and service providers a scalable, dynamic, and multitenant-aware cloud-optimized infrastructure. <br><br>Windows Server 2012 helps organizations connect securely across premises and helps IT Professionals to respond to business needs faster and more efficiently. </p><a  href="http://www.petri.co.il/uri/?id=3240&amp;host=www.microsoft.com" class="link-title" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '3240', 'Click']);" title="Download Windows Server 2012" style="clear: both;" rel="nofollow">Download FREE 180-Day Full Featured Trial</a></div>
<h2><strong>Cloud OS Vision: A Cloud for Every Taste</strong></h2>
<p>Microsoft's big push at TechEd this year was the <strong><a href="http://www.petri.co.il/microsoft-teched-2013-recap.htm" target="_blank">Cloud OS</a></strong>. In the Cloud OS model, key Microsoft products and platforms like Windows Server, System Center, Windows Intune, and Windows Azure services are designed and developed to allow IT administrators to embrace cloud computing on their own terms. They can manage their private clouds on-premise, or they can rely on trusted external hosting providers for cloud services.</p>
<p>Finally, Microsoft offers <strong>Windows Azure Infrastructure as a Service</strong> (<strong>IaaS</strong>) for IT shops who want public cloud services. The Microsoft business unit behind the Cloud OS strategy -- the Server and Tools division -- has listened to customer feedback about cloud computing services over the years, especially those that had legitimate concerns about putting IT resources in the cloud from an auditing, compliance, data portability, or security perspective. So the Cloud OS strategy accommodates them by letting them keep their data and IT services onsite and protected from the risk of an ISP failure or Internet outage that could prevent them from accessing business critical data, information, and IT services.</p>
<p><a href="http://www.petri.co.il/wp-content/uploads/xbox-one.png"><img class="alignnone size-full wp-image-37348" title="Microsoft's New Xbox One console" src="http://www.petri.co.il/wp-content/uploads/xbox-one.png" alt="Microsoft's New Xbox One console" width="580" height="411" /></a></p>
<p><em>Microsoft's new Xbox One console. (Photo: Microsoft)</em></p>
<h2><strong>Xbox Interrupted: Microsoft Fumbles Xbox One Launch</strong></h2>
<p>So how is the Cloud OS tied to Microsoft's launch of the new Xbox One game console? If you don't follow the video game industry, here's the key highlight in a nutshell: Microsoft announced that the Xbox One would require an "online check-in" once every 24 hours to enable offline gaming. Here's the official explanation from Microsoft's <a href="http://news.xbox.com/2013/06/connected" target="_blank">Xbox Wire website</a>:</p>
<p style="padding-left: 30px;"><em>"With Xbox One you can game offline for up to 24 hours on your primary console, or one hour if you are logged on to a separate console accessing your library. Offline gaming is not possible after these prescribed times until you re-establish a connection, but you can still watch live TV and enjoy Blu-ray and DVD movies."</em></p>
<p>So what happens if your Internet connection goes south, or if you're trying to play a single-player game offline? After 24 hours of no Internet access, the Xbox One becomes the video gaming equivalent of a $500 boat anchor – albeit one that serves as a glorified movie player, limited to playing DVDs and Blu-ray discs.</p>
<p>Combined with news that Sony would price their rival PS4 console $100 cheaper than the Xbox One ($399 versus $499) and had fewer restrictions on playing used games, Microsoft's Xbox marketing seemed to spend most of this week on the ropes of public opinion, with Luke Plunkett at <em>Kotaku</em> possibly capturing the mood of E3 watchers best in his article "<a href="http://kotaku.com/sony-just-smacked-the-xbox-one-in-the-mouth-512492046" target="_blank">Sony Just Smacked the Xbox One in the Mouth</a>."</p>
<h2><strong>Why Xbox One Should Embrace the Cloud OS Model</strong></h2>
<p>So, let's take Microsoft's Xbox One licensing approach and "always on" requirement to the enterprise: What if every copy of Microsoft Office needed to "phone home" to a Microsoft cloud service every 24 hours? If you lost Internet connectivity for longer than that, Microsoft Office apps wouldn't load, and you'd constantly be urged via system prompts to find an Internet connection so that Microsoft could confirm that you have a legitimate license for the software you're using. Placed in that context, Microsoft's always-connected requirement for the Xbox One seems ludicrous. Corporate users can't be held hostage when cloud services go down; Microsoft's server and tools business gets that, hence the three approaches in the Cloud OS model: Private, internal clouds that don't require access to cloud services, and two other options that do.</p>
<div id="adkit_freestyle" class="adkit freestyle"><a  href="/uri/?id=2724&amp;host=www.solarwinds.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '2724', 'Click']);" title="" rel="nofollow"><span><div style="min-height:46px; background:url(http://www.petri.co.il/media/download.jpg) no-repeat left center; padding-top:5px"><p style="font-weight:bold; margin-left:30px; margin-top:3px; padding:6px 0px 6px 10px; ">Download FREE Tool >> Storage Response Time Monitor - Track Sluggish VMs</p></div></span></a></div>
<p>In the context of the Xbox One, the Cloud OS model could be applied by never requiring offline single-player (or offline multiplayer split-screen games on the same console) to connect to a cloud service for verification. Obviously, online multiplayer games would require an Internet connection, but this approach would give Xbox One gamers the opportunity to enjoy their consoles when offline. Sony allows this sort of gameplay with the PS4, and Sony execs are undoubtedly salivating at the prospect of bludgeoning Microsoft's Xbox One efforts from here until the holidays with ads that drive the point home.</p>
<p>Microsoft's Xbox PR agency, Edelman Worldwide, is probably already bracing for Sony marketing depicting grim-faced active-duty U.S. servicemen deployed overseas, laden with spotty or nonexistent Internet connections and unable to play their favorite single-player games. Or of a rural rancher who can't play a split-screen game of Forza 5 with his disappointed, rosy-cheeked children because Microsoft bricked his console for failing to contact the Xbox mothership. Granted, these examples are a bit melodramatic and overwrought, but Sony has already proven that it's willing to go for Microsoft's jugular when it has the advantage: Witness this Sony-produced video that lampoons Microsoft's convoluted and confusing system for sharing used games on the Xbox One. Before I posted this article, this video had already been <em>viewed more than 10 million times</em>.</p>
<p><iframe src="http://www.youtube.com/embed/kWSIFh8ICaA" frameborder="0" width="560" height="315"></iframe></p>
<p>There has been a trend in the gaming industry towards using an Internet connection as a digital rights management (DRM) tool, a method that game publishers have employed to fight game piracy. It's a valid argument, but gamers have already strongly voiced their opinions about using always-on connectivity as a requirement, particularly when that requirement is dressed up as a value-added feature. Didn't anyone on the Xbox One marketing team pay attention to the furor over always-on connectivity in <a href="http://www.slashgear.com/advocacy-group-threatens-legal-action-over-diablo-iii-always-on-drm-24240056/" target="_blank">Diablo III</a>, or the <a href="http://kotaku.com/5991077/your-complete-guide-to-the-simcity-disaster" target="_blank">SimCity 5 launch debacle</a>? Kyle Orland over at Ars Technica recently interviewed <a href="http://arstechnica.com/gaming/2013/06/microsoft-defends-the-xbox-ones-licensing-used-game-policies/" target="_blank">Xbox Marketing Chief Yusef Mehdi</a> about the controversy, and Mehdi told Orland that "It's fair to say there's a segment of consumers at this show [E3] in particular who really pay attention, who are very passionate about all aspects of gaming, and that we listen to closely. In a broader set of community, people don't pay attention to a lot of the details. We've seen it in the research, we've seen it in a lot of the data points."</p>
<center><div id="adkit_in-content-lower-block" class="adkit lower-block"><a  href="/uri/?id=3741&amp;host=www.trainsignal.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 10', '3741', 'Click']);" title="" rel="nofollow"><img src="/media/3741.gif"  alt=" " /> </a></div></center>
<p>In essence, Mehdi is saying that only hardcore gamers are concerned and paying attention about this, and that Microsoft research shows that more mainstream consumers "...don't pay attention to a lot of the details." Again, imagine this argument on the enterprise side of the fence: Would an average IT shop gloss over the fine print that tells them they'll lose access to Microsoft Office or SharePoint if they don't have a 24/7 Internet connection?</p>
<p>Granted, Microsoft could argue that there's a difference between mission-critical business applications and playing video games. Yet arbitrarily limiting access to use of a product that a customer has legitimately purchased -- regardless of whether that product is intended for the general gaming public or IT professionals in a server room -- is a questionable business decision at best.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=5LXF9H_wYWY:0mp7OMo-J08:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=5LXF9H_wYWY:0mp7OMo-J08:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=5LXF9H_wYWY:0mp7OMo-J08:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/5LXF9H_wYWY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/xbox-one-cloud-os.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/xbox-one-cloud-os.htm</feedburner:origLink></item>
		<item>
		<title>New in Windows Server 2012: ReFS, NTFS Updates and SMB 3.0</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/gAWOljwgYfM/windows-server-2012-refs-ntfs-updates-smb-3-0.htm</link>
		<comments>http://www.petri.co.il/windows-server-2012-refs-ntfs-updates-smb-3-0.htm#comments</comments>
		<pubDate>Thu, 13 Jun 2013 15:00:55 +0000</pubDate>
		<dc:creator>Russell Smith</dc:creator>
				<category><![CDATA[Windows Server 2012]]></category>
		<category><![CDATA[file services]]></category>
		<category><![CDATA[NTFS]]></category>
		<category><![CDATA[ReFS]]></category>
		<category><![CDATA[SMB]]></category>
		<category><![CDATA[SMB 3.0]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=36784</guid>
		<description><![CDATA[ReFS, NTFS, and SMB – oh my! Find out about new storage and file services features in Windows Server 2012 in this Ask an Admin article.]]></description>
			<content:encoded><![CDATA[<h2><strong>What are some of the other new features in Windows Server 2012?</strong></h2>
<p>Following on from last week’s article on <a href="http://www.petri.co.il/data-deduplication-storage-windows-server-2012.htm">Storage Spaces and Data Deduplication</a>, here I continue the list of new file services and storage features in Windows Server 2012.</p>
<div id="adkit_content-block" class="adkit content-block"  rel="nofollow"><a href="http://www.petri.co.il/uri/?id=3432&amp;host=www.solarwinds.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3432', 'Click']);" title="Download Virtualization Manager Free Trial Now>>" rel="nofollow" style="font-size:12px;border:none"><strong style="display: block; clear: both;">That was then…this is WOW!</strong></a><a href="http://www.petri.co.il/uri/?id=3432&amp;host=www.solarwinds.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3432', 'Click']);" title="Download Virtualization Manager Free Trial Now>>" rel="nofollow"><img src="/media/3432.gif"  alt=" " style="float: left; padding: 5px;font-size: 1em;"/></a> <p>Making sense of the data you get from Hyper-V Manager and vSphere used to be a complex and manual process.  SolarWinds Virtualization Manager provides:  <br />
<br />
<p style="margin-top:-25px;"><strong>Virtualization Dashboards</strong> – give you at-a-glance insight into the performance, capacity, configuration and usage of your virtual infrastructure</p><br />
<br />
<p style="margin-top:-45px;"><strong >Virtualization Reports</strong> – give you out-of-the-box and customizable reporting for your business</p><br />
<br />
<p style="margin-top:-45px; float:right; width:275px;"><strong >Heterogeneous Management</strong> – provides a single pane of glass across your Vmware and Hyper-V environment</p></p><a  href="http://www.petri.co.il/uri/?id=3432&amp;host=www.solarwinds.com" class="link-title" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 3', '3432', 'Click']);" title="That was then…this is WOW!" style="clear: both;" rel="nofollow">Download Virtualization Manager Free Trial Now>></a></div>
<h2>Resilient File System (ReFS)</h2>
<p>An extension to NTFS, <strong>ReFS</strong> is designed to prevent the corruption of file metadata that often occurs on standard NTFS volumes and renders data inaccessible. ReFS uses <strong>checksums</strong> for file metadata (and optionally for the actual file), and an allocate-on-write method to update data, minimizing the risk of corruption. Otherwise known as <strong>Integrity Streams</strong>, the use of checksums is a means of protecting data on disk that goes beyond what is possible on standard NTFS volumes.</p>
<p>ReFS volumes are not bootable, cannot be used on removable media and there’s no way to convert an existing NTFS volume to ReFS. Along with Storage Spaces, thin provisioning, and ReFS, Windows Server 2012 makes for an extremely scalable file server solution. ReFS supports volumes up to 256 zettabytes and a storage pool can be a maximum of 4 petabytes.</p>
<h2>NTFS Improvements</h2>
<p>In addition to the improvements that ReFS brings, standard NTFS volumes also benefit from a continuous corruption scanner that tries to identify and repair errors before they affect system performance or data retrieval. The <strong>CHKDSK</strong> command line utility has also been updated so that it can scan for errors much faster than in previous versions of Windows, allowing you to get a volume back online more quickly in the event of a corruption issue.</p>
<div id="adkit_freestyle" class="adkit freestyle"><a  href="/uri/?id=3660&amp;host=blogs.technet.com" onClick="_gaq.push(['_trackEvent', 'AdKit ** Client 13', '3660', 'Click']);" title="" rel="nofollow"><span><div style="min-height:46px;"><p style=" padding:10px 10px 10px 10px; background-color:#ffffed; font-weight:bold">Build Your Private Cloud in a Month - Article Series</p></div></span></a></div>
<h2>SMB 3.0</h2>
<p>If you’ve had the chance to transfer files over the network between Windows 8 and Windows Server 2012 (or between Windows 8 clients), you probably will have noticed that it’s faster than in Windows 7 and Server 2008 R2 – sometimes so fast that it’s almost like performing a copy operation on a local disk.</p>
<p>The extra network file transfer speed in Windows 8 and Server 2012 is just one improvement that the Server Message Block protocol brings. Here’s the full list of new features:</p>
<ul>
<li>SMB Transparent Failover</li>
<li>SMB Scale Out</li>
<li>SMB Multichannel</li>
<li>SMB Direct</li>
<li>SMB Encryption</li>
<li>VSS for SMB file shares</li>
<li>SMB Directory Leasing</li>
<li>SMB PowerShell</li>
</ul>
<p><strong>SMB Transparent Failover</strong> and <strong>SMB Scale Out</strong> are used to provide Continuously Available File Shares (CAFS), an improvement in clustering file shares on Windows Servers that allows SMB to automatically failover to an available cluster node without interrupting server applications sorting data on the share. SMB Scale Out allows access to more than one cluster node simultaneously for load balancing and improved network throughput, resulting in better server performance.</p>
<p><strong>SMB Multichannel</strong> and <strong>SMB Direct</strong> help speed up file transfers, increase network throughput, and provide connection resiliency, load balancing and automatic reconfiguration when new network paths are detected. SMB Direct requires network cards that support Remote Direct Memory Access (RDMA).</p>
<p><strong>SMB Encryption</strong> can be turned on for a file server or individual file shares, and differs from IPSec encryption in that it can be enabled without any planning or special configuration. In Windows Server 2008 R2, SMB signing prevented the spoofing of network packets but couldn’t encrypt data over the wire.</p>
<p><a href="http://www.petri.co.il/?attachment_id=36785" rel="attachment wp-att-36785"><img class="alignnone size-full wp-image-36785" src="http://www.petri.co.il/wp-content/uploads/Figure115.jpg" alt="Enabling SMB Encryption in Windows Server 2012" width="451" height="423" /></a></p>
<p>The <strong>Volume Shadow Copy Service</strong> (<strong>VSS</strong>) can now be used to back up remote shares on Windows Server 2012 file servers or Network Attached Storage (NAS) that supports the SMB 3.0 protocol. <strong>SMB Directory Leasing</strong> improves performance when accessing file servers across wide area networks (WANs) by keeping file metadata cached locally for longer, and updating the local metadata cache when changes are made on the remote file server.</p>
<p>Finally SMB 3.0 features can be managed using <strong>SMB PowerShell</strong>. If you have Windows 7 clients or Windows Server 2008R2 devices on your network, the SMB protocol used during file transfer operations will default to version 2.1. SMB 3.0 features aren’t supported on Windows 7 or down level server editions.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=gAWOljwgYfM:w5fRyziI9Vo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=gAWOljwgYfM:w5fRyziI9Vo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=gAWOljwgYfM:w5fRyziI9Vo:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/gAWOljwgYfM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/windows-server-2012-refs-ntfs-updates-smb-3-0.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/windows-server-2012-refs-ntfs-updates-smb-3-0.htm</feedburner:origLink></item>
		<item>
		<title>We’re Hiring! Wanted: VMware and Microsoft System Center Bloggers</title>
		<link>http://feedproxy.google.com/~r/Petri/~3/VDDvTlF9Y7E/hiring-vmware-microsoft-system-center-blogger.htm</link>
		<comments>http://www.petri.co.il/hiring-vmware-microsoft-system-center-blogger.htm#comments</comments>
		<pubDate>Wed, 12 Jun 2013 19:31:43 +0000</pubDate>
		<dc:creator>Jeff James</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[Hiring]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[Microsoft System Center]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.petri.co.il/?p=37299</guid>
		<description><![CDATA[The Petri IT Knowledgebase is looking for writers and bloggers who are experts in Microsoft System Center and VMware products.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" title="We're hiring! " src="http://www.petri.co.il/wp-content/uploads/writers-wanted.jpg" alt="We're hiring! " width="420" height="304" /></p>
<p>Earlier this year, I wrote about how we're <a href="http://www.petri.co.il/reader-feedback-petri-it-knowledgebase.htm" target="_blank">continuing to invest in how-to technical content</a> by building out our pool of authors and increasing our posting frequency. Since my last post on the topic we've hired <a href="http://www.petri.co.il/author/aidan-finn" target="_blank">Aidan Finn</a> and <a href="http://www.petri.co.il/author/russell-smith" target="_blank">Russell Smith</a>, who both cover the Microsoft Windows Server Platform for us. Now we're looking for two more bloggers to add to the Petri IT Knowledgebase editorial team, and this time we're looking for <strong>VMware</strong> and <strong>Microsoft System Center</strong> experts. Read on for more details on the new positions and what we're looking for.</p>
<h2><strong>VMware Blogger</strong></h2>
<p><strong></strong>Are you an IT professional who has extensive, hands-on experience with VMware’s product family? Can you recite the differences between VMware vCloud 5.0 and vCloud 5.1 in your sleep? And do you know – at a glance – what the acronyms VCHS, VCAP, VCLI, CBRC, SDDC, and S2 stand for?</p>
<p>Do you also like to write – perhaps you have your own blog, or you’ve had technical articles published before – and you’re active on social media platforms like Facebook, Twitter, G+, and LinkedIn? If so, we’d like to talk to you.</p>
<p>The VMware Blogger will post news analysis, opinion, and both short- and long-form technical how-to content about VMware’s product families, as well as provide regular tips and suggestions to help readers get the most out of VMware’s enterprise virtualization products. This position will focus on VMware deployment, management, optimization and security topics. Applicants should also be well versed and knowledgeable about using VMware products in mixed-vendor environments, including Windows Server and Linux environments. <a href="http://bluewhaleweb.theresumator.com/apply/Bc10JL/VMware-Blogger.html" target="_blank">Apply for the <strong>VMware</strong> Blogger position</a>.</p>
<h2><strong>Microsoft System Center / Windows Intune Blogger</strong></h2>
<p>Are you an IT professional who has extensive experience with Microsoft System Center, Virtual Machine Manager, Configuration Manager, Operations Manager, and other Microsoft management platforms and tools like Windows Intune? Do you know the differences between the various versions of the System Center product family? Do you know what the acronyms SCCM, SCOM, SCVMM mean at a glance? Do you also like to write and are active on social media platforms like Facebook, Twitter, G+, and LinkedIn? If so, we’d like to talk to you.</p>
<p>The Microsoft System Center / Windows Intune Blogger will post about the latest news and analysis of Microsoft’s System Center and Windows Intune product families, as well as provide regular tips and suggestions to help readers get the most out of those platforms. <a href="http://bluewhaleweb.theresumator.com/apply/9SisEp/Microsoft-System-Center-Windows-Intune-Blogger.html" target="_blank">Apply for the <strong>Microsoft System Center / Windows Intune</strong> Blogger position</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Petri?a=VDDvTlF9Y7E:RKmC0e7fPGY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Petri?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Petri?a=VDDvTlF9Y7E:RKmC0e7fPGY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Petri?i=VDDvTlF9Y7E:RKmC0e7fPGY:V_sGLiPBpWU" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Petri/~4/VDDvTlF9Y7E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.petri.co.il/hiring-vmware-microsoft-system-center-blogger.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.petri.co.il/hiring-vmware-microsoft-system-center-blogger.htm</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.816 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-06-19 14:00:38 -->
