<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Concurrency Blog</title>
	<atom:link href="http://blog.concurrency.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.concurrency.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 15:46:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Monitoring Hyper-V Replica in Windows 8</title>
		<link>http://blog.concurrency.com/infrastructure/monitoring-hyper-v-replica-in-windows-8/</link>
		<comments>http://blog.concurrency.com/infrastructure/monitoring-hyper-v-replica-in-windows-8/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 15:46:20 +0000</pubDate>
		<dc:creator>Nathan Lasnoski</dc:creator>
				<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Hyper-V Replica Monitoring]]></category>
		<category><![CDATA[Hyper-V Replica Performance]]></category>
		<category><![CDATA[Hyper-V Replica WAN Utilization]]></category>
		<category><![CDATA[Windows 8 Hyper-V Replication Monitoring]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6989</guid>
		<description><![CDATA[Hyper-V Replica is an awesome technology in Windows 8 that allows for virtual machines to be replicated from one Hyper-V host environment to another.  This [...]]]></description>
			<content:encoded><![CDATA[<p>Hyper-V Replica is an awesome technology in Windows 8 that allows for virtual machines to be replicated from one Hyper-V host environment to another.  This includes replication to and from clusters and/or standalone hosts.  The technology also provides a mechanism for roll-back to previous states and configuration of failover properties, such as IP addresses.  In this post, we&#8217;ll discuss how we can monitor the replicas  to validate replication is occurring as we expect.</p>
<p>&nbsp;</p>
<p><strong>The replication properties can be found through a variety of means.  These include the console:</strong></p>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/02/Hyper-V-Replica-View-Replication-Health.png"><img class="alignnone  wp-image-6990" title="Hyper-V Replica - View Replication Health" src="http://blog.concurrency.com/wp-content/uploads/2012/02/Hyper-V-Replica-View-Replication-Health-1024x525.png" alt="" width="581" height="332" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>From the console you&#8217;ll get information on:</strong></p>
<p>&nbsp;</p>
<ul>
<li>Replication cycles</li>
<li>Replication cycles missed</li>
<li>Replication errors</li>
<li>Average replication latency</li>
<li>Average replication size</li>
</ul>
<p>&nbsp;</p>
<p>You can also export to CSV so you can view the data in a report.  I&#8217;m thinking a cool example would be to plug the report automatically into a SharePoint scorecard using PerformancePoint.  I&#8217;ll have to try that… <img src='http://blog.concurrency.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>From PowerShell:</p>
<p>&nbsp;</p>
<p>PS C:\Windows\system32&gt; Get-VMReplication | fl</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>ReplicaServerPort              : 80</p>
<p>CertificateThumbprint          :</p>
<p>AuthenticationType             : Integrated</p>
<p>AutoResynchronizeEnabled       : False</p>
<p>AutoResynchronizeIntervalStart : 18:30:00</p>
<p>AutoResynchronizeIntervalEnd   : 06:00:00</p>
<p>ResynchronizeStartTime         :</p>
<p>TestReplicationStartTime       :</p>
<p>CompressionEnabled             : True</p>
<p>VSSSnapshotReplicationEnabled  : False</p>
<p>VSSSnapshotFrequency           : 0</p>
<p>RecoveryHistory                : 2</p>
<p>InitialReplicationStartTime    :</p>
<p>ExcludedDisks                  : {}</p>
<p>ComputerName                   : CNCYVSVR20</p>
<p>PrimaryServerName              : cncyvsvr20.concurrency.com</p>
<p>CurrentReplicaServerName       : cncyvsvr21.concurrency.com</p>
<p>ReplicaServerName              : cncyvsvr21.concurrency.com</p>
<p>ReplicationState               : Replicating</p>
<p>ReplicationHealth              : Normal</p>
<p>ReplicationMode                : Primary</p>
<p>LastReplicationTime            : 1/31/2012 10:53:55 AM</p>
<p>ReplicatedDisks                : {Hard Drive on IDE controller number 0 at location 0}</p>
<p>SecurityTag                    :</p>
<p>TestVirtualMachine             :</p>
<p>VMId                           : 9c90cfe3-bd97-4fb2-9286-cc34895ef75a</p>
<p>VMName                         : CNCYRDCB03</p>
<p>IsDeleted                      : False</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>You can also view replication health via perfmon, which would also bubble up into System Center tools like Operations Manager.  You can also use these in baselining and estimating WAN saturation.</strong></p>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/02/Hyper-V-Replica-PerfMon.png"><img class="alignnone  wp-image-6991" title="Hyper-V Replica - PerfMon" src="http://blog.concurrency.com/wp-content/uploads/2012/02/Hyper-V-Replica-PerfMon-1024x692.png" alt="" width="601" height="433" /></a></p>
<p>I hope this helps everyone see where Hyper-V replica will provide a cost effective and manageable replication solution that also provides visibility into the replication channel and its impact on the Hyper-V host or cluster.</p>
<p>&nbsp;</p>
<p>Nathan Lasnoski</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/infrastructure/monitoring-hyper-v-replica-in-windows-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FEP 2010: Uninstalling Competitive Antivirus Solutions</title>
		<link>http://blog.concurrency.com/infrastructure/system-center-infrastructure/fep-2010-uninstalling-competitive-antivirus-solutions/</link>
		<comments>http://blog.concurrency.com/infrastructure/system-center-infrastructure/fep-2010-uninstalling-competitive-antivirus-solutions/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 20:57:12 +0000</pubDate>
		<dc:creator>Jesse Garcia</dc:creator>
				<category><![CDATA[System Center]]></category>
		<category><![CDATA[FEP]]></category>
		<category><![CDATA[FEP 2010]]></category>
		<category><![CDATA[Forefront Endpoint Protection 2010]]></category>
		<category><![CDATA[SCCM]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6981</guid>
		<description><![CDATA[With Forefront Endpoint Protection 2010 (FEP) becoming more and more popular, many of my customers are looking at ways to migrate from their current Antivirus [...]]]></description>
			<content:encoded><![CDATA[<p>With Forefront Endpoint Protection 2010 (FEP) becoming more and more popular, many of my customers are looking at ways to migrate from their current Antivirus (AV) solution to FEP 2010.  FEP 2010 includes a competitive uninstall of various AV solutions including:</p>
<ul>
<li>Symantec Endpoint Protection version 11</li>
<li>Symantec Corporate Edition version 10</li>
<li>McAfee VirusScan Enterprise version 8.5 and version 8.7 and its agent</li>
<li>Forefront Client Security version 1 and the Operations Manager agent</li>
<li>TrendMicro OfficeScan version 8 and version 10</li>
</ul>
<p>In practice, I have had very good luck with the above pieces of software being uninstalled cleanly by the FEP 2010 install.  But what happens if your current AV doesn’t fall into this list?  One of my customers was using ESET’s NOD32 and while determining our best course of action, I stumbled across a handy knowledgebase article that gives a list of AV tools and various ways to uninstall those tools.  Here is the link:</p>
<p><a title="http://kb.eset.com/esetkb/index?page=content&amp;id=SOLN146" href="http://kb.eset.com/esetkb/index?page=content&amp;id=SOLN146">http://kb.eset.com/esetkb/index?page=content&amp;id=SOLN146</a> </p>
<p>Various AV products offer different challenges but I have found the above link to be extremely helpful and I wanted to share it.  I hope others find this link useful!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/infrastructure/system-center-infrastructure/fep-2010-uninstalling-competitive-antivirus-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RECAP: Microsoft Marketing Automation Event (Milwaukee)</title>
		<link>http://blog.concurrency.com/events/recap-microsoft-marketing-automation-event-milwaukee/</link>
		<comments>http://blog.concurrency.com/events/recap-microsoft-marketing-automation-event-milwaukee/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 21:11:25 +0000</pubDate>
		<dc:creator>Benjamin Bishop</dc:creator>
				<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6959</guid>
		<description><![CDATA[Consider the implications of the following words: “It no longer makes economic sense to send an advertising message to the many in hopes of persuading [...]]]></description>
			<content:encoded><![CDATA[<p>Consider the implications of the following words: <strong>“It no longer makes economic sense to send an advertising message to the many in hopes of persuading the few.” </strong>That’s from M. Lawrence Light, former Chief Marketing Officer for McDonalds Corporation. If Mr. Light is correct, what does that mean for your business? Do you have tightly integrated tools (both sales and marketing) for seamless campaigns you can <em>measure</em>?</p>
<p>On January 27, Concurrency and Microsoft sponsored an event titled “<em>Microsoft Marketing Automation</em>” at Microsoft’s Waukesha, Wisconsin offices to help marketing and technology managers integrate their marketing tools in a fast-changing digital environment. The room was packed with attendees interested to see “how the pieces all come together” through best-practices and case studies from actual implementations by Concurrency.</p>
<p>The event comprised the following sections:</p>
<ul>
<li><strong>Mark Rentmeester</strong>, Concurrency Team Lead for <strong>Microsoft SharePoint 2010</strong>, presented best practices in implementing SharePoint 2010 For Internet Sites (FIS). With the 2010 release, SharePoint’s powerful web content management capabilities are complemented by total visual flexibility. Now if you wish you can recreate your existing internal or external website—pixel for pixel—but with SharePoint serving up content. Why have SharePoint handle your content management? Because consistency across your internal intranet, your public-facing intranet, and your extranet can reduce cost and get the most value from your content.</li>
</ul>
<ul>
<li><strong>Marek Wawrzyniak</strong>, President and CEO of Glendale, Arizona-based <strong>Interactive Web Works</strong>, presented the case for inbound marketing and search engine optimization as central elements of your marketing strategy. Gone are the days of spending $30,000 on a glossy print magazine ad without knowing its direct benefit. Here is a new era of understanding the value of every click, lead, and campaign. Marek mapped the lay of the land across social media and Internet search—and then presented specific tactics for intelligent online campaigns, from keyword and website optimization to converting site traffic to qualified leads, and nurturing those leads with an email campaign.</li>
<li><strong>Jason Foerch</strong>, Concurrency Team Lead for <strong>Microsoft Dynamics CRM 2011</strong>, presented the integrated capabilities of Microsoft Dynamics CRM. <strong>You can only manage what you can measure.</strong> For the first time, companies can integrate their marketing and sales platforms for true 360 degree visibility of leads and campaigns. Too many companies are still struggling with sales and marketing platforms that don’t talk to each other. This new technology now brings everything together—for visibility, consistency, efficiency and, most of all, measurability.</li>
</ul>
<p>Said Concurrency CEO James Savage, “We were thrilled with this event, which put together the whole package of how companies need to think intelligently about marketing—because their competitors are getting more intelligent, too. Companies need tightly integrated tools in order to manage and deliver the array of content that’s a natural part of campaigns that throw out the old model of blanket-message-delivery for a smarter, measurable approach.”</p>
<p>Concurrency and Microsoft will next make this content available to Chicago business and technology managers at an event to be held February 24, 2012. For other Concurrency events, including recaps of past presentations, visit Concurrency’s <a href="http://blog.concurrency.com/category/events/">Events page</a>.</p>
<p>To contact Concurrency about its practices in <a href="http://www.concurrency.com/sharepoint">Microsoft SharePoint 2010</a> or <a href="http://www.concurrency.com/dynamics-crm">Microsoft Dynamics CRM 2011</a>, call 262-364-5800. To contact Marek Wawrzyniak of Interactive Web Works, visit <a href="http://www.iww.ag/">www.iww.ag</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/events/recap-microsoft-marketing-automation-event-milwaukee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook Rules with Wildcards or &#8220;Subject Contains&#8221;</title>
		<link>http://blog.concurrency.com/sharepoint/outlook-rules-with-wildcards-or-subject-contains/</link>
		<comments>http://blog.concurrency.com/sharepoint/outlook-rules-with-wildcards-or-subject-contains/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 21:08:14 +0000</pubDate>
		<dc:creator>Nathan Lasnoski</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Unified Communications]]></category>
		<category><![CDATA[Outlook 2010 Wildcard Rule]]></category>
		<category><![CDATA[Outlook Rules with Multiple Domains]]></category>
		<category><![CDATA[Outlook Wildcards]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6961</guid>
		<description><![CDATA[&#160; I was recently asked &#8220;hey… you&#8217;re an Exchange guy.  How do you create an Outlook rule that includes wildcards?&#8221;  I admitted that I had [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I was recently asked &#8220;hey… you&#8217;re an Exchange guy.  <strong>How do you create an Outlook rule that includes wildcards?&#8221; </strong> I admitted that I had never been asked that before, but was very interested in in the answer.  I started playing with Outlook, trying different wildcard statements, but to no avail.  I did find however that right in the interface, I was able to solve the problem.  You can configure the rules to look for &#8220;text&#8221; which was extensive enough to accomplish the goal of having multiple names, or differing content in the subject or email address fields. </p>
<p>&nbsp;</p>
<h2><strong>Here goes it:</strong></h2>
<p><a href="http://blog.concurrency.com/wp-content/uploads/2012/01/EmailRulesMultipleDomains.png"><img class="alignnone  wp-image-6963" title="EmailRulesMultipleDomains" src="http://blog.concurrency.com/wp-content/uploads/2012/01/EmailRulesMultipleDomains.png" alt="" width="547" height="377" /></a></p>
<p>&nbsp;</p>
<p>I hope this helps you clean your inbox.</p>
<p>&nbsp;</p>
<p>Nathan Lasnoski</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/sharepoint/outlook-rules-with-wildcards-or-subject-contains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyper-V PowerShell in Windows 8 CTP</title>
		<link>http://blog.concurrency.com/infrastructure/hyper-v-powershell-in-windows-8-ctp/</link>
		<comments>http://blog.concurrency.com/infrastructure/hyper-v-powershell-in-windows-8-ctp/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 06:01:13 +0000</pubDate>
		<dc:creator>Nathan Lasnoski</dc:creator>
				<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Hyper-V PowerShell]]></category>
		<category><![CDATA[Hyper-V Windows 8 PowerShell]]></category>
		<category><![CDATA[Windows 8 PowerShell Hyper-V]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6939</guid>
		<description><![CDATA[The Hyper-V platform in Windows 8 now has PowerShell!  This is awesome, as it has enabled both automation opportunities, as well as command line ease of use.  I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Hyper-V platform in Windows 8 now has PowerShell! </strong> This is awesome, as it has enabled both automation opportunities, as well as command line ease of use.  I&#8217;m certain that the use of PowerShell throughout the Windows 8 platform will make the core installation types much more popular.  I&#8217;ve done some playing around and provided some information about the upcoming PowerShell commandlets below.   I&#8217;ve included the full command listing, as well as some common command usages.  In this series I&#8217;ll also walk through common Hyper-V PowerShell examples that we&#8217;ll need for automation.</p>
<p>&nbsp;</p>
<h2><strong>Full List of Hyper-V Commands</strong></h2>
<p>&nbsp;</p>
<p>PS C:\Windows\system32&gt; <strong>Get-Command -Module Hyper-V</strong></p>
<p>&nbsp;</p>
<p>CommandType     Name                               ModuleName                         Definition                      </p>
<p>&#8212;&#8212;&#8212;&#8211;     &#8212;-                               &#8212;&#8212;&#8212;-                         &#8212;&#8212;&#8212;-                      </p>
<p>Cmdlet          Add-VMDvdDrive                     Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMFibreChannelHba              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMHardDiskDrive                Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMMigrationNetwork             Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMNetworkAdapter               Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMNetworkAdapterAcl            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMRemoteFx3dVideoAdapter       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMScsiController               Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMStoragePath                  Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMSwitch                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Add-VMSwitchExtensionFeature       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Checkpoint-VM                      Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Compare-VM                         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Complete-VMFailover                Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Connect-VMNetworkAdapter           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Connect-VMSan                      Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Convert-VHD                        Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Disable-VMIntegrationService       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Disable-VMMigration                Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Disable-VMResourceMetering         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Disable-VMSwitchExtension          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Disconnect-VMNetworkAdapter        Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Disconnect-VMSan                   Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Dismount-VHD                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Enable-VMIntegrationService        Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Enable-VMMigration                 Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Enable-VMResourceMetering          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Enable-VMSwitchExtension           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Export-VM                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Export-VMSnapshot                  Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VHD                            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VM                             Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMBios                         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMComPort                      Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMConnectAccess                Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMDvdDrive                     Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMFibreChannelHba              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMFloppyDiskDrive              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMHardDiskDrive                Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMHost                         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMHostNumaNode                 Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMHostNumaNodeStatus           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMIdeController                Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMIntegrationService           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMMemory                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMMigrationNetwork             Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMNetworkAdapter               Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMNetworkAdapterAcl            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMNetworkAdapterFailoverCon&#8230; Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMNetworkAdapterVlan           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMProcessor                    Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMRemoteFx3dVideoAdapter       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMReplication                  Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMReplicationAuthorizationE&#8230; Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMReplicationServer            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMResourcePool                 Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMSan                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMScsiController               Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMSnapshot                     Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMStoragePath                  Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMSwitch                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMSwitchExtension              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMSwitchExtensionFeature       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMSystemSwitchExtension        Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Get-VMSystemSwitchExtensionFeature Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Grant-VMConnectAccess              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Import-VM                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Import-VMInitialReplication        Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Measure-VM                         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Measure-VMReplication              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Measure-VMResourcePool             Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Merge-VHD                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Mount-VHD                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Move-VM                            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Move-VMStorage                     Hyper-V                            &#8230;                             </p>
<p>Cmdlet          New-VFD                            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          New-VHD                            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          New-VM                             Hyper-V                            &#8230;                             </p>
<p>Cmdlet          New-VMReplicationAuthorizationE&#8230; Hyper-V                            &#8230;                             </p>
<p>Cmdlet          New-VMResourcePool                 Hyper-V                            &#8230;                             </p>
<p>Cmdlet          New-VMSan                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          New-VMSwitch                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Optimize-VHD                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VM                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMDvdDrive                  Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMFibreChannelHba           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMHardDiskDrive             Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMMigrationNetwork          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMNetworkAdapter            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMNetworkAdapterAcl         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMRemoteFx3dVideoAdapter    Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMReplication               Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMReplicationAuthorizati&#8230; Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMResourcePool              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMSan                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMSavedState                Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMScsiController            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMSnapshot                  Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMStoragePath               Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMSwitch                    Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Remove-VMSwitchExtensionFeature    Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Rename-VM                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Rename-VMResourcePool              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Rename-VMSan                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Rename-VMSnapshot                  Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Rename-VMSwitch                    Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Repair-VM                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Reset-VMResourceMetering           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Resize-VHD                         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Restart-VM                         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Restore-VMSnapshot                 Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Resume-VM                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Resume-VMReplication               Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Revoke-VMConnectAccess             Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Save-VM                            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VHD                            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VM                             Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMBios                         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMComPort                      Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMDvdDrive                     Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMFibreChannelHba              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMFloppyDiskDrive              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMHardDiskDrive                Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMHost                         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMMemory                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMMigrationNetwork             Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMNetworkAdapter               Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMNetworkAdapterFailoverCon&#8230; Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMNetworkAdapterVlan           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMProcessor                    Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMRemoteFx3dVideoAdapter       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMReplication                  Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMReplicationAuthorizationE&#8230; Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMReplicationServer            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMResourcePool                 Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMSan                          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Set-VMSwitch                       Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Start-VM                           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Start-VMFailover                   Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Start-VMInitialReplication         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Stop-VM                            Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Stop-VMFailover                    Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Stop-VMInitialReplication          Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Stop-VMReplication                 Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Suspend-VM                         Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Suspend-VMReplication              Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Test-VHD                           Hyper-V                            &#8230;                             </p>
<p>Cmdlet          Update-VMSwitchExtensionFeature    Hyper-V                            &#8230;   </p>
<p>&nbsp;</p>
<h2><strong>Get VM Listing</strong></h2>
<p><strong>PS C:\Windows\system32&gt; Get-VM</strong></p>
<p> Name            State CPU(%) AssignedMemory(M) MemoryDemand(M) MemoryStatus Uptime   Status             ReplicationStat</p>
<p>&#8212;-            &#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;   &#8212;&#8212;             &#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>CNCYREPLICATEST Off   0                        0                            00:00:00 Operating normally Disabled</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2><strong>Get-VM Information for Specific VM</strong></h2>
<p><strong>PS C:\Windows\system32&gt; Get-VM &#8220;CNCYREPLICATEST&#8221;</strong></p>
<p> Name            State CPU(%) AssignedMemory(M) MemoryDemand(M) MemoryStatus Uptime   Status             ReplicationStat</p>
<p>  &#8212;-            &#8212;&#8211; &#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212; &#8212;&#8212;   &#8212;&#8212;             &#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>CNCYREPLICATEST Off   0                        0                            00:00:00 Operating normally Disabled</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2><strong>Get All VM Information for Specific VM</strong></h2>
<p><strong>PS C:\Windows\system32&gt; Get-VM &#8220;CNCYREPLICATEST&#8221; | fl</strong></p>
<p>Name             : CNCYREPLICATEST</p>
<p>State            : Off</p>
<p>CpuUsage         : 0</p>
<p>AssignedMemory   :</p>
<p>MemoryDemand     : 0</p>
<p>MemoryStatus     :</p>
<p>Uptime           : 00:00:00</p>
<p>Status           : Operating normally</p>
<p>ReplicationState : Disabled</p>
<p>&nbsp;</p>
<h2><strong>Get VM Host Information</strong> </h2>
<p><strong>PS C:\Windows\system32&gt; Get-VMHost</strong></p>
<p>&nbsp;</p>
<p>DefaultVirtualHardDiskLocation        : C:\Hyper-V</p>
<p>DefaultVirtualMachineLocation         : C:\Hyper-V</p>
<p>FullyQualifiedDomainName              : concurrency.com</p>
<p>Name                                  : CNCYVSVR14</p>
<p>MinimumMacAddress                     : 00155D496500</p>
<p>MaximumMacAddress                     : 00155D4965FF</p>
<p>MaximumSimultaneousStorageMigrations  : 2</p>
<p>MaximumSimultaneousLiveMigrations     : 2</p>
<p>InboundVirtualMachineMigrationEnabled : False</p>
<p>FibreChannelWorldWideNodeName         : C0:03:FF:00:00:FF:FF:00</p>
<p>FibreChannelWorldWidePortNameMaximum  : C0:03:FF:3D:2D:2C:FF:FF</p>
<p>FibreChannelWorldWidePortNameMinimum  : C0:03:FF:3D:2D:2C:00:00</p>
<p>LogicalProcessorCount                 : 4</p>
<p>MemoryCapacity                        : 8415461376</p>
<p>ResourceMeteringSaveInterval          : 01:00:00</p>
<p>NumaSpanningEnabled                   : True</p>
<p>HostNumaStatus                        :</p>
<p>NumaStatus                            :</p>
<p>InternalNetworkAdapters               : {}</p>
<p>&nbsp;</p>
<h2><strong>New VM Creation</strong></h2>
<p><strong>PS C:\Windows\system32&gt; New-VM -?</strong></p>
<p>&nbsp;</p>
<p>NAME</p>
<p>    New-VM</p>
<p>&nbsp;</p>
<p>SYNTAX</p>
<p>    New-VM [[-Name] &lt;string&gt;] [[-MemoryStartupBytes] &lt;long&gt;] [-BootDevice &lt;string&gt;] [-NoVHD] [-SwitchName &lt;st</p>
<p>    [-Path &lt;string&gt;] [-AsJob] [-ComputerName &lt;string[]&gt;] [-WhatIf] [-Confirm] [&lt;CommonParameters&gt;]</p>
<p>&nbsp;</p>
<p>    New-VM [[-Name] &lt;string&gt;] [[-MemoryStartupBytes] &lt;long&gt;] [-BootDevice &lt;string&gt;] [-SwitchName &lt;string&gt;] -N</p>
<p>    &lt;string&gt; -NewVHDSize &lt;UInt64&gt; [-Path &lt;string&gt;] [-AsJob] [-ComputerName &lt;string[]&gt;] [-WhatIf] [-Confirm]</p>
<p>    [&lt;CommonParameters&gt;]</p>
<p>&nbsp;</p>
<p>    New-VM [[-Name] &lt;string&gt;] [[-MemoryStartupBytes] &lt;long&gt;] [-BootDevice &lt;string&gt;] [-SwitchName &lt;string&gt;] -V</p>
<p>    &lt;string&gt; [-Path &lt;string&gt;] [-AsJob] [-ComputerName &lt;string[]&gt;] [-WhatIf] [-Confirm] [&lt;CommonParameters&gt;]</p>
<p>&nbsp;</p>
<p><strong>I&#8217;m excited to work more with VM automation.  Stay tuned for some cool examples!</strong></p>
<p>&nbsp;</p>
<p>Nathan Lasnoski</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/infrastructure/hyper-v-powershell-in-windows-8-ctp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System Center 2012 Licensing Changes and Products</title>
		<link>http://blog.concurrency.com/infrastructure/system-center-2012-licensing-changes-and-products/</link>
		<comments>http://blog.concurrency.com/infrastructure/system-center-2012-licensing-changes-and-products/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 05:56:24 +0000</pubDate>
		<dc:creator>Nathan Lasnoski</dc:creator>
				<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[System Center 2012 Products]]></category>
		<category><![CDATA[System Center Licensing]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6900</guid>
		<description><![CDATA[Microsoft has announced some great changes to the licensing and deployment model of the System Center suite.  The System Center is a fully integrated suite [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Microsoft has announced some great changes to the licensing and deployment model of the System Center suite.  The System Center is a fully integrated suite of tools which manage all aspects of delivering IT services. </strong> They are licensed together to provide a single integrated set of capabilities, similar to how Microsoft is licensing Office vs. Word, Excel, and PowerPoint separately.  The tools are powerful individually, but together they create integration that is unmatched.</p>
<p>&nbsp;</p>
<p><strong>The two new licensing models are the System Center Standard and Datacenter. </strong> The System Center Datacenter license provides unlimited &#8220;Operating System Environments&#8221; (OSEs).  The System Center Standard license provides the suite for two OSEs and is intended for physical, or lightly virtualized branch environments.</p>
<p>&nbsp;</p>
<h2><strong>Overview of the System Center Licensing Models:</strong></h2>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/01/syscenter2012skus.png"><img class="alignnone size-full wp-image-6917" title="syscenter2012skus" src="http://blog.concurrency.com/wp-content/uploads/2012/01/syscenter2012skus.png" alt="" width="485" height="439" /></a></p>
<p>&nbsp;</p>
<h2><strong>Microsoft System Center 2012 Details</strong></h2>
<p>System Center 2012 solutions provide complete management from the desktop to the datacenter.</p>
<p>Using integrated and automated management solutions, you can capture and aggregate knowledge about systems, policies, processes, and best practices so that you can optimize your infrastructure to reduce costs, improve application availability, and enhance service delivery.</p>
<p>&nbsp;</p>
<h2><strong>Here is an overview of the new features in the System Center suite!</strong></h2>
<p>&nbsp;</p>
<div>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<h2><strong>Configuration Manager 2012</strong></h2>
<ul>
<li>Enhanced mobile device management (cross-platform)</li>
<li>User centric management</li>
<li>New integrated console</li>
<li>Software portal</li>
<li>Automated remediation</li>
<li>Conditional delivery</li>
</ul>
</td>
</tr>
<tr>
<td>
<h2><strong>Service Manager 2012</strong></h2>
<ul>
<li>Fully customizable rich end-user portal, powered by SharePoint</li>
<li>Integrated and IT customizable service request forms (ex. new user, password reset, etc.)</li>
<li>Enhanced process management</li>
<li>New release management capability</li>
<li>ITIL conformance</li>
</ul>
</td>
</tr>
<tr>
<td>
<h2><strong>Orchestrator 2012 (formerly Opalis)</strong></h2>
<ul>
<li>End-to-end IT process automation toolset (ex. user account provisioning/permissioning, user account decommissioning, VM provisioning, server application provisioning)</li>
<li>Fully integrated into SCSM self-service portal</li>
<li>GUI-driven, IT administrator built, workflow engine</li>
</ul>
</td>
</tr>
<tr>
<td>
<h2><strong>Operations Manager 2012</strong></h2>
<ul>
<li>Enhanced service-centric management model</li>
<li>New full-network device support (esp. routers, switches, firewalls)</li>
<li>Completely revised new dashboard-based interface</li>
<li>Avicode integration</li>
</ul>
</td>
</tr>
<tr>
<td>
<h2><strong>Virtual Machine Manager 2012</strong></h2>
<ul>
<li>Manages VMWare, Xen and Hyper-V</li>
<li>Service-centric provisioning model (app components are built out within provisioning model)</li>
<li>Bare-metal host deployment</li>
<li>Application-centric configuration of storage, networking and load-balancer settings</li>
</ul>
</td>
</tr>
<tr>
<td>
<h2><strong>Data Protection Manager 2012</strong></h2>
<ul>
<li>Centralized management tool</li>
<li>Enhanced tape library management</li>
<li>Generic data source protection</li>
<li>Direct recovery into SharePoint in minutes</li>
</ul>
</td>
</tr>
<tr>
<td>
<h2><strong>Advisor 2012</strong></h2>
<ul>
<li>Cloud-based system health management tool</li>
<li>Analyze the configurations of SQL Server and Windows Server deployments</li>
<li>Identify potential issues and data corruption, and provide more information about systems to make problem resolution faster and more efficient</li>
</ul>
</td>
</tr>
<tr>
<td>
<h2><strong>App Controller 2012</strong></h2>
<ul>
<li>Public and private cloud management interface</li>
<li>Access resources across multiple VMM Servers</li>
<li>Register and consume capacity from multiple Windows Azure subscriptions</li>
<li>Deploy and manage Services and virtual machines on private clouds created within VMM 2012 and on Windows Azure</li>
<li>Enable multiple users authenticated through Active Directory to access a single Windows Azure subscription</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
<p>  </p>
<h2><strong>More information:</strong></h2>
<ul>
<li> Microsoft Private Cloud Site: <a href="http://www.microsoft.com/en-us/server-cloud/new.aspx">http://www.microsoft.com/en-us/server-cloud/new.aspx</a></li>
<li> Come check it out at MMS: <a href="http://www.mms-2012.com/">http://www.mms-2012.com/</a></li>
<li>Download the Private Cloud overview: <a href="http://www.microsoft.com/click/services/Redirect2.ashx?CR_EAC=300035806">http://www.microsoft.com/click/services/Redirect2.ashx?CR_EAC=300035806</a></li>
</ul>
<p>&nbsp;</p>
<p><strong>Happy managing!</strong></p>
<p>&nbsp;</p>
<p>Nathan Lasnoski</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/infrastructure/system-center-2012-licensing-changes-and-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad, Tablets and Office, oh my&#8230;</title>
		<link>http://blog.concurrency.com/sharepoint/ipad-tablets-and-office-oh-my/</link>
		<comments>http://blog.concurrency.com/sharepoint/ipad-tablets-and-office-oh-my/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 19:32:01 +0000</pubDate>
		<dc:creator>Kirk Poser</dc:creator>
				<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Unified Communications]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[Cloudon]]></category>
		<category><![CDATA[ep121]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[Office 2010]]></category>
		<category><![CDATA[office 2011]]></category>
		<category><![CDATA[onlive desktop]]></category>
		<category><![CDATA[quickoffice]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6870</guid>
		<description><![CDATA[Intro to Productivity Apps We all know that Microsoft Office is the most widely known and used suite in the Enterprise. Those of you who [...]]]></description>
			<content:encoded><![CDATA[<h3>Intro to Productivity Apps</h3>
<p>We all know that Microsoft Office is the most widely known and used suite in the Enterprise. Those of you who may have ventured into Open Source products quickly realized that sometimes you get what you pay for. Sure, it does a lot of the functionality that Office does, but weigh that against user acceptance and support costs and you quickly realize that there is no free lunch out there.<br />
I have also used the Apple products: Pages, Numbers and Keynote. Although very eloquent with some awesome features, again, the user acceptance and learning curve were steep. Before I get slammed by the Apple fanboys, let me state I think it is crazy to have to choose a camp. I use Microsoft products and Apple products. There are a lot of things I think Windows 7 does better. There are a lot of things I think Apple does better. Why do I have to choose?</p>
<h3>Working with Word files</h3>
<p>Working with Word files on an iPad can be a challenge. Not an insurmountable challenge, but really just a different way of thinking than in the Windows world. First, is getting documents into your iPad to work with. For individual files, you can use iTunes and synch those files into your iPad. If you need to work on multiple files, I would suggest the free service called <a href="http://www.dropbox.com/">Dropbox</a>. This is a “Cloud-Based” storage that integrate wonderfully with an I-device, and offers a <a href="http://itunes.apple.com/us/app/dropbox/id327630330?mt=8">free App for you to use</a>. Now you can work on files in the cloud, and when you save them, they are in your Dropbox account safe and sound. Dropbox files can also synch to multiple computers so you can access the document at home as well as at work. There are many other offerings out there, but Dropbox by far is my favorite.</p>
<h3>Microsoft SharePoint, Office 365 and others</h3>
<p>Microsoft SharePoint and Office 365 also work very well to store documents in your Enterprise structure and open them from within I-devices (We will delve more into this at a later time)<br />
Once you have access to your documents, you will need a program that allows you to work with office documents. (Remember, iPads and Office documents are two different worlds)<br />
I have tried quite a few Apps on my iPad to find the one I like the best, and so far it is <a href=" http://itunes.apple.com/gb/app/id376212724?mt=8">QuickOffice HD</a>.  Here is their product description: <em>“Create, edit, &amp; share Microsoft® Office documents, spreadsheets, and presentations, as well as view PDF files, on the go with the most connected office suite for iPad. Our Connected File Manager enables you to access, transfer, and manage files on your iPad and through Evernote, Dropbox, Google Docs, Box, Huddle, SugarSync, Egnyte, and Catch. Sharing features allow you to publish your content using e-mail, Facebook, Twitter, LinkedIn, Yammer, Slideshare, Scribd, and Docstoc”</em>.</p>
<p>Check it out yourself and see! Here are some other “Office” options:</p>
<ul>
<li>Documents 2</li>
<li>Documents To Go</li>
<li>iWork apps (Pages, Numbers, and Keynote)</li>
<li>Office2 HD</li>
<li>Quickoffice Pro HD</li>
<li>Smart Office</li>
</ul>
<p>Keep in mind that working on documents on an iPad is a lot different concept than doing ALL your work on an iPad. Even if you pair a Bluetooth keyboard up to it, it still will be a challenge to do extensive work. I prefer to look at my iPad as a way to make edits or review documents for minor changes, but I still prefer to work on a Windows 7 machine. (Note, I didn’t say MAC, because my definite preference is Office 2010 to Office 2011 for MAC-later discussion) As hard as I try to carry just one device, I actually carry two now: iPad 2 and Asus EP121 with Windows 7. Again, why do I have to choose when I can use the best of both worlds?</p>
<h3>&#8220;Techy&#8221; Apps</h3>
<p>If you border on the “techy” side, there are two new players that are trying to change it up on using Office: <a href="http://desktop.onlive.com/">OnLive Desktop</a> and <a href="http://site.cloudon.com/">CloudOn</a>. CloudOn brings to the iPad a similar experience to Microsoft’s web apps. The app opens up with a version of the ribbon and familiar commands, and allows you to work on your documents in their native location. OnLive desktop takes a totally different view of working with Office files. Once you sign up for the free account, when you open the app, it appears to push down to your iPad a virtual Windows 7 desktop loaded with office. Very cool concept, it’s free, but one of the challenges I have uncovered so far is that I have to upload document to their server in order to work on them. Both of these products are fairly new, so I expect to see many more enhancements as they mature.</p>
<h3>Devices</h3>
<p>If you want to work within Office but still maintain a tablet form factor, then take a look at the <a href="http://www.asus.com/Eee/Eee_Pad/Eee_Slate_EP121">Asus EP121</a>. Mine is Windows 7 64-bit, 4 GB RAM and a 64 GB SSD hard drive that rocks. This is probably one of the best tablet devices out there, and I will be switching it to Windows 8 probably on the next update to test it out. This tablet has:</p>
<ul>
<li> Ultra-performance tablet with an Intel® Core™ i5 processor.</li>
<li>Multiple data input options (Digital Pen, Bluetooth keyboard, fingers) for increased productivity.</li>
<li>12.1&#8243; screen with a wide viewing angle and built-in high quality speakers for an excellent entertainment experience.</li>
</ul>
<p><strong>SALES NOTE</strong>: This is not an inexpensive tablet, but the OneNote capabilities are Awesome for taking client notes and synching it back to my office desktop.</p>
<h3>In Summary and other things to note:</h3>
<ul>
<li>The iPad can work with Office documents in a variety of ways, but in my opinion, a limited version, not completely taking over my desktop computer chores.</li>
<li>It can be an effective tool to do One on One PowerPoint presentations or product videos (I love this ability)</li>
<li>It can be a great place to store documents that I need to read, or maybe an easy way to carry product manuals</li>
<li>Applications to work with Microsoft Office are relatively inexpensive, but not meant to replace the office suite on your desktop.</li>
<li>On the downside, iPad can be a challenge for IT to support in the field. Not impossible, but a challenge. This support challenge will also be a topic of discussion down the road.</li>
<li><a href="http://itunes.apple.com/us/app/microsoft-onenote/id410395246?mt=8">OneNote</a>  is available on the iPad now!</li>
<li><a href="http://itunes.apple.com/us/app/microsoft-lync-2010-for-ipad/id484222449?mt=8">Lync</a> is available on iPad now too!</li>
</ul>
<p>As always, your comments are welcome, as well as sharing what works best for you. No matter what we sell, the basic concepts are the same, and using technology to solve our challenges is the direction this blog is intended for!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/sharepoint/ipad-tablets-and-office-oh-my/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sales: In the Trenches with an iPad and other Technologies</title>
		<link>http://blog.concurrency.com/sharepoint/sales-in-the-trenches-with-an-ipad-and-other-technologies/</link>
		<comments>http://blog.concurrency.com/sharepoint/sales-in-the-trenches-with-an-ipad-and-other-technologies/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 15:59:51 +0000</pubDate>
		<dc:creator>Kirk Poser</dc:creator>
				<category><![CDATA[Dynamics CRM]]></category>
		<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[Office 365]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[sales]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6866</guid>
		<description><![CDATA[iPad and other technologies in the Enterprise. As more and more C-level Executives embrace the iPad in the Enterprise, (they seem to sneak in the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>iPad and other technologies in the Enterprise.</strong><br />
As more and more C-level Executives embrace the iPad in the Enterprise, (they seem to sneak in the doors usually starting with the CEO) that adoption is beginning to rapidly flow down to the sales force. It may be in conversation only right now, but you can bet the tablet (iPad currently dominating, but Windows 8 can catch up) will be a topic of discussion in quite a few enterprises this year.</p>
<p>So what is this Blog and who is it for? The questions you may have from either a Sales Manager perspective, from a CIO or an IT Administrator, or simply from an &#8220;In the Trenches&#8221; sales person will all be addressed here on a weekly basis.</p>
<p>So what are my credentials to talk about these topics? Well, first and foremost I am in sales, and I use technology to the extreme. I also hold a MCSA certification and other technical certs so I am not just someone who has no idea what the “real World” of sales is all about, but I do understand the tech-eze. I also know how to teach people how best to use technology, as I live it day in and day out in my job. So whether you sell widgets or cars, services or software, my weekly series will address these topics from an Enterprise perspective of knowing the technology and what it can do to a sales person’s perspective of how to make this work for you.</p>
<p>I am planning on covering topics such as:</p>
<ul>
<li>Using an iPad for presentations</li>
<li>Using the iPad to sign contracts</li>
<li>Keeping up with emails</li>
<li>Company research</li>
<li>Sales automation</li>
<li>Tablet PC versus iPad</li>
<li>Getting Things Done with an iPhone or iPad</li>
<li>Are i-devices really ready for sales?</li>
<li>Technical adoption with a mature workforce</li>
<li>Can I do real work on an iPad or Tablet?</li>
<li>Tablet PC versus Laptop</li>
<li>Remote access and the iPad</li>
<li>Meeting documentation and remembering everything said in the meeting</li>
<li>What does the Cloud mean to Sales?</li>
</ul>
<p>I will also entertain specific topics that you may want me to address, so visit my Blog frequently and comment. Disclosure: I am not an expert, but I play one on a TV. But what I am is a sales guy just like you trying to make sense of technology and generating sales revenue. You interested? Leave me a post on what you would like me to address as I lay out my schedule of topics!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/sharepoint/sales-in-the-trenches-with-an-ipad-and-other-technologies/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Offline Address Book Fails to Download in Exchange 2010</title>
		<link>http://blog.concurrency.com/unified-communications/offline-address-book-fails-to-download-in-exchange-2010/</link>
		<comments>http://blog.concurrency.com/unified-communications/offline-address-book-fails-to-download-in-exchange-2010/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 05:40:43 +0000</pubDate>
		<dc:creator>Nathan Lasnoski</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Lync]]></category>
		<category><![CDATA[Unified Communications]]></category>
		<category><![CDATA[Exchange 2010 OAB]]></category>
		<category><![CDATA[Exchange 2010 OAB download fails]]></category>
		<category><![CDATA[Exchange 2010 OWA Redirection]]></category>
		<category><![CDATA[Exchange 2010 OWA Redirection OAB download fails]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6875</guid>
		<description><![CDATA[I ran into an interesting issue where the Exchange 2010 OAB failed to download to Outlook 2010, 2007, and 2003 clients.  This started after configuring Outlook Web [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into an interesting issue where the Exchange 2010 OAB failed to download to Outlook 2010, 2007, and 2003 clients.  This started after configuring Outlook Web Access redirection using the IIS HTTP redirect capability (sending &#8220;/&#8221; to &#8220;/OWA&#8221;).  In testing the issue, I attempted to browse to the OAB xml file manually through my web browser.  I noticed that I received a HTTP 500 internal server error instead of receiving the OAB xml output.   </p>
<p>&nbsp;</p>
<p><strong>I found that this was caused by the configuration of the redirect changing the security permissions on the web.config file within the OAB virtual directory.</strong>   To fix the problem, browse to the OAB virtual directory and re-add the authenticated users group to &#8220;read&#8221; and &#8220;read and execute&#8221; permissions on the web.config file. </p>
<p><strong></strong> </p>
<p><strong>Here are the corrected permissions:</strong></p>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/01/OutlookAnywhere-SecurityRights.png"><img class="alignnone  wp-image-6876" title="OutlookAnywhere-SecurityRights" src="http://blog.concurrency.com/wp-content/uploads/2012/01/OutlookAnywhere-SecurityRights.png" alt="" width="359" height="463" /></a></p>
<p>I hope this helps everyone out!</p>
<p>&nbsp;</p>
<p>Nathan Lasnoski</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/unified-communications/offline-address-book-fails-to-download-in-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Hyper-V Replica in Windows 8</title>
		<link>http://blog.concurrency.com/infrastructure/configure-hyper-v-replica-in-windows-8/</link>
		<comments>http://blog.concurrency.com/infrastructure/configure-hyper-v-replica-in-windows-8/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 06:02:45 +0000</pubDate>
		<dc:creator>Nathan Lasnoski</dc:creator>
				<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[System Center]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Configure Hyper-V Replication]]></category>
		<category><![CDATA[Configure Windows 8 Hyper-V Replica]]></category>
		<category><![CDATA[Hyper-V Replication]]></category>
		<category><![CDATA[Windows 8 Hyper-V Replica]]></category>

		<guid isPermaLink="false">http://blog.concurrency.com/?p=6849</guid>
		<description><![CDATA[I&#8217;d say that one of the features I&#8217;m most excited about in Windows 8 is Hyper-V replica.  Microsoft may not be the first to create [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d say that one of the features I&#8217;m most excited about in <strong>Windows 8 is Hyper-V replica.</strong>  Microsoft may not be the first to create every technology, but they certainly have a habit of commoditizing technologies that people used to need to purchase separately.   Hyper-V replica is another example of this, since Microsoft is including in their free hypervisor a cross-site replication tool.  <strong>The best part is that Hyper-V replica is really easy to setup.</strong>  This guide gives you a walkthrough of those steps:</p>
<p>&nbsp;</p>
<p><strong>TARGET HOST</strong></p>
<p> You will need to start by configuring the target Hyper-V host to allow itself to be a replication target.  Start by selecting to view the Hyper-V settings on the server.</p>
<p>  <a href="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureTargetHostStart.png"><img class="alignnone size-full wp-image-6850" title="Hyper-V-Replica-ConfigureTargetHostStart" src="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureTargetHostStart.png" alt="" width="281" height="401" /></a></p>
<p>&nbsp;</p>
<p>You will then configure the replication section with the replication authentication type, the port for the connection, certificate (if used), and the &#8220;allow list&#8221;.  You can select that any authenticated source can replicate to the host as well.</p>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureTargetHost.png"><img class="alignnone  wp-image-6851" title="Hyper-V-Replica-ConfigureTargetHost" src="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureTargetHost.png" alt="" width="602" height="607" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>SOURCE HOST</strong></p>
<p> Find the virtual machine you&#8217;d like to replicate.  This can be either a clustered virtual machine or a standalone virtual machine.  Select the virtual machine and choose to &#8220;enable replication&#8221;.</p>
<p>&nbsp;</p>
<p>Find the virtual machine to replicate, right click, and select &#8220;Enable Replication&#8221;.</p>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-Enable.png"><img class="alignnone  wp-image-6852" title="Hyper-V-Replica-Enable" src="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-Enable.png" alt="" width="580" height="419" /></a></p>
<p>&nbsp;</p>
<p>Start the wizard and select &#8220;Next&#8221; to continue. </p>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-BeginWizard.png"><img class="alignnone  wp-image-6853" title="Hyper-V-Replica-BeginWizard" src="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-BeginWizard.png" alt="" width="544" height="429" /></a></p>
<p>&nbsp;</p>
<p>Configure the replication target on the same port and security type of the destination server. </p>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureValidateTarget.png"><img class="alignnone  wp-image-6854" title="Hyper-V-Replica-ConfigureValidateTarget" src="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureValidateTarget.png" alt="" width="573" height="458" /></a></p>
<p>&nbsp;</p>
<p>Select the VHDs to replicate to the target.  This is typically all of the VHDs for the virtual machine.</p>
<p>&nbsp;</p>
<p><a href="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-SelectHardDisk.png"><img class="alignnone  wp-image-6855" title="Hyper-V-Replica-SelectHardDisk" src="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-SelectHardDisk.png" alt="" width="576" height="451" /></a></p>
<p>&nbsp;</p>
<p>Now… comes an awesome feature called recover history.  This allows the target system to maintain older copies of the VM that you can recover to. Select the number of intervals you want to retain on disk at the target location.</p>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureRecoveryHistory.png"><img class="alignnone  wp-image-6856" title="Hyper-V-Replica-ConfigureRecoveryHistory" src="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureRecoveryHistory.png" alt="" width="573" height="486" /></a></p>
<p>&nbsp;</p>
<p>Configure the seeding of the target server.  You can either replicate the VM to the failover site, or move it with offline media.</p>
<p> <a href="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureSeeding.png"><img class="alignnone  wp-image-6857" title="Hyper-V-Replica-ConfigureSeeding" src="http://blog.concurrency.com/wp-content/uploads/2012/01/Hyper-V-Replica-ConfigureSeeding.png" alt="" width="572" height="479" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>AFTER CONFIGURATION</strong></p>
<p> After configuration you can configure failover features, such as IP addresses and can also initiate failover.  I&#8217;ll cover those in the next blog post.</p>
<p>&nbsp;</p>
<p> I hope you are as excited about this feature as I am.  Happy replicating!</p>
<p>&nbsp;</p>
<p>Nathan Lasnoski</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.concurrency.com/infrastructure/configure-hyper-v-replica-in-windows-8/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

