<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>chrisbmn.com — Informational</title>
    <link>https://chrisbmn.com/blog/category/informational/</link>
    <description>Providing information on something either here or on another site.</description>
    <language>en-us</language>
    <lastBuildDate>Mon, 24 Aug 2026 04:13:05 -0500</lastBuildDate>
    <generator>chrisbmn custom blog</generator>
    <atom:link href="https://chrisbmn.com/blog/rss/informational/" rel="self" type="application/rss+xml"/>

        <item>
      <title>A test post showing markup in my posts using Prism.css</title>
      <link>https://chrisbmn.com/blog/a-test-post-showing-markup-in-my-posts-using-prismcss/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/a-test-post-showing-markup-in-my-posts-using-prismcss/</guid>
      <pubDate>Tue, 05 May 2026 14:31:12 -0500</pubDate>
      <description><![CDATA[Some tests of the prism js and css implementation here on the new blog to check formatting.]]></description>
      <content:encoded><![CDATA[<p><strong>Bash</strong></p>
<pre class="language-bash"><code>/usr/local/bin&gt; cd /i/am/a/banana
/i/am/a/banana&gt; cd -
/usr/local/bin&gt;</code></pre>
<p><strong>Powershell</strong></p>
<pre class="language-powershell"><code>if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
    $scriptPath = $myinvocation.mycommand.path
    Start-Process pwsh -Verb runAs -ArgumentList "-File $scriptPath"
    exit
}</code></pre>
<p><strong>PHP&nbsp;</strong></p>
<pre class="language-php"><code>&lt;?php
    $images = require 'images_array.php';
    echo $images[array_rand($images)];
?&gt;</code></pre>
<p><strong>TypeScript</strong></p>
<pre class="language-typescript"><code>export const shuffle = &lt;T&gt;(arr: T[]): T[] =&gt;
  arr
    .map((a) =&gt; ({ sort: Math.random(), value: a }))
    .sort((a, b) =&gt; a.sort - b.sort)
    .map((a) =&gt; a.value);</code></pre>
<p><strong>Python</strong></p>
<pre class="language-python"><code>found = False
for x in sequence:
    if pred(x.n):
        found = True
if found:</code></pre>
<p><strong>SQL</strong></p>
<pre class="language-sql"><code>SELECT @randomString = CONVERT(varchar(255), NEWID())
   </code></pre>
<p><strong>YAML</strong></p>
<pre class="language-yaml"><code>person:
  name: "Alice"
  age: 30
  hobbies:
    - "reading"
    - "coding"
  address:
    city: "Tech City"
    zip: "12345"</code></pre>
<p><strong>HTML</strong></p>
<pre class="language-markup"><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;body&gt;

&lt;h2&gt;Random Number Generator&lt;/h2&gt;
&lt;p&gt;Click the button to generate a random number between 0 and 9.&lt;/p&gt;

&lt;button onclick="generateRandom()"&gt;Generate Random Number&lt;/button&gt;
&lt;p id="demo"&gt;&lt;/p&gt;

&lt;script&gt;
function generateRandom() {
    document.getElementById("demo").innerHTML = Math.floor(Math.random() * 10);
}
&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;</code></pre>
<p><strong>CSS</strong></p>
<pre class="language-css"><code>:root {
  --primary-color: #007bff;
  --font-size: 16px;
}

.button {
  background-color: var(--primary-color);
  font-size: var(--font-size);
}</code></pre>
<p><strong>Plain Text</strong></p>
<pre class="language-none"><code>A common example of a small, plain text code snippet for generating dummy text is using the RAND function in Microsoft Word. This feature allows users to quickly generate random paragraphs of filler text (like Lorem Ipsum) for layout testing or formatting practice without needing to type manually.</code></pre>]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>I Built a Web Tools Site (And It Got a Little Out of Hand)</title>
      <link>https://chrisbmn.com/blog/i-built-a-web-tools-site-and-it-got-a-little-out-of-hand/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/i-built-a-web-tools-site-and-it-got-a-little-out-of-hand/</guid>
      <pubDate>Wed, 29 Apr 2026 12:43:00 -0500</pubDate>
      <description><![CDATA[What started as a couple of quick IT utilities quietly turned into 30+ tools. Here's what's on tools.chrisbmn.com and why I built it.]]></description>
      <content:encoded><![CDATA[<p>I have a bad habit of building tools instead of just Googling things.</p>
<p>It usually starts the same way &mdash; I need to check a DNS record, IP Address or a subnet, or verify that a redirect chain is actually doing what I think it's doing. I end up bouncing between five different sketchy websites, half of which are covered in ads and the other half of which I don't fully trust with whatever I just pasted in. So I build my own. And then I build another one. And then suddenly it's a whole site.</p>
<p>That's basically how <a href="https://webtools.chrisbmn.com">webtools.chrisbmn.com</a> happened.</p>
<h2>What's on it</h2>
<p>Right now there are 30+ tools spread across six categories:</p>
<ul>
<li><strong>Network</strong> &mdash; IP lookup, DNS lookup, reverse DNS, port checker, HTTP headers, redirect chain tracer, subnet calculator, ASN lookup, CDN cache tester, and a "what's my IP" page for when you just need to know fast.</li>
<li><strong>Domain</strong> &mdash; WHOIS, SSL certificate checker, email deliverability (MX, SPF, DKIM, DMARC), and a full DMARC report analyzer that parses the XML aggregate reports your mail provider sends you.</li>
<li><strong>Security</strong> &mdash; Password generator, hash generator (MD5 through SHA-512), JWT decoder, and an SMTP TLS report analyzer for parsing those RFC 8460 JSON reports.</li>
<li><strong>Developer</strong> &mdash; Base64, JSON formatter/validator, URL encode/decode, regex tester, UUID generator, text diff, and a Paste tool for sharing snippets.</li>
<li><strong>Utilities</strong> &mdash; Unix timestamp converter, CIDR/IP range builder, cron expression builder, and a website screenshot tool.</li>
<li><strong>Reference</strong> &mdash; User agent parser and a full HTTP status code reference.</li>
</ul>
<h2>A few I actually use regularly</h2>
<p>The <strong>password generator</strong> gets more use than I expected &mdash; turns out having a solid one a tab away beats fumbling for a separate app every time. The <strong>WHOIS lookup</strong> is another one I keep coming back to more than I thought I would, usually when I'm poking at an unfamiliar domain and want the registration details without leaving the browser. And the <strong>DMARC report analyzer</strong> came out of personal frustration &mdash; those aggregate XML files are not fun to read raw.</p>
<p>The most recent addition is an <strong>SMTP TLS Report analyzer</strong> for the RFC 8460 JSON reports that providers like Google send when you've got MTA-STS set up. Paste the JSON in, get a clean breakdown of session success/failure counts, failure types with plain-English explanations, and actionable recommendations. Because nobody wants to manually parse that.</p>
<h2>Why not just use existing tools</h2>
<p>Honestly? A mix of reasons. Some tools I use frequently enough that I want them fast and without ads. Some I wanted to work a specific way. Some I built because I wanted to understand the underlying protocol better &mdash; there's no faster way to learn how DMARC reports are structured than to write a parser for them. And some I just built for fun.</p>
<p>Everything runs server-side in PHP. No tracking, no third-party analytics on the tool pages, nothing getting logged. What you paste in stays between you and the server.</p>
<h2>It's still growing</h2>
<p>I add tools when something annoys me enough. If there's something missing that you'd find useful, let me know in the comments &mdash; no promises, but I'm always looking for an excuse to build something.</p>
<p><a href="https://webtools.chrisbmn.com">&rarr; webtools.chrisbmn.com</a></p>]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Automated Windows 10 build using Boxstarter, Chocolately &amp; PowerShell</title>
      <link>https://chrisbmn.com/blog/automated-windows-10-build-using-boxstarter-chocolately-powershell/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/automated-windows-10-build-using-boxstarter-chocolately-powershell/</guid>
      <pubDate>Mon, 16 Mar 2020 13:01:37 -0500</pubDate>
      <description><![CDATA[I am an IT guy, and as such, I have numerous devices that I am constantly poking and prodding at. This at times has left me in a pinch, where i'm no doubt (like a fool) - testing s…]]></description>
      <content:encoded><![CDATA[<p>I am an IT guy, and as such, I have numerous devices that I am constantly poking and prodding at. This at times has left me in a pinch, where i'm no doubt (like a fool) - testing something on one of my machines, and poof! Its toast. </p>
<p>For this reason, I wanted to put together a way to be able to walk-up to any of my Windows devices, re-install the Windows OS, then simply kick-off a script (of any type), and have the machine back in a semi-to-fully functioning state with all of the applications and files available and ready to use. </p>
<p>I came up with the following bullet list of simple requirements: </p>
<ul><li>Be able to wipe a device at any time and not have a fear of data-loss.</li><li>Easily reinstall most (if not all) the applications I use as an IT guy.</li><li>Install the latest versions of the above applications.</li><li>Install applications which may not always come from the choco repo.</li><li>Install updates, configure firewall, or enable any windows tweaks, etc.</li><li>Keep this process easy, consistent, and repeatable. </li></ul>
<p>for this reason, I looked to to github for a few choco developer machines projects, and low-and-behold fell onto a project from Microsoft called <a href="https://github.com/microsoft/windows-dev-box-setup-scripts">Windows-Dev-Box-Setup</a>. This project had nearly 90% of the work already done, so after a quick fork, I had a starting point.</p>
<p>So with that said, allow me to introduce <a href="https://github.com/chrisrbmn/workstationbuilder">Windows 10 SysAdmin/Engineer workstation builder.</a></p>
<h2>What does it do?</h2>
<p>Quite simply, it takes your baseline'd Windows 10 desktop, and installs a standard set of Admin tools, that I use in my day-to-day as a Server Engineer.</p>
<h2>Requirements</h2>
<p><strong>NOTE </strong>- This is <strong>NOT </strong>a bare-metal script. You have to first install Windows 10. Then proceed with running this script afterwards.</p>
<p>This script is meant to be very simple, and requires NO interaction from the user. I simply use boxstarter web launcher to start the installation process and call the proper build script. </p>
<p>Unfortunately some of Boxstarter's functionality does require administrative privileges to run, and it will prompt to elevate to administrator if not already elevated. While this may pose an issue directly using my script if you don't have admin access, you can fork my repo, and make any necessary changes to get a workable solution for you. Take a look at Chocolately's documentation on <a href="https://chocolatey.org/install#non-administrative-install">Non-Admin Install</a> to find resources and examples of scripts to get a quick setup that doesn't require admin access.</p>
<p>All of the instructions are available on my <a href="https://github.com/chrisrbmn/workstationbuilder">github</a>. </p>]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Windows Server 2016 Default Domain Policy Settings</title>
      <link>https://chrisbmn.com/blog/windows-server-2016-default-domain-policy-settings/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/windows-server-2016-default-domain-policy-settings/</guid>
      <pubDate>Thu, 21 Mar 2019 10:08:32 -0500</pubDate>
      <description><![CDATA[Below you will see .htm reports of the Group Policy Management Console on a Windows Server 2016 Server immediately following a clean installation of Active Directory Domain Service…]]></description>
      <content:encoded><![CDATA[Below you will see .htm reports of the Group Policy Management Console on a Windows Server 2016 Server immediately following a clean installation of Active Directory Domain Services.

Best practice in terms of GPO deployment, is to NEVER modify the default policies, unless absolutely necessary. It is rather recommended to create new policy's to always augment this minimum policy rule-set. Read more about it <a href="https://technet.microsoft.com/en-us/library/hh875588.aspx" target="_blank" rel="noopener noreferrer">here</a>&nbsp;and <a href="https://technet.microsoft.com/en-us/library/cc779159(WS.10).aspx" target="_blank" rel="noopener noreferrer">here</a>:
<ul>
 	<li>“<em>As a best practice, you should configure the Default Domain Policy GPO only to manage the default Account Policies settings, Password Policy, Account Lockout Policy, and Kerberos Policy</em>“.</li>
 	<li><em>“As a best practice, you should configure the Default Domain Controllers Policy GPO only to set user rights and audit policies.”</em></li>
 	<li><em>“Do not modify the default domain policy or default domain controller policy unless necessary. Instead, create a new GPO at the domain level and set it to override the default settings in the default policies.”</em></li>
</ul>
If you find yourself in an AD environment where the Default Domain Policy has been heavily modified, and you need to get back to the what the original policy was, you can accomplish this by running the following commands:
<pre class="EnlighterJSRAW" data-enlighter-language="msdos">dcgpofix /ignoreschema /target:Domain</pre>
<pre class="EnlighterJSRAW" data-enlighter-language="msdos">dcgpofix /ignoreschema /target:DC</pre>
As always its a good idea to either document and/or backup the current GPOs.

Here are the Default Policies for review:

<a href="https://chrisbmn.com/blog/wp-content/uploads/2019/03/Default-Domain-Controllers-Policy.htm" target="_blank" rel="noopener noreferrer">Default Domain Controllers Policy</a> <a href="https://chrisbmn.com/blog/wp-content/uploads/2019/03/Default-Domain-Policy.htm" target="_blank" rel="noopener noreferrer">Default Domain Policy</a>]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Microsoft Ignite 2017: Journey of an IT Guy – Episode 6</title>
      <link>https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-6/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-6/</guid>
      <pubDate>Tue, 10 Oct 2017 08:51:45 -0500</pubDate>
      <description><![CDATA[Hello and welcome back to episode 6 of my 6 part series, where I explored the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Center, Sep…]]></description>
      <content:encoded><![CDATA[Hello and welcome back to episode 6 of my 6 part series, where I explored the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Center, Sept. 25th – Sept 29th. This is it. The final blog entry, this is what you've been waiting for. All of the juicy bits from the Microsoft Ignite Conference.

So, what are you waiting for.. Read on for more.

Beginning with the Keynote address, Satya Nadella framed this years MS Ignite as the Ignite of "Digital Transformation".

“Digital technology is impacting all aspects of our society and economies, creating unprecedented opportunity for organizations of all sizes,” said Satya Nadella, CEO, Microsoft. “I’m optimistic and inspired by the ingenuity of customers, partners and developers everywhere that are pushing the frontiers of what’s possible with mixed reality and artificial intelligence infused across Microsoft 365, Dynamics 365 and Azure, to transform and have impact in the world.”

In my opinion, this isn't entirely new stuff here, as Microsoft has been talking about "The Cloud", and "Transformation", for quite some time now. So, not too shocking here. Some other key take-a way's were the replacement of Skype for Business with MS Teams, AI solutions, deeper integration between Microsoft 365 app and flow, Azure stack, as well as many others. <a href="https://news.microsoft.com/2017/09/25/microsoft-helps-customers-digitally-transform-their-businesses-with-cloud-ai-and-mixed-reality-while-also-advancing-the-next-frontier-of-computing/?MC=Windows&amp;MC=WinServer&amp;MC=OfficeO365&amp;MC=SQL&amp;MC=MSAzure" target="_blank" rel="noopener noreferrer">If you'd like to read about all of the other announcements,  click here. </a>Or if you'd prefer, watch the entire keynote here:

https://youtu.be/d7f_GZsQMpA

&nbsp;

Next, I'll cover the sessions I attended this year.

The focus for Intertech is looking to leverage Azure in more of our day-to-day operations. We currently use Azure only as a sandbox, however, we are researching how we can harness the power and flexibility of Azure, while sprinkling in some DevOps to automate our process to promote from Dev to Prod. This means working with Visual Studio, and Team Services. Additionally, we leverage Office 365, so I also focused on sessions that revolved around Azure and Office 365 in general, but also specifically around Sharepoint and Exchange online. Additionally we use SCOM 2016 for monitoring and alerting of system issues within our network.

For the sake of keeping this blog post, under 50 pages, I will post the top 8 sessions I attended. I'll give the brief summary of each session, add any notes or take-a way's I had, provide a link to the session video, and any slides, if  available.

As you will recall from <a href="https://chrisbmn.com/blog/2017/08/microsoft-ignite-2017-journey-of-an-it-guy-episode-5/">Episode 5</a> of my series, I was interested in more then 8 sessions, but as I outlined, you cannot always get to every session you want to view. The sessions I was interested in, but failed to attend are listed below.
<ul>
 	<li><strong>What's new and upcoming in AD FS to securely sign-in your users to Office 365 and other applications</strong>
<ul>
 	<li>This session discusses incorporating new features from AD FS (Active Directory Federation Services) to be able to login from any location and any type of device.
<ul>
 	<li>Of interest was the discussion on supporting Windows Hello through ADFS.</li>
</ul>
</li>
 	<li><a href="https://youtu.be/set0NwKRW7c">https://youtu.be/set0NwKRW7c</a></li>
 	<li><a href="https://view.officeapps.live.com/op/embed.aspx?src=https%3A%2F%2F8gportalvhdsf9v440s15hrt.blob.core.windows.net%2Fignite2017%2Fsession-presentations%2FBRK3020.PPTX">Slide Deck</a></li>
</ul>
</li>
 	<li><strong>Accelerate your digital transformation with SharePoint and OneDrive</strong>
<ul>
 	<li>This session is a high level road map on Sharepoint and Onedrive for business. Also discussed are new features coming to both products in the near future.</li>
 	<li><a href="https://youtu.be/fuo8ufWE_IQ">https://youtu.be/fuo8ufWE_IQ</a></li>
 	<li><a href="https://view.officeapps.live.com/op/embed.aspx?src=https%3A%2F%2F8gportalvhdsf9v440s15hrt.blob.core.windows.net%2Fignite2017%2Fsession-presentations%2FBRK2184.PPTX">Slide Deck</a></li>
</ul>
</li>
 	<li><strong>Automate all things! Microsoft Azure continuous deployment</strong>
<ul>
 	<li>This session discussed and provided an example of setting up a release pipeline workflow to develop in Visual Studio, and promote to Azure leveraging Microsoft Visual Studio Team Services.
<ul>
 	<li>Great demo of using Team Services to setup CI, which shows a build process, and all of the features available within Team Services.</li>
</ul>
</li>
 	<li><a href="https://youtu.be/QgkiK961t5w">https://youtu.be/QgkiK961t5w</a></li>
 	<li><a href="https://view.officeapps.live.com/op/embed.aspx?src=https%3A%2F%2F8gportalvhdsf9v440s15hrt.blob.core.windows.net%2Fignite2017%2Fsession-presentations%2FTHR3083.PPTX">Slide Deck</a></li>
</ul>
</li>
 	<li><strong>Manage hybrid cloud and transform your workplace with PowerShell and Azure Automation</strong>
<ul>
 	<li>In-depth discussions on how to use Azure PowerShell on Windows, macOS, Linux, or from your browser with the Azure Cloud Shell.
<ul>
 	<li>Automation is essential for DevOps</li>
</ul>
</li>
 	<li><a href="https://youtu.be/oOiwcN6DAwQ">https://youtu.be/oOiwcN6DAwQ</a></li>
 	<li><a href="https://view.officeapps.live.com/op/embed.aspx?src=https%3A%2F%2F8gportalvhdsf9v440s15hrt.blob.core.windows.net%2Fignite2017%2Fsession-presentations%2FBRK3129.PPTX">Slide Deck</a></li>
</ul>
</li>
 	<li><strong>Defense against the dark (cloud) arts: Azure security deep dive</strong>
<ul>
 	<li>Session covers the Microsoft Azure Cloud Security Platform.
<ul>
 	<li>Fantastic demos of a hack in progress, and how its mitigated.</li>
 	<li>Shows how to use Azure security center to create security policy for patching and protection</li>
 	<li>Shows how to leverage Office 365 Security and Compliance Center</li>
</ul>
</li>
 	<li><a href="https://youtu.be/avW67hLSOEQ">https://youtu.be/avW67hLSOEQ</a></li>
 	<li><a href="https://onedrive.live.com/embed?cid=47E22AC086D61230&amp;resid=47E22AC086D61230%212148&amp;authkey=AMZ7_vDS-chZKWc&amp;em=2">Slide Deck</a></li>
</ul>
</li>
 	<li><strong>Deploying and Managing Skype Room Systems and Microsoft certified devices</strong>
<ul>
 	<li>This in-depth session also walks through the details of how to properly set up your overall environment.
<ul>
 	<li>Also discussed specifics on tuning the room, and sizing the proper solution</li>
</ul>
</li>
 	<li><a href="https://youtu.be/yJln8gSbNvo">https://youtu.be/yJln8gSbNvo</a></li>
 	<li><a href="https://view.officeapps.live.com/op/embed.aspx?src=https%3A%2F%2F8gportalvhdsf9v440s15hrt.blob.core.windows.net%2Fignite2017%2Fsession-presentations%2FBRK3038.PPTX">Slide Deck</a></li>
</ul>
</li>
 	<li><strong>Build your personalized and social intranet with SharePoint, Yammer, Delve, OneDrive and Teams</strong>
<ul>
 	<li>Hear how other companies built their intelligent intranets and learn how to use capabilities of SharePoint, OneDrive, Office Delve, Yammer, Microsoft Teams to create cohesive experiences.
<ul>
 	<li>Hub sites, themes and site design</li>
 	<li>Biz Apps, Flow integration to pipe data into pages</li>
 	<li>Story from Rick Garcia, United Airlines - Building 2016 on-prem farm, upgrading from SP 2010.</li>
 	<li>Story from Brian Duke, Thermo Fisher - Building new intranet</li>
 	<li>Story from Greg Nemeth, EY - Business transformation, vision for 2020 and beyond</li>
</ul>
</li>
 	<li><a href="https://youtu.be/N2V8L4U5cCs">https://youtu.be/N2V8L4U5cCs</a></li>
 	<li><a href="https://view.officeapps.live.com/op/embed.aspx?src=https%3A%2F%2F8gportalvhdsf9v440s15hrt.blob.core.windows.net%2Fignite2017%2Fsession-presentations%2FBRK2185.PPTX">Slide Deck</a></li>
</ul>
</li>
 	<li><strong>Case of the unexplained: Windows troubleshooting with Mark Russinovich</strong>
<ul>
 	<li>Finally, always a favorite of mine. In this session, see case studies on how to resolve system and application issues using the Systernals tools.
<ul>
 	<li>Uses the following tools: Process Explorer, Process Monitor, and Windows Debugger.</li>
</ul>
</li>
 	<li><a href="https://youtu.be/qouxznNC2XU">https://youtu.be/qouxznNC2XU</a></li>
 	<li><a href="https://view.officeapps.live.com/op/embed.aspx?src=https%3A%2F%2F8gportalvhdsf9v440s15hrt.blob.core.windows.net%2Fignite2017%2Fsession-presentations%2FBRK4007.PPTX">Slide Deck</a></li>
</ul>
</li>
</ul>
<p style="margin: 0in; font-family: Calibri; font-size: 11.0pt;">List of the other sessions I had interest in, but couldn't make it.</p>

<ul>
 	<li>Anti-phishing with Office 365 Advanced Threat Protection</li>
 	<li>Azure hold'em DevOps</li>
 	<li>Azure Networking inside and out</li>
 	<li>Build a modern intranet: Real-world planning, information architecture, governance, and adoption</li>
 	<li>Build your personalized and social intranet with SharePoint, Yammer, Delve, OneDrive and Teams</li>
 	<li>Continuous delivery on Microsoft Azure using Visual Studio Team Services</li>
 	<li>Datacenter transformation – a roadmap for platforms, processes, and people</li>
 	<li>Deep-dive: Azure Active Directory Authentication and Single-Sign-On</li>
 	<li>Empower IT and developer productivity with Microsoft Azure</li>
 	<li>Expert-level Windows 10 deployment</li>
 	<li>Inside Exchange Online</li>
 	<li>Inside Microsoft Azure datacenter hardware and software architecture with Mark Russinovich</li>
 	<li>Learn best practices for SharePoint site owners</li>
 	<li>Manage SharePoint and OneDrive in Office 365: A field guide for administrators</li>
 	<li>Microsoft System Center 2016 in action: Customer use cases to implement today</li>
 	<li>Microsoft Azure and Office 365 together: The modern business development platform</li>
 	<li>Learn about our vision and upcoming innovations for Microsoft Remote Desktop Services</li>
 	<li>Locking down access to the Azure Cloud using SSO, Roles Based Access Control, and Conditional Access</li>
 	<li>Implement best practices with Office 365 Groups</li>
 	<li>The secrets to getting the best experience out of SharePoint Online</li>
 	<li>The Sysinternals tools make you better at your job</li>
</ul>
And with that, we have reached the end of this series. I hope you have enjoyed reading this blog series as much as I enjoyed creating it for you.

If you want to read any of the other posts in the series, check them out below:

<a href="https://chrisbmn.com/blog/2017/04/microsoft-ignite-2017-journey-of-an-it-guy-episode-1/">Microsoft Ignite 2017: Journey of an IT Guy – Episode 1</a>

<a href="https://chrisbmn.com/blog/2017/05/microsoft-ignite-2017-journey-of-an-it-guy-episode-2/">Microsoft Ignite 2017: Journey of an IT Guy – Episode 2</a>

<a href="https://chrisbmn.com/blog/2017/06/microsoft-ignite-2017-journey-of-an-it-guy-episode-3/">Microsoft Ignite 2017: Journey of an IT Guy – Episode 3</a>

<a href="https://chrisbmn.com/blog/2017/07/microsoft-ignite-2017-journey-of-an-it-guy-episode-4/">Microsoft Ignite 2017: Journey of an IT Guy – Episode 4</a>

<a href="https://chrisbmn.com/blog/2017/08/microsoft-ignite-2017-journey-of-an-it-guy-episode-5/">Microsoft Ignite 2017: Journey of an IT Guy – Episode 5</a>

Do you have any questions? Anything you feel I missed?  Tell me about it in the comments below.

&nbsp;]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Microsoft Ignite 2017: Journey of an IT Guy – Episode 5</title>
      <link>https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-5/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-5/</guid>
      <pubDate>Thu, 24 Aug 2017 08:46:20 -0500</pubDate>
      <description><![CDATA[Hello and welcome back to episode 5 of my 6 part series, where I explore the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Center, Sept…]]></description>
      <content:encoded><![CDATA[Hello and welcome back to episode 5 of my 6 part series, where I explore the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Center, Sept. 25th – Sept 29th. <span style="text-align: left; color: #666666; text-indent: 0px; letter-spacing: normal; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: 500; float: none; background-color: #ffffff;">As you will recall from<span class="Apple-converted-space"> </span></span><a href="https://chrisbmn.com/blog/2017/07/microsoft-ignite-2017-journey-of-an-it-guy-episode-4/">episode four</a><span style="text-align: left; color: #666666; text-indent: 0px; letter-spacing: normal; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: 500; float: none; background-color: #ffffff;">, we explored places to eat around the conference center venue. In this month’s episode, and as promised, we will be covering the session catalog, and scheduler.
</span>

With that out of the way, lets get started.
<h2>What is the session catalog?</h2>
The session catalog is a listing of all of the sessions/topics you can attend while at the Microsoft Ignite conference. You can find the <a href="https://myignite.microsoft.com/sessions">session catalog here</a>.

<img src="https://chrisbmn.com/blog/wp-content/uploads/2017/11/sessioncatalog-300x202.png" alt="" width="300" height="202" class="aligncenter size-medium wp-image-503">

As you can see from the above screenshot, there are currently 1,130 sessions in the catalog. Think of these "sessions", as open discussions on topics, where both Microsoft engineers, and distinguished guests/volunteers will cover topics ranging from the very basic to the very deep in the weeds.

These sessions could be delivered in the following formats:
<ol>
 	<li>Open forum Q/A, where the presenter launches the topic, and essentially asks for the participants to ask questions.</li>
 	<li>Presentation style, where the presenter simply talks about the session topic and may or may not take questions</li>
 	<li>A guest panel. A panel is when 2 or more experts on the topic, will round table discuss their experience with the topic, and usually do Q/A with the attendees.</li>
</ol>
<h2>What is the session builder/scheduler?</h2>
The session builder is a web based tool, located on the <a href="https://myignite.microsoft.com">myignite portal</a>, that is used for you to plan out what sessions you intend to attend. Essentially, you will add sessions you are interested in, and it will create an agenda of topics to attend while at the conference. Once you have completed your agenda, you'll be able to export your schedule to your calendar and/or print it out
<div class="itemBody holder"> The session builder is located at the same URL for the session catalog. If you login with the account you used to register for Microsoft Ignite, you will now notice that you have a button to add sessions to your schedule.</div>
<img src="https://chrisbmn.com/blog/wp-content/uploads/2017/11/sessionbuilder-300x218.png" alt="" width="300" height="218" class="aligncenter size-medium wp-image-504">

&nbsp;
<h2>How do I use the session builder?</h2>
Using the scheduler is easy. Simply find the sessions you want to attend, and click the button "Add to Schedule". After you have added all of the sessions you are interested in, you can preview your agenda by selecting the link in the top navigation bar, and selecting "<strong>My Conference -&gt; My Schedule</strong>"

<img src="https://chrisbmn.com/blog/wp-content/uploads/2017/11/myschedule-300x107.png" alt="" width="300" height="107" class="aligncenter size-medium wp-image-505">

You will be presented with a page that is similar to mine below.

<img src="https://chrisbmn.com/blog/wp-content/uploads/2017/11/my-schedule-300x185.png" alt="" width="300" height="185" class="aligncenter size-medium wp-image-506">

As you can see, I have a lot of overlapping sessions. That's okay. I will pick the sessions I really want to see in person, and any of the other sessions I can't attend, Microsoft will make available for viewing after the conference via the <a href="https://myignite.microsoft.com">myignite website</a>.
<h2>So how do I pick the sessions I want to see?</h2>
The session scheduler has a fantastic search feature. Simply input the terms your interested in in attending. You can search by topic, by presenter, or you can even refine results by using the filters on the left of the search window.

You can see below, I put in "Mark Russinovich" and I can see all of the sessions Mark is presenting in.

<img src="https://chrisbmn.com/blog/wp-content/uploads/2017/11/search_markr-300x168.png" alt="" width="300" height="168" class="aligncenter size-medium wp-image-507">
<h2>So to summarize:</h2>
<ul>
 	<li>The session catalog/builder is located on the <a href="https://myignite.microsoft.com">MyIgnite website</a>.  You can also locate it via the <a href="https://www.microsoft.com/en-us/ignite/">Microsoft Ignite website here</a>.</li>
 	<li>Do you have a question about a specific session, reach out to Microsoft via Twitter <a href="https://twitter.com/MS_Ignite">@MS_Ignite</a>, or use the <a href="https://techcommunity.microsoft.com/t5/Microsoft-Ignite/ct-p/MicrosoftIgnite">Microsoft Tech Communities</a> - These locations are really good at getting back to people with questions about the conference. I asked a question via Twitter, when they were making the session catalog available, and they got back to me within the day. yay!</li>
 	<li>Watch the twitter feed and tech community for opportunities to meet up, and join into small round table discussions.</li>
 	<li>Keep an eye open for opportunities to join focus groups. If you receive an invitation to attend one, I'd highly encourage you to participate! These are great opportunities to ask questions and provide feedback to developers/engineers for a specific product. Its also a great opportunity to network with others.</li>
 	<li>Don't worry about scheduling more than one session per time slot! While you obviously can't be in multiple places at once, you may arrive to find a session room is full, or a session earlier in the day may leave you wanting more info on that topic in the afternoon. After the conference is over, you can always watch the sessions you missed on-demand via the myignite website.</li>
 	<li>Don't worry about gaps in your schedule. You will want to leave time open to participate in Hands-on-Labs, networking with other attendee's, and perusing the expo. Hands-on Labs are fun, self-paced, training, where you can experiment with different Microsoft tools, software, or solutions. You can work them into your schedule around any sessions on your list.</li>
 	<li>Finally - Remember, adding a session or lab to your agenda does not guarantee you a seat in the room. Seating is on a first-come, first-served basis.</li>
</ul>
That's it for now! That was fun! I hope you have enjoyed this series meant to prepare you for the epic journey to Microsoft Ignite. This is the final blog entry until the conclusion of the conference. The next entry will be after I have returned from the Ignite conference, and I will cover all the sessions I attended. So, for now, I'll leave you until the end of Sept.

As before, follow me on Twitter (<a href="https://twitter.com/chrisrbmn" target="_blank" rel="noopener noreferrer">@chrisrbmn</a>), and keep an eye open for my tweets during the conference. I will be tweeting any Microsoft Ignite 2017 content, making daily updates, including but not limited to the keynote speech, along with any sessions I attend.

Do you have any questions? Anything you want me to add to the series? Tell me about it in the comments below.]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Microsoft Ignite 2017: Journey of an IT Guy – Episode 4</title>
      <link>https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-4/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-4/</guid>
      <pubDate>Mon, 24 Jul 2017 08:36:11 -0500</pubDate>
      <description><![CDATA[Hello and welcome back to episode 4 of my 6 part series, where I explore the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Center, Sept…]]></description>
      <content:encoded><![CDATA[Hello and welcome back to episode 4 of my 6 part series, where I explore the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Center, Sept. 25th – Sept 29th.

<span style="text-align: left; color: #666666; text-indent: 0px; letter-spacing: normal; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: 500; float: none; background-color: #ffffff;">As you will recall from<span class="Apple-converted-space"> </span></span><a href="https://chrisbmn.com/blog/2017/06/microsoft-ignite-2017-journey-of-an-it-guy-episode-3/">episode three</a><span style="text-align: left; color: #666666; text-indent: 0px; letter-spacing: normal; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: 500; float: none; background-color: #ffffff;">, we explored airfare and travel to/from the conference center to your hotel and the airport. In this month’s episode, I had previously mentioned in <a href="https://chrisbmn.com/blog/2017/06/microsoft-ignite-2017-journey-of-an-it-guy-episode-3/">episode three</a> that we would cover the session catalog. I have had a change of heart in the past month, and thus decided that rules were meant to be broken; So instead of this months episode being all about the session catalog, we will instead discuss the local food in the fine city of Orlando, FL. So, with that out of the way, get back too it!</span>
<h2>Grub</h2>
While I love to eat (Perhaps too much as my wife tells me) - I am not a food expert. I like what I like, and therefore I will give you my opinions on local eats, in the city of Orlando near the Convention Center. Some of these are local restaurants, some are national chains, which you may have tried yourself. I can guarantee all of these selections will at least fill your stomach.

Additionally, keep in mind, that these restaurants are primarily selected for dinner. (As they will be feeding lunch at the conference.)

In looking at restaurant near the convention center, there are hundreds of restaurants to sample. According to <a href="https://www.tripadvisor.com/RestaurantsNear-g34515-d1419838-Orange_County_Convention_Center-Orlando_Florida.html" target="_blank" rel="noopener noreferrer">TripAdviser</a>, there are at least 200 restaurants within 5 miles of conference center.  So for the sake of not making this episode incredibly long, I will briefly cover 5 restaurants within 5 miles of the conference center.  These are all my opinion, and on the bright side, my suggestions will give you at least 1 restaurant to try a day. That is, if you've never been to Orlando before, and are willing to take a chance off a blind recommendation! Heh - you're adventurous aren't you?

One other note -  I'm basing my ratings and pricing off of ratings viewed on <a href="https://www.tripadvisor.com/RestaurantsNear-g34515-d1419838-oa30-Orange_County_Convention_Center-Orlando_Florida.html" target="_blank" rel="noopener noreferrer">TripAdviser</a>, and reviews I gathered off a <a href="https://www.scottjosephorlando.com/restaurants/108-convention_center" target="_blank" rel="noopener noreferrer">local flog (food blog)</a>. So take it or leave it, here are my 5 suggestions. If you have any suggestions of your own, please feel free to share them in the comments below.
<h2>Restaurants Near Microsoft Ignite 2017</h2>
<ol>
 	<li><a href="https://acfp.com/location/orlando-sand-lake/" target="_blank" rel="noopener noreferrer">Anthony's Coal Fired Pizza </a></li>
 	<li><a href="https://fogodechao.com/location/orlando" target="_blank" rel="noopener noreferrer">Fogo De Chao</a></li>
 	<li><a href="http://www.thehiltonorlando.com/dine/spencers/" target="_blank" rel="noopener noreferrer">Spencer's</a></li>
 	<li><a href="https://www.bonefishgrill.com/locations/fl/orlando-central-fl-parkway" target="_blank" rel="noopener noreferrer">Bonefish Grill</a></li>
 	<li><a href="http://www.yardhouse.com/locations/fl/orlando/orlando-i-drive-360/8352" target="_blank" rel="noopener noreferrer">Yard House</a></li>
</ol>
<h3><span style="color: #ff6600;">Anthony's Coal Fired Pizza</span></h3>
<iframe width="600" height="450" style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d13146.988044480013!2d-81.4726467241688!3d28.43633036790212!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88e77fa978ec48dd%3A0xa1fb85d24678285d!2sAnthony's+Coal+Fired+Pizza!5e0!3m2!1sen!2sus!4v1500323240684" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
Anthony's is dubbed; "casual chain serving charred-crust pies, wings and subs in a modern setting." According to TripAdviser, the food is a 4.5 out of 5, and expect to spend $10-30 bucks for a pizza pie. <a href="https://acfp.com/location/orlando-sand-lake/" target="_blank" rel="noopener noreferrer">Learn More</a>
<h3><span style="color: #ff6600;">Fogo De Chao</span></h3>
<iframe width="600" height="450" style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3508.1188090507458!2d-81.47383194914465!3d28.44583469917055!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88e77e5350a0d697%3A0xf2135e27aa52033!2sFogo+de+Ch%C3%A3o!5e0!3m2!1sen!2sus!4v1500323298317" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
Fogo De Chao, is a Brazilian steak house. Bring your appetite, because you will leave this place absolutely stuffed. Servers (Called Gauchos), circle around your table, and continually fill your plate with different cuts of meat, until you set the colored dial on the table to red (Indication to stop) Word of caution, don't over eat at the salad bar.  According to TripAdviser, the food is a 4.5 out of 5, and I will personally give a thumbs up too. Expect to spend a little more here for a meal. A meal here will set you back $30-60. <a href="https://fogodechao.com/location/orlando" target="_blank" rel="noopener noreferrer">Learn More</a>
<h3><span style="color: #ff6600;">Spencer's</span></h3>
<iframe width="600" height="450" style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d6865.416700176415!2d-81.4679971263906!3d28.422636504050164!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88e77e39a4f7369b%3A0xb3f9597fe9d38c5b!2sSpencer's+for+Steaks+and+Chops!5e0!3m2!1sen!2sus!4v1500323359057" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
Spencer's is an America Steakhouse nestled into the Hilton Orlando. Expect to bring an appetite, and a wad of cash, as its definitely on the pricier side if you're on a budget. If you can swing it, it is definitely well worth the price. According to TripAdviser, the food is a 4.5 out of 5, and expect to spend $30-60 bucks. <a href="http://www.thehiltonorlando.com/dine/spencers/" target="_blank" rel="noopener noreferrer">Learn More</a>
<h3><span style="color: #ff6600;">Bonefish Grill</span></h3>
<iframe width="600" height="450" style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d6775.526959058939!2d-81.47009306065887!3d28.411442193542953!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88e77e2b263ef6d5%3A0xf26fefbf7a289666!2sBonefish+Grill!5e0!3m2!1sen!2sus!4v1500323389039" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
Bonefish Grill is an America Seafood restaurant. If you like seafood, you will like Bonefish. Ask for the swordfish, you wont regret it!  According to TripAdviser, the food is a 4.5 out of 5, and expect to spend $10-40 bucks. <a href="https://www.bonefishgrill.com/locations/fl/orlando-central-fl-parkway" target="_blank" rel="noopener noreferrer">Learn More</a>
<h3><span style="color: #ff6600;">Yard House</span></h3>
<iframe width="600" height="450" style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d4961.383733185169!2d-81.47149483484307!3d28.44254231558775!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88e77e4d638f438d%3A0xe0fbc06ef8ca196f!2sYard+House!5e0!3m2!1sen!2sus!4v1500323410448" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
And to round out the list, The Yard House is the quintessential burger joint. According to TripAdviser, the food is a solid 4 out of 5, and expect to spend $10-30 bucks. <a href="http://www.yardhouse.com/locations/fl/orlando/orlando-i-drive-360/8352" target="_blank" rel="noopener noreferrer">Learn More</a>
<h2>Summary</h2>
That brings us to the end of episode 4! I know, this episode was a little light.. I promise, I'll make it up with our next episode! Only 1 more episode remains prior to the conference. In the next episode, I will cover the conference agenda, the session catalog and the MyIgnite website. Also - Just a reminder, that while episode 5 will be released on August 24th, episode 6 will not actually be released until after the conclusion of the conference. I just don't want you anxiously awaiting my September release on the 24th.. You should be out enjoying all there is to learn at the conference, just like me!

As before, follow me on Twitter (<a href="https://twitter.com/chrisrbmn" target="_blank" rel="noopener noreferrer">@chrisrbmn</a>), and keep an eye open for my tweets during the conference. I will be tweeting any Microsoft Ignite 2017 content, making daily updates, including but not limited to the keynote speech, along with any sessions I attend.

That's it for now! So, for now, I'll leave you until August, 24th.

Do you have any questions? Anything you want me to add to the series? Tell me about it in the comments below.

Check out the rest of the posts in this series:

<a href="https://chrisbmn.com/blog/2017/04/microsoft-ignite-2017-journey-of-an-it-guy-episode-1/">Microsoft Ignite 2017: Journey of an IT Guy – Episode 1</a>

<a href="https://chrisbmn.com/blog/2017/05/microsoft-ignite-2017-journey-of-an-it-guy-episode-2/">Microsoft Ignite 2017: Journey of an IT Guy – Episode 2</a>

<a href="https://chrisbmn.com/blog/2017/06/microsoft-ignite-2017-journey-of-an-it-guy-episode-3/">Microsoft Ignite 2017: Journey of an IT Guy – Episode 3</a>]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Microsoft Ignite 2017: Journey of an IT Guy – Episode 3</title>
      <link>https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-3/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-3/</guid>
      <pubDate>Sat, 24 Jun 2017 08:30:51 -0500</pubDate>
      <description><![CDATA[Hello and welcome back to the 3rd installment of my 6 part series, where I explore the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Ce…]]></description>
      <content:encoded><![CDATA[Hello and welcome back to the 3rd installment of my 6 part series, where I explore the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Center, Sept. 25th – Sept 29th.

As you will recall from <a href="https://chrisbmn.com/blog/2017/05/microsoft-ignite-2017-journey-of-an-it-guy-episode-2/">episode two</a>, we tackled registration and accommodations. In this month's episode, we will discuss purchasing airfare and transportation to and from the conference center venue. With that out of the way, lets jump right in.

For the sake of this episode, I will assume that most of you are flying in for the entire conference, not including the pre-sessions. Obviously, if you are planning to attend a pre-session, you will want to adjust your dates accordingly. For the rest of us, we will likely be flying into Orlando on Sunday, September 24th, prior to the conference, and staying until Friday September, 29th, which is the last day.
<h2>Purchasing Airline Tickets for Microsoft Ignite 2017</h2>
Interestingly, most people I discuss travel with make airfare their top priority, and always rush to purchase airline tickets. I believe most people feel the common theme to purchasing airfare is synonymous with the adage, "the early bird gets the worm". Meaning, the earlier you buy tickets the cheaper the tickets are. While this may have some truth to it, I have often found the sweet spot for airfare to be somewhere between 2-3 months out from your anticipated travel date, and for some odd reason, Tuesday's and Wednesday's always appear to be the days that airlines drop prices on tickets.

The reality is that airline ticket prices fluctuate from month to month. You should expect to budget $500 for a base economy round trip airfare.. Depending on the carrier you settle with, and any upgrades you may require, this price can increase further, especially when they add in taxes, etc.  There are several app's such as <a href="https://www.hipmunk.com/" target="_blank" rel="noopener noreferrer">hipmunk</a>, or <a href="http://www.hopper.com/" target="_blank" rel="noopener noreferrer">hopper</a>, which actually track airfare price changes on your behalf, and can send you notification, when the prices are at their lowest. I personally use <a href="http://www.hopper.com/" target="_blank" rel="noopener noreferrer">hopper</a>, as I find its interface to be easy on the eyes, and very intuitive.

I am very much a "less is more" kind of guy, as I remember back (dating myself here) to when airlines checked our bags for free, gave us a drink, and a snack/meal, at no additional cost. So when I fly today, I always eat early, arrive to the airport early (at least 2 hours), and only buy a beverage or snack in the terminal, prior to boarding the plane, because I prefer to not pay any more for services on the plane, which I still feel should be included at no cost. Anyways, I digress.

If you are checking a bag, expect to pay anywhere from $20 - $75 per bag, depending on its weight. If you are planning to carry on, make sure to check the airlines website, to get the bag's maximum dimensions allowed for carry on. Almost all the airlines allow 1 carry on bag, and 1 personal item. (such as a backpack, or a purse.), anymore, and expect to pay either a fee for the carry on, or the airline may require you to check the bag.

Depending on how you feel about traveling through security, you may want to consider <a href="https://www.clearme.com/home" target="_blank" rel="noopener noreferrer">CLEAR</a>, or <a href="https://www.tsa.gov/precheck" target="_blank" rel="noopener noreferrer">TSA PreCheck</a>. CLEAR and TSA PreCheck are expedited security screening programs, and work to expedite the security screening process, by registering and paying a fee. CLEAR, uses bio-metrics to verify your identity, and after you are authenticated you are allowed to use the TSA PreCheck line through security. On the other hand, TSA PreCheck allows you to preregister, complete a background check, provide fingerprints and after complete, you will receive a Known Traveler Number (KTN). This KTN can be including on your profile for any airlines, and it will be printed directly on your boarding pass. This allows you to receive expedited service via the TSA PreCheck line for any flights that participate.

The cost for each of these services is:
<ul>
 	<li><a href="https://www.clearme.com/home" target="_blank" rel="noopener noreferrer">CLEAR</a> - $179 annually.</li>
 	<li><a href="https://www.tsa.gov/precheck" target="_blank" rel="noopener noreferrer">TSA PreCheck</a> - $85 and is good for 5 years.</li>
</ul>
<strong>Additional Note</strong> - While PreCheck is often a savior and provides expedited service through security, keep in mind, anyone for any reason can be selected for further screening, so plan accordingly, and always expect the unexpected.
<h2>Transportation</h2>
Finally in this episode, lets briefly discuss transportation. Depending on your plans, and what you intend to see/do while in the Orlando area, you may or may not be interesting in renting a car to adventure around the city. If you do rent a car, expect to pay at least $300 for the week depending on who you use, and I would encourage you to prepay for the tolls as they quickly add up while driving around the city. If you are comfortable stopping for gas prior to returning the car, you will save a substantial amount over pre-paying for fuel. There are several gas stations within 10 miles of the airport, so finding a gas station prior to returning the rental, shouldn't be a problem. <em>Just don't forget to fill up prior to returning the rental car, as they will slap you with a pretty hefty penalty for not returning the rental car with a full tank of gas.</em>
<h3><span style="color: #ff6600;">Airport</span></h3>
It will take approximately 20 minutes to drive from the Airport to the Convention Center. All attendee's are responsible for their own transportation to/from the Airport to their Hotel. For information on ground transportation options to and from the Orlando International Airport, <a href="https://www.orlandoairports.net/parking-transportation/" target="_blank" rel="noopener noreferrer">click here</a>.
<h3><span style="color: #ff6600;">Convention Center</span></h3>
If you booked your hotel via the Microsoft Ignite registration system as I highly encouraged you to do in <a href="https://chrisbmn.com/blog/2017/05/microsoft-ignite-2017-journey-of-an-it-guy-episode-2/">Episode 2</a>, you will be provided shuttle service between your hotel and the convention center. If not, and if you are not booked at one of the hotels listed on the <a href="https://www.microsoft.com/en-us/ignite/pricing" target="_blank" rel="noopener noreferrer">MS Ignite Pricing page</a>, you will likely need to either rent a car, or pay for taxi service to and from your hotel to the convention center.
<h2>Summary</h2>
So we've come to the end of episode three! We are half way to Microsoft Ignite! Wow, that was an adventure! So, for now, I'll leave you until July, 24th. In the forth episode I plan to devote the discussion to the session catalog, and planning your agenda.

As before, follow me on Twitter (<a href="https://twitter.com/chrisrbmn" target="_blank" rel="noopener noreferrer">@chrisrbmn</a>), and keep an eye open for my tweets during the conference. I will be tweeting any Microsoft Ignite 2017 content, making daily updates, including but not limited to the keynote speech, along with any sessions I attend.

Do you have any questions? Anything you want me to add to the series? Tell me about it in the comments below.]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Microsoft Ignite 2017: Journey of an IT Guy - Episode 2</title>
      <link>https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-2/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-2/</guid>
      <pubDate>Wed, 24 May 2017 08:27:21 -0500</pubDate>
      <description><![CDATA[Hello and welcome back to episode 2 of my 6 part series, where I explore the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Center, Sept…]]></description>
      <content:encoded><![CDATA[Hello and welcome back to episode 2 of my 6 part series, where I explore the epic journey to Microsoft Ignite 2017, down in Orlando, FL at the Orange County Convention Center, Sept. 25th – Sept 29th.

Now begins the journey to make sure you have started/completed all of the following:
<ul>
 	<li>Registration and costs to the conference</li>
 	<li>Accommodations</li>
 	<li>Airfare</li>
 	<li>Transportation to/from you hotel</li>
 	<li>Food (Yes, you will need to eat)</li>
</ul>
I'll take each of these, and break these out into their own discussion. Some of these we can tackle up front, others you may want to hold off on for now. Don't worry, I'll hold your hand the entire way...
<h2>Microsoft Ignite 2017 Costs and Opportunities</h2>
At this point, maybe you have registered/purchased your tickets to the conference via the <a href="https://register.ignite.microsoft.com/">Register URL.</a> Fantastic, good for you. You're all done, and I will see you there!  Skip right down to the Accommodations section.

What if you haven't? What should you select? Ohh, all the decisions. What you select largely depends on what you are looking to get out of the conference. Ignite offers all types of pre-day training opportunities, a test center, and a variety of different add-on / day to day passes for all aspects of attendance. Microsoft Ignite 2017 costs vary depending on what you are looking for.
<h4><span style="color: #ff6600;">Full Conference Pass - $2,220</span></h4>
So, lets say you want to attend the full conference for the week, and nothing more. Easy peasy. You want the "Full Conference Pass"; Select this during the registration, drop the $2220, and the hard work is done.
<h4><span style="color: #ff6600;">Convenience Pass - $490</span></h4>
What are these other selections though? Well, its pretty simple. The Convenience pass, gives you accommodations to the stay at the hotel that is directly connected to the conference center. It will cost ya an extra $490 dollars.
<h4><span style="color: #ff6600;">Women in Tech Pre-Day Session - $199</span></h4>
Are you a woman looking to patent something, or seeking assistance getting your business off the ground? Maybe you'd be interested in the Women in Tech Pre-Day session designed to assist you with your business ventures. This session takes place on Sunday the 24th, and will set you back $199.
<h4><span style="color: #ff6600;">Pre-day Training - $500</span></h4>
Are you seeking some additional hands on specialized training directly from the experts who created it? Sign up for Pre-day training, and select what you'd like to specifically cover. This training also takes place on Sunday the 24th, and will set you back $500 dollars.
<h4><span style="color: #ff6600;">Discounts</span></h4>
Looking to buy in bulk? Get a discount for buying 10 or more passes. Are you a student and academic faculty, you also qualify for discounted passes. Yay for school!
<h4><span style="color: #ff6600;">Single-Day Pass - $350 / Sessions and Expo Pass - $500</span></h4>
There are also single-day passes, which offer access to either the expo alone, or sessions and expo, each on a day by day basis. These are $350 and $500 per day respectively.
<h2>Accommodations</h2>
First and foremost, you're going to want to secure a hotel room that is reasonably close to the Orange County Convention Center, and you will want to do this as soon as possible. These rooms sell out fast, and by fast, I mean like grease-lightning fast. Trust me, do not wait until a month or less to book a hotel. You will likely find that everything within 25 miles of the conference is sold out, and you may be driving in from a far away suburb. Take it from me, book early! You can wait on everything else, but book your hotel first.

Even better, book while registering for the conference! Microsoft has made it so easy to book accommodations to their conferences during the registration process. During the registration, you will be given an opportunity to book a hotel at the time of registration. I highly encourage you to do so. All the cool kids are doing it now, and so can you. I commend Microsoft for this. It makes it so much easier to book the conference and the accommodations at the same time, and takes a tremendous amount of burden off from you the attendee to try and find the best hotel in proximity to the venue. All the hotels they list are convenient to the venue, and you can be almost guaranteed that if Microsoft is listing it, they will have free bus/shuttle service to and from the conference. ANOTHER WIN!
<h2>To Recap</h2>
View the pre-conference and conference offerings, and decide what best fit your needs and budget. If you have opportunity, book accommodations at the same time you register for the conference. If you cannot: BOOK IT as soon as you have approval to do so.

So, we've come to the end of episode two of my six part blog series! I hope you've gained some new information. So, for now, I'll leave you until June, 24th.

As before, follow me on Twitter (<a href="https://twitter.com/chrisrbmn" target="_blank" rel="noopener noreferrer">@chrisrbmn</a>), and keep an eye open for my tweets both before and during the conference. I will be tweeting any Microsoft Ignite 2017 content, making daily updates, including but not limited to the keynote speech, along with any sessions I attend.

Do you have any comments or questions? Anything you want me to cover, or you feel I missed and want me to add to the series? Tell me about it in the comments below.]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Microsoft Ignite 2017: Journey of an IT Guy - Episode 1</title>
      <link>https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-1/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/microsoft-ignite-2017-journey-of-an-it-guy-episode-1/</guid>
      <pubDate>Mon, 24 Apr 2017 06:22:49 -0500</pubDate>
      <description><![CDATA[Good morning, good afternoon, good evening fellow blog readers, IT admins, DEVs and Intertech enthusiast!

Are you or any of your fine fellow IT experts excited and prepped to atte…]]></description>
      <content:encoded><![CDATA[Good morning, good afternoon, good evening fellow blog readers, IT admins, DEVs and Intertech enthusiast!

Are you or any of your fine fellow IT experts excited and prepped to attend the <a href="https://ignite.microsoft.com/" target="_blank" rel="noopener noreferrer">Microsoft Ignite 2017 conference</a> but don't know what to do? or how to do it? Have you ever been to a conference? Well, look no further, because I have all you need right here.

Hello, my name is Chris Budde, and I am the Principal Engineer at <a href="https://www.intertech.com/" target="_blank" rel="noopener noreferrer">Intertech</a> in Eagan, MN. I have been working in the IT industry for 17 years now, and this will be my 3rd attendance to a Microsoft Ignite Conference. 5th conference in total.

This little gem here is my first episode of six monthly blog posts detailing my journey to Microsoft Ignite 2017 this year in Orlando, Florida. The conference is set to occur this year, Sept. 25th - Sept 29th down at the Orange County Convention Center.
<h2>The Purpose of this Series</h2>
The purpose of my Journey of an IT Guy series will be to:
<ul>
 	<li>Cover the several months of planning and preparations leading up to the Microsoft Ignite 2017 conference</li>
 	<li>Inform you of the essentials</li>
 	<li>Provide information from the sessions I attended during the conference</li>
</ul>
Don't fret if you're not technical. I do not intend to make these blog post overly in-the-weeds or highly in-depth. I do intend to scratch the surface, explore topics relevant to our company, and look into Cloud and DevOps opportunities which our consultants may find useful in the future.

Where possible, I will do my best to include direct links to Microsoft Ignite 2017 content, references to any available materials, twitter handles, presenters names, and any other details which I am authorized to share.

I intend to create a new blog post one time a month on or before the 24th of each month for the next 6 months leading up to start of the conference. After that, I'll follow up with a summary of everything I took away after the conference concludes.

Please follow me on Twitter (<a href="https://twitter.com/chrisrbmn" target="_blank" rel="noopener noreferrer">@chrisrbmn</a>), and keep an eye open for my tweets during the conference. I will be tweeting any Microsoft Ignite 2017 content, making daily updates, including but not limited to the keynote speech, along with any sessions I attend.

I think that's it for now! So, for now, I'll leave you until May 24th.

Do you have any questions? Anything you want me to add to the series? Tell me about it in the comments below.]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Now running on Google Domains!</title>
      <link>https://chrisbmn.com/blog/now-running-on-google-domains/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/now-running-on-google-domains/</guid>
      <pubDate>Fri, 22 Apr 2016 13:14:16 -0500</pubDate>
      <description><![CDATA[So, yesterday I took a plunge and migrated my primary domain cbudde.com to google domains. In case you're not familiar with this service, it's googles new offering into website reg…]]></description>
      <content:encoded><![CDATA[So, yesterday I took a plunge and migrated my primary domain cbudde.com to <a href="https://domains.google/" target="_blank" rel="noopener noreferrer">google domains</a>. In case you're not familiar with this service, it's googles new offering into website registrar management. You can <a href="https://domains.google/" target="_blank" rel="noopener noreferrer">take a closer look here.</a>

It seems to offer all the same features as your godaddy, and networksolutions. The real benefit is cost. Google domains is a flat $12/year fee for each domain. With that, they include additional features that most other registrars charge extra for.

for example, domain privacy, DNSSEC, which typically are premium features that cost more, are included free of charge through google domains.

The transfer was about as easy as to be expected for any domain. Simply needing to have privacy disabled, and the domain unlocked. It took approximated 60 minutes to completely migrate from godaddy to google, using google DNS. When I configured DNS properties to point to my webhost DNS servers, it took about 12 hours before the change was updated. <em>(This is an estimate, based on when I started the change, the night prior, verse when I woke up from snooze-land that following morning)  </em>

All in all, a decent experience, and if you're looking to save some money on domain name hosting, google DNS might just be what you're looking for!]]></content:encoded>
            <category>Informational</category>
          </item>
        <item>
      <title>Files that make up a VM</title>
      <link>https://chrisbmn.com/blog/vm-files/</link>
      <guid isPermaLink="true">https://chrisbmn.com/blog/vm-files/</guid>
      <pubDate>Tue, 07 Jan 2014 10:37:43 -0600</pubDate>
      <description><![CDATA[I think everyone today understands the concept of a Virtual Machine or virtualized environment.
However, in case you are not familiar with the terminology, wikipedia defines a virt…]]></description>
      <content:encoded><![CDATA[I think everyone today understands the concept of a Virtual Machine or virtualized environment.
However, in case you are not familiar with the terminology, wikipedia defines a virtual machine as follows:
<blockquote>A virtual machine (VM) is a software implementation of a machine (i.e. a computer) that executes programs like a physical machine.</blockquote>
In today's blog post, I'm going to simply break down some of the actual files that make up a virtual machine on VMWare Workstation. (These files are identical to any of the files you would additionally find on ESX)
<a href="http://gotcha.cbudde.com/index.php"><span style="display: none;">para-widget</span></a>
A virtual machine is configured with a set of virtual hardware on which a supported guest operating system and its applications use/run. The virtual machine is nothing more then a directory, with a set of files. The virtual machine's configuration files describe the virtual machine's configuration, which include all of the virtual hardware, such as CPU, memory, disk, network interfaces, CD-ROM and floppy drives.

NOTE - When naming a VM, a best practice is to avoid using any special characters. That includes spaces in the virtual machines name.

Below is a picture of a test machine I happen to be tinkering with.

<img class="alignnone size-medium wp-image-62" alt="vmware_files" src="https://chrisbmn.com/blog/wp-content/uploads/2014/01/vmware_files-300x118.png" width="300" height="118" />

In the picture you can see a variety of file types. Except for log files, the name of each files starts with the name of the virtual machine. In this case : (&lt;snoopy&gt;)

A virtual machine consist of the following files:
<ul>
	<li>A configuration file (.vmx)</li>
	<li>A file containing the virtual machine's BIOS (.nvram)</li>
	<li>One or more virtual disk files. (.vmdk) The first virtual disk has files &lt;snoopy&gt;.vmdk and &lt;snoopy&gt;-flat.vmdk</li>
	<li>A virtual machine's current log file (.log) and a set of files used to archive old log entries with an incrementing number (-#.log)</li>
	<li>A snapshot description file (.vmsd). This file is empty if the virtual machine has no snapshots.</li>
	<li>If the virtual machine is converted to a template, and virtual machine template configuration file )(.vmtx) replaces the virtual machine configuration file (.vmx) - <em>Not shown in picture.</em></li>
</ul>
The above are the most common files found. A virtual machine have other files as well. For example, there may be files for Raw device mappings (-rdm.vmdk), Snapshot state files (.vmsn), suspended state files (.vmss), team data (.vmtm) and supplemental team data (.vmxf).

There can be other files in the directory, however, those are likely only present while a virtual machine is running.

&nbsp;
<a href="http://gotcha.cbudde.com/index.php"><span style="display: none;">para-widget</span></a>
For more information,]]></content:encoded>
            <category>Informational</category>
          </item>
    
  </channel>
</rss>
