<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Microsoft on The IT Hollow</title>
    <link>https://theithollow.com/tags/microsoft/</link>
    <description>Recent content in Microsoft on The IT Hollow</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 03 Oct 2016 14:10:32 +0000</lastBuildDate>
    <atom:link href="https://theithollow.com/tags/microsoft/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Azure Scale Sets</title>
      <link>https://theithollow.com/2016/10/03/azure-scale-sets/</link>
      <pubDate>Mon, 03 Oct 2016 14:10:32 +0000</pubDate>
      <guid>https://theithollow.com/2016/10/03/azure-scale-sets/</guid>
      <description>&lt;p&gt;Azure scale sets are a way to horizontally increase or decrease resources for your applications. Wouldn&amp;rsquo;t it be nice to provision a pair of web servers behind a load balancer, and then add a third or fourth web server once the load hit 75% of capacity? Even better, when the load on those web servers settles down, they could be removed to save you money? This is what an Azure scale set does. Think of the great uses for this; seasonal demand for a shopping site, event promotions that cause a short spike in traffic, or even end of the month data processing tasks could automatically scale out to meet the demand and then scale in to save money when not needed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Get Started with Azure Automation</title>
      <link>https://theithollow.com/2016/09/19/get-started-azure-automation/</link>
      <pubDate>Mon, 19 Sep 2016 14:15:50 +0000</pubDate>
      <guid>https://theithollow.com/2016/09/19/get-started-azure-automation/</guid>
      <description>&lt;p&gt;Microsoft Azure has a neat way to store and run code right from within Microsoft Azure called &amp;ldquo;Azure Automation&amp;rdquo;. If you&amp;rsquo;re familiar with Amazon&amp;rsquo;s Lambda service, Azure Automation is similar in many ways. The main difference is that in Azure, we&amp;rsquo;re working with PowerShell code instead of Python or Node.js.&lt;/p&gt;
&lt;h1 id=&#34;create-an-azure-automation-account&#34;&gt;Create An Azure Automation Account&lt;/h1&gt;
&lt;p&gt;To get started, the first thing that we need to do is to setup an Azure Automation Account. In your Azure instance, browse for &amp;ldquo;Automation Accounts&amp;rdquo; and then click Add. Give the account a name and a subscription that the PowerShell commands should run under. As with any Azure objects, select a resource group or create your own and then select a location. The last setting is to decide whether or not the account with be an &amp;ldquo;Azure Run As&amp;rdquo; account. If you select &amp;ldquo;Yes&amp;rdquo; then the account will have access to other Azure Resources within your instance. For our examples, this account should be a &amp;ldquo;run as&amp;rdquo; account.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Azure Portals</title>
      <link>https://theithollow.com/2016/09/12/microsoft-azure-portals/</link>
      <pubDate>Mon, 12 Sep 2016 14:05:06 +0000</pubDate>
      <guid>https://theithollow.com/2016/09/12/microsoft-azure-portals/</guid>
      <description>&lt;p&gt;If you&amp;rsquo;re getting started with Microsoft Azure, you may feel confused about where things are located. One of the reasons for this confusion is the current use of multiple portals. It&amp;rsquo;s hard enough to learn how subscriptions work, how to access the resources through PowerShell and all of those new concepts without having to navigate different sites. This post should shed some light on what the portals are and how they&amp;rsquo;re used.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Cloud Services</title>
      <link>https://theithollow.com/2016/09/07/azure-cloud-services/</link>
      <pubDate>Wed, 07 Sep 2016 14:00:55 +0000</pubDate>
      <guid>https://theithollow.com/2016/09/07/azure-cloud-services/</guid>
      <description>&lt;p&gt;Azure provides a Platform-as-a-Service offering called a &amp;ldquo;Cloud Service.&amp;rdquo; Instead of managing every part of a virtual machine (the middle-wear and the application) it might be desirable to only worry about the application that is being deployed. An Azure cloud service allows you to just focus on the app, but does give you access to the underlying virtual machine if you need to use it.&lt;/p&gt;
&lt;p&gt;So what makes up an Azure Cloud Service? There are two main types of virtual machines that are deployed through a cloud service; web roles and worker roles. Web roles are Windows servers with IIS installed and ready to use on them. Worker roles are Windows servers without IIS installed. In addition to the Windows instances that will be deployed, a cloud service also includes a load balancer that will automatically load balance the web roles, and an IP Address will be assigned to the load balancer. One thing to note is that the web server roles have an agent installed on them as well so that the load balancer can determine if the server is working correctly and if it needs to remove a server from the load balancer.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Network Interfaces</title>
      <link>https://theithollow.com/2016/09/06/azure-network-interfaces/</link>
      <pubDate>Tue, 06 Sep 2016 14:05:44 +0000</pubDate>
      <guid>https://theithollow.com/2016/09/06/azure-network-interfaces/</guid>
      <description>&lt;p&gt;Azure allows you to manage network interfaces as an object that can be decoupled from the virtual machine. This is important to note, because when you delete your virtual machine, the Network Interface will still be in the Azure Portal. This NIC and all of it&amp;rsquo;s settings will still exist for reuse if you wish. This would include keeping the Public IP Address that is associated with it, subnets, and Network Security Groups.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Deploying Virtual Machines in Microsoft Azure</title>
      <link>https://theithollow.com/2016/08/23/deploying-virtual-machines-microsoft-azure/</link>
      <pubDate>Tue, 23 Aug 2016 14:01:28 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/23/deploying-virtual-machines-microsoft-azure/</guid>
      <description>&lt;p&gt;Congratulations! If you&amp;rsquo;ve made it this far in the &lt;a href=&#34;https://theithollow.com/2016/07/18/guide-getting-started-azure/&#34;&gt;Microsoft Azure Series&lt;/a&gt;, you&amp;rsquo;re finally ready to start deploying virtual machines in Microsoft Azure. Let&amp;rsquo;s face it, the whole series has led up to this post because most of you are probably looking at getting started in Azure with the virtual machine. It&amp;rsquo;s familiar and can house applications, databases, data or whatever you&amp;rsquo;ve been housing in in your on premises data center. If you&amp;rsquo;re trying to benchmark Azure with you&amp;rsquo;re own data center apps, virtual machines are probably where you&amp;rsquo;ll spend your time. As you learn more about the the platform, Azure&amp;rsquo;s PaaS offerings might be more heavily used to prevent you from having to manage those pesky operating systems but for now we&amp;rsquo;re focusing on the VM.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Install PowerShell on Mac</title>
      <link>https://theithollow.com/2016/08/22/install-powershell-mac/</link>
      <pubDate>Mon, 22 Aug 2016 14:10:58 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/22/install-powershell-mac/</guid>
      <description>&lt;p&gt;It&amp;rsquo;s a weird thing to say, but we can install PowerShell on Mac after the &lt;a href=&#34;https://azure.microsoft.com/en-us/blog/powershell-is-open-sourced-and-is-available-on-linux/&#34;&gt;announcement from Microsoft&lt;/a&gt; that PowerShell will be available for both Macintosh and Linux. It&amp;rsquo;s pretty easy to accomplish but having a great scripting language like PowerShell available for Mac is really cool and deserves a blog post. I mean, now I don&amp;rsquo;t even need to fire up my Windows virtual machine just to run PowerShell!&lt;/p&gt;
&lt;p&gt;To get started, download the OSX .pkg file from the github page: &lt;a href=&#34;https://github.com/PowerShell/PowerShell/releases/&#34;&gt;https://github.com/PowerShell/PowerShell/releases/&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Get Started with Azure PowerShell</title>
      <link>https://theithollow.com/2016/08/15/get-started-azure-powershell/</link>
      <pubDate>Mon, 15 Aug 2016 14:35:02 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/15/get-started-azure-powershell/</guid>
      <description>&lt;p&gt;Microsoft Azure has its own command line that can be used to script installs, export and import configurations and query your portal for information. Being a Microsoft solution, this command line is accessed through PowerShell.&lt;/p&gt;
&lt;h1 id=&#34;install-azure-powershell&#34;&gt;Install Azure PowerShell&lt;/h1&gt;
&lt;p&gt;Using PowerShell with Microsoft Azure is pretty simple to get up and going. The first step to getting started is to install the Azure PowerShell modules. Open up your PowerShell console and run both &amp;ldquo;Install-Module AzureRM&amp;rdquo; and then &amp;ldquo;Install-Module Azure&amp;rdquo;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Storage Accounts</title>
      <link>https://theithollow.com/2016/08/11/azure-storage-accounts/</link>
      <pubDate>Thu, 11 Aug 2016 14:05:47 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/11/azure-storage-accounts/</guid>
      <description>&lt;p&gt;Azure storage accounts provide a namespace in which to store data objects. These objects could be blobs, file, tables, queues and virtual machine disks. This post focuses on the pieces necessary to create a new storage account for use within Azure Resource Manager portal.&lt;/p&gt;
&lt;h1 id=&#34;setup&#34;&gt;Setup&lt;/h1&gt;
&lt;p&gt;To setup a storage account go to the Azure Resource Manager Portal, select storage accounts and then click the &amp;ldquo;Add&amp;rdquo; button. From there you&amp;rsquo;ll have some familiar settings that will need to be filled out such as a unique name for the account, a subscription to use for billing, a resource group for management, and a location for the region to be used. The rest of this article explains the additional settings shown in the screenshot below.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Create Azure VPN Connection</title>
      <link>https://theithollow.com/2016/08/08/create-azure-vpn-connection/</link>
      <pubDate>Mon, 08 Aug 2016 14:05:37 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/08/create-azure-vpn-connection/</guid>
      <description>&lt;p&gt;Unless you&amp;rsquo;re starting up a company from scratch, you probably won&amp;rsquo;t host all of your workloads in a public cloud like Microsoft Azure. If you&amp;rsquo;re building a hybrid cloud, you probably want to have network connectivity between the two clouds and that means a VPN. Microsoft Azure uses a Virtual Network Gateway to provide this connectivity.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;NOTE: As of the writing of this blog post, Microsoft has two portals that can be used to provide cloud resources. The Classic portal and the Azure Resource Manager portal. This post focuses on setting up a VPN tunnel using the new Azure Resource Manager portal.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Network Security Groups</title>
      <link>https://theithollow.com/2016/08/03/azure-network-security-groups/</link>
      <pubDate>Wed, 03 Aug 2016 14:05:32 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/03/azure-network-security-groups/</guid>
      <description>&lt;p&gt;An Azure network security group is your one stop shop for access control lists. Azure NSGs are how you will block or allow traffic from entering or exiting your subnets or individual virtual machines. In the new Azure Resource Manager Portal NSGs are applied to either a subnet or a virtual NIC of a virtual machine, and not the entire machine itself.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;NOTE: At the time of this post, Azure has a pair of Azure portals, including the classic portal where NSGs are applied to a virtual machine, or the Resource Manager Portal where NSGs are applied to a VNic of a virtual machine.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Setup Azure Networks</title>
      <link>https://theithollow.com/2016/08/01/setup-azure-networks/</link>
      <pubDate>Mon, 01 Aug 2016 14:05:16 +0000</pubDate>
      <guid>https://theithollow.com/2016/08/01/setup-azure-networks/</guid>
      <description>&lt;p&gt;Setting up networks in Microsoft Azure is pretty simple task, but care should be taken when deciding how the address space will be carved out. To get started lets cover a couple of concepts about how Azure handles networking. To start we have the idea of a &amp;ldquo;VNet&amp;rdquo; which is the IP space that will be assigned to smaller subnets. These VNets are isolated from each other and the outside world. If you want your VNet to communicate with another VNet or your on-premises networks, you&amp;rsquo;ll need to setup a VPN tunnel. You might be wondering, how do you do any segmentation between servers without having to setup a VPN then? The answer there is using subnets. Multiple subnets can be created inside of a VNet and security groups can be added to them so that they only allow certain traffic, sort of like a firewall does.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Guide to Getting Started with Azure</title>
      <link>https://theithollow.com/2016/07/18/guide-getting-started-azure/</link>
      <pubDate>Mon, 18 Jul 2016 15:01:24 +0000</pubDate>
      <guid>https://theithollow.com/2016/07/18/guide-getting-started-azure/</guid>
      <description>&lt;p&gt;Following the posts in order, this guide should help you to understand and get familiar with Microsoft Azure. This is a guide to getting started with Azure that you can build upon to deploy your own public cloud environment. &lt;a href=&#34;https://assets.theithollow.com/wp-content/uploads/2016/07/Azure-Guide.png&#34;&gt;&lt;img alt=&#34;Azure Guide&#34; loading=&#34;lazy&#34; src=&#34;https://assets.theithollow.com/wp-content/uploads/2016/07/Azure-Guide.png&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h1 id=&#34;azure-accounts-and-subscriptions&#34;&gt;&lt;a href=&#34;http://wp.me/p32uaN-1J8&#34;&gt;Azure Accounts and Subscriptions&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;azure-active-directory-integration&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/06/27/setup-azure-ad-connector/&#34;&gt;Azure Active Directory Integration&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;azureresource-groups&#34;&gt;&lt;a href=&#34;http://wp.me/p32uaN-1Iz&#34;&gt;Azure Resource Groups&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;setup-azure-networks&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/08/01/setup-azure-networks/&#34;&gt;Setup Azure Networks&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;azure-network-security-groups&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/08/03/azure-network-security-groups/&#34;&gt;Azure Network Security Groups&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;createazure-vpnconnection&#34;&gt;&lt;a href=&#34;http://wp.me/p32uaN-1In&#34;&gt;Create Azure VPN Connection&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;azure-storage-accounts&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/08/11/azure-storage-accounts/&#34;&gt;Azure Storage Accounts&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;setup-azure-powershell&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/08/15/get-started-azure-powershell/&#34;&gt;Setup Azure PowerShell&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;azure-virtual-machine-deployment&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/08/23/deploying-virtual-machines-microsoft-azure/&#34;&gt;Azure Virtual Machine Deployment&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;azure-network-interfaces&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/09/06/azure-network-interfaces/&#34;&gt;Azure Network Interfaces&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;azure-cloud-services&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/09/07/azure-cloud-services/&#34;&gt;Azure Cloud Services&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;azure-scale-sets&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/10/03/azure-scale-sets/&#34;&gt;Azure Scale Sets&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;understanding-the-multiple-azure-portals&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/09/12/microsoft-azure-portals/&#34;&gt;Understanding the Multiple Azure Portals&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;using-azure-automation&#34;&gt;&lt;a href=&#34;https://theithollow.com/2016/09/19/get-started-azure-automation/&#34;&gt;Using Azure Automation&lt;/a&gt;&lt;/h1&gt;
&lt;h1 id=&#34;microsoft-azure-official-links&#34;&gt;Microsoft Azure Official Links&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;Azure Resource Manager Portal -&lt;/strong&gt; &lt;a href=&#34;https://portal.azure.com&#34;&gt;https://portal.azure.com&lt;/a&gt; &lt;strong&gt;Azure Classic Portal&lt;/strong&gt; - &lt;a href=&#34;http://manage.windowsazure.com&#34;&gt;http://manage.windowsazure.com&lt;/a&gt; &lt;strong&gt;Microsoft Azure Documentation and Resources -&lt;/strong&gt; &lt;a href=&#34;https://azure.microsoft.com&#34;&gt;https://azure.microsoft.com&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Resource Groups</title>
      <link>https://theithollow.com/2016/07/18/azure-resource-groups/</link>
      <pubDate>Mon, 18 Jul 2016 14:05:36 +0000</pubDate>
      <guid>https://theithollow.com/2016/07/18/azure-resource-groups/</guid>
      <description>&lt;p&gt;An Azure resource group is a way for you to, you guessed it, group a set of resources together. This is a useful capability in a public cloud so that you can manage permissions, set alerts, built deployment templates and audit logs on a subset of resources. Resource groups can contain, virtual machines, gateways, VNets, VPNs and about any other resource Azure can deploy.&lt;/p&gt;
&lt;p&gt;Most items that you create will need to belong to a resource group but an item can only belong to a single resource group at a time. Resources can be moved from one resource group to another.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Azure Subscriptions</title>
      <link>https://theithollow.com/2016/07/11/azure-subscriptions/</link>
      <pubDate>Mon, 11 Jul 2016 14:12:30 +0000</pubDate>
      <guid>https://theithollow.com/2016/07/11/azure-subscriptions/</guid>
      <description>&lt;p&gt;Azure is a great reservoir of resources that your organization can use to deploy applications upon and the cloud is focused around pooling resources together. However, organizations need to be able to split resources up based on cost centers. The development team will be using resources for building new apps, as well as maybe an e-commerce team for production uses. Subscriptions allow for a single Azure instance to separate these costs, and bill to different teams.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Dynamic Access Control (Part 1)</title>
      <link>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-1/</link>
      <pubDate>Mon, 28 Apr 2014 13:05:45 +0000</pubDate>
      <guid>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-1/</guid>
      <description>&lt;p&gt;&lt;img alt=&#34;Locked&#34; loading=&#34;lazy&#34; src=&#34;https://assets.theithollow.com/wp-content/uploads/2014/01/Locked-300x242.png&#34;&gt;&lt;/p&gt;
&lt;p&gt;Microsoft Dynamic Access Control is a new way to deploy access rules to your file shares.  For many moons now, System Administrators have had a tedious task of managing tens, hundreds, or thousands of security groups to control how files are accessed.&lt;/p&gt;
&lt;p&gt;Groups of users have always needed to maintain different sets of security rules to prevent people from accessing confidential files.  Human Resources obviously doesn&amp;rsquo;t want people outside their department to have access to personnel files, separate office locations may not want to share data with other offices in the same domain, and countries or cities might have different restrictions about sharing files with each other.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Dynamic Access Control (Part 2 - Claims)</title>
      <link>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-2-claims/</link>
      <pubDate>Mon, 28 Apr 2014 13:04:52 +0000</pubDate>
      <guid>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-2-claims/</guid>
      <description>&lt;p&gt;In &lt;a href=&#34;http://wp.me/p32uaN-NX&#34;&gt;part 1 of the series&lt;/a&gt; we covered some generalities about Microsoft Dynamic Access Control and a few steps needed to prepare the domain and file servers.  Now let&amp;rsquo;s look at creating claims.&lt;/p&gt;
&lt;p&gt;A claim is a user, device or resource property.  A user in Active Directory will have properties such as Location, Department, manager, etc.  Each of these properties is a claim but for any actions to be utilized by Direct Access, they have to be defined.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Dynamic Access Control (Part 3 – Resource Properties)</title>
      <link>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-3-resource-properties/</link>
      <pubDate>Mon, 28 Apr 2014 13:03:00 +0000</pubDate>
      <guid>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-3-resource-properties/</guid>
      <description>&lt;p&gt;So far we&amp;rsquo;ve covered:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;http://wp.me/p32uaN-NX&#34;&gt;Initial Setup of Dynamic Access Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://wp.me/p32uaN-O2&#34;&gt;Claims&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In this post we&amp;rsquo;ll look at Resource Properties.&lt;/p&gt;
&lt;h1 id=&#34;resource-properties&#34;&gt;Resource Properties&lt;/h1&gt;
&lt;p&gt;A resource property is a claim that describes the characteristics of an object in the file system.  A claim is a descriptor of a user or a device whereas a resource property is a characteristic of a file or folder.&lt;/p&gt;
&lt;p&gt;As an example, we have a folder with HIPPA related information in it.  A description can be added to this folder to indicate that it has Protected Health Information (PHI) contained in that folder.  This PHI description is a resource property.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Dynamic Access Control (Part 4 – Rules and Policies)</title>
      <link>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-4-rules-policies/</link>
      <pubDate>Mon, 28 Apr 2014 13:01:47 +0000</pubDate>
      <guid>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-4-rules-policies/</guid>
      <description>&lt;p&gt;We&amp;rsquo;ve discussed &lt;a href=&#34;http://wp.me/p32uaN-NX&#34;&gt;Initial configuration steps&lt;/a&gt;, &lt;a href=&#34;http://wp.me/p32uaN-O2&#34;&gt;Claims&lt;/a&gt;, and &lt;a href=&#34;http://wp.me/p32uaN-Oi&#34;&gt;Resource Properties&lt;/a&gt; and we&amp;rsquo;re starting to see the power of Microsoft&amp;rsquo;s Dynamic Access Control, but we need a better way to manage these and that&amp;rsquo;s why we&amp;rsquo;ve come to &amp;ldquo;Rules and Policies&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;A Central Access Rule can be used to take claims such as users in a department and match them up with permissions on a filefolder with specific resource properties.  This is where the real power comes into play because now we don&amp;rsquo;t have to go through and map these for each individual file.  We&amp;rsquo;re setting a general policy for the entire organization all at once.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Dynamic Access Control (Part 5 - Auto Classification)</title>
      <link>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-5-auto-classification/</link>
      <pubDate>Mon, 28 Apr 2014 13:00:33 +0000</pubDate>
      <guid>https://theithollow.com/2014/04/28/microsoft-dynamic-access-control-part-5-auto-classification/</guid>
      <description>&lt;p&gt;In the first four parts of the Dynamic Access Control Series we covered &lt;a href=&#34;http://wp.me/p32uaN-NX&#34;&gt;Initial Configurations&lt;/a&gt;, &lt;a href=&#34;http://wp.me/p32uaN-O2&#34;&gt;Claims&lt;/a&gt;, &lt;a href=&#34;http://wp.me/p32uaN-Oi&#34;&gt;Resource Properties&lt;/a&gt; and &lt;a href=&#34;http://wp.me/p32uaN-Ox&#34;&gt;Rules Policies&lt;/a&gt;.  These are working great in our environment but we still have to go through and manage the classification tags.  Wouldn&amp;rsquo;t it be easier to have some files automatically tagged with a certain resource classification?&lt;/p&gt;
&lt;p&gt;Enter File Server Resource Manager to the rescue!&lt;/p&gt;
&lt;h1 id=&#34;classification-rules&#34;&gt;Classification Rules&lt;/h1&gt;
&lt;p&gt;From within File Server Resource Manager (FSRM) go to Classification Rules and choose to &amp;ldquo;Create Classification Rule&amp;hellip;&amp;rdquo;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft IPAM (IP Address Management)</title>
      <link>https://theithollow.com/2014/02/04/microsoft-ipam-ip-address-management/</link>
      <pubDate>Tue, 04 Feb 2014 13:30:12 +0000</pubDate>
      <guid>https://theithollow.com/2014/02/04/microsoft-ipam-ip-address-management/</guid>
      <description>&lt;p&gt;Microsoft IPAM (IP Address Management) is a feature that was released in Windows Server 2012 to help administrators manage decentralized DHCP and DNS Servers.  Previously administrators may have needed to use spreadsheets to keep track of DHCP Scopes, IP Addresses DNS Names etc but with IPAM installed, a single server can refresh all of this data and put it in a single, always up to date place.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Deployment Guidelines&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;There are a few things you should know before installing IPAM.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Is Microsoft Direct Access the new VPN?</title>
      <link>https://theithollow.com/2014/01/22/microsoft-direct-access-vpn/</link>
      <pubDate>Wed, 22 Jan 2014 15:43:00 +0000</pubDate>
      <guid>https://theithollow.com/2014/01/22/microsoft-direct-access-vpn/</guid>
      <description>&lt;p&gt;Mobility is no longer a challenge to traditional IT environments, it&amp;rsquo;s the standard.  Users work from home to save office space, need to be connected during sales trips and are consistently not in the corporate office connected to the local area network (LAN).  Combine this demand for a mobile workforce with the ever increasing security requirements put forth such as HIPPA and PCI-DSS etc make this a significant hurdle for IT departments.  Microsoft Direct Access may be a solution that eases this hardship.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Offline Domain Join</title>
      <link>https://theithollow.com/2014/01/20/microsoft-offline-domain-join/</link>
      <pubDate>Mon, 20 Jan 2014 14:13:13 +0000</pubDate>
      <guid>https://theithollow.com/2014/01/20/microsoft-offline-domain-join/</guid>
      <description>&lt;p&gt;These days, companies are dealing more with mobility, than ever before.  IT infrastructure is now spread out in the cloud, and users may be working from the road, remote offices or from home.  This is making it more difficult to manage a secure IT Infrastructure.&lt;/p&gt;
&lt;p&gt;Microsoft is taking steps to allow IT Administrators to start controlling machines even when they aren&amp;rsquo;t connected to a corporate infrastructure.  Microsoft &lt;a href=&#34;http://technet.microsoft.com/en-us/library/ff793312.aspx&#34;&gt;Offline Domain Join&lt;/a&gt; was released as a new feature with Windows Server 2008 R2.  This feature allows a machine that is not directly connected to a network with Active Directory, to be joined anyway.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft&amp;#039;s Resilient File System (ReFS)</title>
      <link>https://theithollow.com/2014/01/13/microsofts-resilient-file-system-refs/</link>
      <pubDate>Mon, 13 Jan 2014 14:30:52 +0000</pubDate>
      <guid>https://theithollow.com/2014/01/13/microsofts-resilient-file-system-refs/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://assets.theithollow.com/wp-content/uploads/2013/12/2551.jpg&#34;&gt;&lt;img alt=&#34;BankerBox&#34; loading=&#34;lazy&#34; src=&#34;https://assets.theithollow.com/wp-content/uploads/2013/12/2551.jpg&#34;&gt;&lt;/a&gt; Microsoft has a new file system designed to increase data integrity, scalability and availability called the Resilient File System (ReFS).  This file system has leveraged many of the NTFS file system goodies and expanded them to make it more scalable and prevent corruptions.  ReFS was released with Server 2012 and at the moment is designed for use with file shares.  It cannot be used as a boot volume at the present time, but this file system seems poised to replace NTFS down the road.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Storage Spaces</title>
      <link>https://theithollow.com/2014/01/06/microsoft-storage-spaces/</link>
      <pubDate>Mon, 06 Jan 2014 14:15:25 +0000</pubDate>
      <guid>https://theithollow.com/2014/01/06/microsoft-storage-spaces/</guid>
      <description>&lt;p&gt;Microsoft &lt;a href=&#34;https://social.technet.microsoft.com/wiki/contents/articles/15198.storage-spaces-overview.aspx&#34;&gt;Storage Spaces&lt;/a&gt; feature used to handle data redundancy, scalability and performance.  Storage Spaces takes a set of &lt;a href=&#34;http://en.wikipedia.org/wiki/Non-RAID_drive_architectures&#34;&gt;Just a Bunch of Disks (JBOD)&lt;/a&gt; and pairs them together to allow for; either failures of a disk, gaining the performance of multiple spindles, or gaining the space of multiple disks.  Traditionally this has all been handled by creating a &lt;a href=&#34;http://en.wikipedia.org/wiki/RAID&#34;&gt;Redundant Array of Independent Disks&lt;/a&gt; (RAID) group.  Some examples of RAID would be:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Striping (RAID 0)&lt;/li&gt;
&lt;li&gt;Mirroring (RAID 1)&lt;/li&gt;
&lt;li&gt;Parity (RAID 5 or 6)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Storage Spaces create a similar type of RAID Group but then throw a virtual disk on top of them so that multiple types of stripes can be used on the same disks.  For example, three physical disks can be put into a storage space.  From there, three separate types of VDISKs can be created, Mirrored, Spanned and Parity can then be placed on the same set of disks with no issue.  The diagram below shows an example.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Active Directory Snapshot</title>
      <link>https://theithollow.com/2013/12/16/active-directory-snapshot/</link>
      <pubDate>Mon, 16 Dec 2013 14:15:11 +0000</pubDate>
      <guid>https://theithollow.com/2013/12/16/active-directory-snapshot/</guid>
      <description>&lt;p&gt;Active Directory (AD) is the base of most enterprise level infrastructures and has been for some time.  We have become accustomed to seeing this structure and depending on it.  But AD has been a thorn in our side since virtualization has become popular due to the inability to take snapshots.  This is no longer the case if your shop is running Windows Server 2012 with Active Directory.&lt;/p&gt;
&lt;p&gt;With the release of Active Directory 2012, Microsoft has added a new object called the VM GenerationID that allows us to snapshot AD Servers.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Windows Server 2012 as a Storage Device for vSphere Home Lab</title>
      <link>https://theithollow.com/2013/09/24/windows-server-2012-as-a-storage-device-for-vsphere-home-lab/</link>
      <pubDate>Tue, 24 Sep 2013 13:30:39 +0000</pubDate>
      <guid>https://theithollow.com/2013/09/24/windows-server-2012-as-a-storage-device-for-vsphere-home-lab/</guid>
      <description>&lt;p&gt;If you&amp;rsquo;ve got a some hardware lying around for your lab, Windows Server 2012 may be a great solution for a home storage device.  You can now do both block (iSCSI) and NAS (NFS) on the same server, as well as having an OS to install some management apps on it.  In my lab, I use this management server to run Veeam for my backups, PRTG network monitor for bandwidth tracking, as well as using this server for both iSCSI targets and NFS mounts.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Windows Server 2012 Server Groups</title>
      <link>https://theithollow.com/2013/05/20/windows-server-2012-server-groups/</link>
      <pubDate>Mon, 20 May 2013 13:12:29 +0000</pubDate>
      <guid>https://theithollow.com/2013/05/20/windows-server-2012-server-groups/</guid>
      <description>&lt;p&gt;One of the new features in the latest version of Windows Server is the ability to create server groups.  When you open the server manager you&amp;rsquo;ll see some server group options on the dashboard.  You can add other servers to manage, or create a new group.  Also, pay attention to the &amp;ldquo;Roles and Server Groups&amp;rdquo; section at the bottom of the screen which shows some of the server groups that were already set up.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Exchange 2010 to Exchange 2013 Transition (part 1)</title>
      <link>https://theithollow.com/2013/04/29/microsoft-exchange-2010-to-exchange-2013-transition-part-1/</link>
      <pubDate>Mon, 29 Apr 2013 12:03:44 +0000</pubDate>
      <guid>https://theithollow.com/2013/04/29/microsoft-exchange-2010-to-exchange-2013-transition-part-1/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://assets.theithollow.com/wp-content/uploads/2013/04/R2D2Mailbox.jpg&#34;&gt;&lt;img alt=&#34;R2D2Mailbox&#34; loading=&#34;lazy&#34; src=&#34;https://assets.theithollow.com/wp-content/uploads/2013/04/R2D2Mailbox-150x150.jpg&#34;&gt;&lt;/a&gt;   Microsoft has made the Exchange 2013 transition from Exchange 2010 a bit easier than it was in the past.  This article should help to explain the process.&lt;/p&gt;
&lt;h1 id=&#34;prerequisites&#34;&gt;Prerequisites&lt;/h1&gt;
&lt;p&gt;Before you begin with this endeavor:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Make sure that your Exchange 2010 infrastructure has been patched to &lt;a href=&#34;http://www.microsoft.com/en-us/download/details.aspx?id=36768&#34;&gt;Exchange Service Pack 3&lt;/a&gt;, this includes Edge transport servers, Client Access Servers, Hub Transport Servers and Mailbox Servers.  This service pack is required for the coexistence period with Exchange 2013 as noted in the &lt;a href=&#34;http://blogs.technet.com/b/exchange/archive/2013/02/12/released-exchange-server-2010-sp3.aspx&#34;&gt;Exchange Team&amp;rsquo;s Blog&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Say goodbye to Exchange 2003.  You can not have Exchange 2003 in your organization any longer.&lt;/li&gt;
&lt;li&gt;Check your DNS Server and Event logs for errors.  It&amp;rsquo;s unlikely that you had DNS errors before an upgrade that you didn&amp;rsquo;t already know about but it&amp;rsquo;s certainly worth taking a look just to check.  A few minutes of discovery is well worth not having hours of troubleshooting afterwards.&lt;/li&gt;
&lt;li&gt;Plan your Exchange 2013 infrastructure.  This article only explains the transition steps, but you should research and understand what your infrastructure should look like before you start a migration.  Do you have multiple sites that need High Availability?  Do you need multiple Exchange servers in a Database Availability Group?  Do you need to separate your Client Access Server from your Mailbox Server for performance or management reasons, or can you put them on the same box?  How many different Mailbox databases should you have?  These are important design considerations.&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&#34;licensing&#34;&gt;Licensing&lt;/h1&gt;
&lt;p&gt;There are two flavors of Exchange 2013.  Standard allows for up to five mailbox databases, and Enterprise allows for up to 50.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Exchange 2010 to Exchange 2013 Transition (part 2)</title>
      <link>https://theithollow.com/2013/04/29/microsoft-exchange-2010-to-exchange-2013-transition-part-2/</link>
      <pubDate>Mon, 29 Apr 2013 12:02:47 +0000</pubDate>
      <guid>https://theithollow.com/2013/04/29/microsoft-exchange-2010-to-exchange-2013-transition-part-2/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://assets.theithollow.com/wp-content/uploads/2013/04/R2D2Mailbox.jpg&#34;&gt;&lt;img alt=&#34;R2D2Mailbox&#34; loading=&#34;lazy&#34; src=&#34;https://assets.theithollow.com/wp-content/uploads/2013/04/R2D2Mailbox-150x150.jpg&#34;&gt;&lt;/a&gt;&lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-1/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 1)&#34;&gt;Microsoft Exchange 2010 to Exchange 2013 Transition part 1&lt;/a&gt; &lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-3/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 3)&#34;&gt;Microsoft Exchange 2010 to Exchange 2013 Transition part 3&lt;/a&gt; &lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-4/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 4)&#34;&gt;Microsoft Exchange 2010 to Exchange 2013 Transition part 4&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I assume you&amp;rsquo;ve reached this page because you finished ready &lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-1/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 1)&#34;&gt;part 1&lt;/a&gt; and are now ready to dive into your newly installed Exchange 2013 server.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Exchange 2010 to Exchange 2013 Transition (part 3)</title>
      <link>https://theithollow.com/2013/04/29/microsoft-exchange-2010-to-exchange-2013-transition-part-3/</link>
      <pubDate>Mon, 29 Apr 2013 12:01:45 +0000</pubDate>
      <guid>https://theithollow.com/2013/04/29/microsoft-exchange-2010-to-exchange-2013-transition-part-3/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://assets.theithollow.com/wp-content/uploads/2013/04/R2D2Mailbox.jpg&#34;&gt;&lt;img alt=&#34;R2D2Mailbox&#34; loading=&#34;lazy&#34; src=&#34;https://assets.theithollow.com/wp-content/uploads/2013/04/R2D2Mailbox-150x150.jpg&#34;&gt;&lt;/a&gt;&lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-1/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 1)&#34;&gt;Microsoft Exchange 2010 to Exchange 2013 Transition part 1&lt;/a&gt; &lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-2/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 2)&#34;&gt;Microsoft Exchange 2010 to Exchange 2013 Transition part 2&lt;/a&gt; &lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-4/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 4)&#34;&gt;Microsoft Exchange 2010 to Exchange 2013 Transition part 4&lt;/a&gt;&lt;/p&gt;
&lt;h1 id=&#34;migrate-mailboxes&#34;&gt;Migrate Mailboxes&lt;/h1&gt;
&lt;p&gt;You&amp;rsquo;re ready to migrate your mailboxes!  Go to the Recipient link, mailbox category and choose the mailbox(es) you want to migrate.  I&amp;rsquo;ll be migrating &lt;a href=&#34;mailto:Ferb@hollow.lab&#34;&gt;Ferb@hollow.lab&lt;/a&gt; to the new servers.  Click &amp;ldquo;To another database&amp;rdquo; action on the lower right hand side of the menu.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Microsoft Exchange 2010 to Exchange 2013 Transition (part 4)</title>
      <link>https://theithollow.com/2013/04/29/microsoft-exchange-2010-to-exchange-2013-transition-part-4/</link>
      <pubDate>Mon, 29 Apr 2013 12:00:57 +0000</pubDate>
      <guid>https://theithollow.com/2013/04/29/microsoft-exchange-2010-to-exchange-2013-transition-part-4/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://assets.theithollow.com/wp-content/uploads/2013/04/R2D2Mailbox.jpg&#34;&gt;&lt;img alt=&#34;R2D2Mailbox&#34; loading=&#34;lazy&#34; src=&#34;https://assets.theithollow.com/wp-content/uploads/2013/04/R2D2Mailbox-225x300.jpg&#34;&gt;&lt;/a&gt;&lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-1/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 1)&#34;&gt;Microsoft Exchange 2010 to Exchange 2013 Transition Part 1&lt;/a&gt; &lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-2/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 2)&#34;&gt;Microsoft Exchange 2010 to Exchange 2013 Transition Part 2&lt;/a&gt; &lt;a href=&#34;https://theithollow.com/2013/04/microsoft-exchange-2010-to-exchange-2013-transition-part-3/&#34; title=&#34;Microsoft Exchange 2010 to Exchange 2013 Transition (part 3)&#34;&gt;Microsoft Exchange 2010 to Exchange 2013 Transition Part 3&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I want to take a second to explain that this series of posts on how to migrate to Exchange 2013 didn&amp;rsquo;t come without it&amp;rsquo;s share of difficulties.&lt;/p&gt;</description>
    </item>
    <item>
      <title>NLB in vSphere (Unicast or Multicast)?</title>
      <link>https://theithollow.com/2012/05/08/nlb-in-vsphere-unicast-or-multicast/</link>
      <pubDate>Tue, 08 May 2012 18:37:56 +0000</pubDate>
      <guid>https://theithollow.com/2012/05/08/nlb-in-vsphere-unicast-or-multicast/</guid>
      <description>&lt;p&gt;Suppose you have multiple virtual machines that you would like to distribute load across that are housed inside of your virtual environment.  How do we go about setting up Network Load Balancing so that it will still work with things like DRS and VMotion?&lt;/p&gt;
&lt;h2 id=&#34;switch-refresher&#34;&gt;Switch Refresher&lt;/h2&gt;
&lt;p&gt;In most networks we have switches that listen for MAC addresses and store them in their MAC Address Table for future use.  If a switch receives a request and it knows which port the destination MAC address is associated with, it will forward that request out the single port.  If a switch doesn&amp;rsquo;t know which port a MAC Address is associated with, it will basically send that frame out all of it&amp;rsquo;s ports (known as flooding) so that the destination can hopefully still receive it.    This is why we&amp;rsquo;ve moved away from hubs and moved towards switches.  Hubs will flood everything because they don&amp;rsquo;t keep track of the MAC Addresses.  You can see how this extra traffic on the network is unwanted.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
