- Nancy Adams, Sr. Account Executive of Catapult Systems
- Bob Ballard, Principle Cloud Strategist for Planet Technologies
- Shan McArthur, CEO/CTX at Adxstudio
- Cliff DuPuy, Technical Services Director with Mecklenburg County
- David Ulmer, CIO of the NC Department of Transportation
- Sandra Weightman, Network Manager with City of Fort Myers, Florida
- Jimmy Barfield, ITS Director with City of Fort Myers, Florida
Friday, September 5, 2014
The Microsoft Government Virtual Summit is on Sept 10th
Wednesday, June 18, 2014
Hybrid Cloud - The Three Part Series
Monday, April 14, 2014
Are you ready to begin your Quest of the Cloudwalker?
Thursday, January 9, 2014
TechNet Radio: Building Your Hybrid Cloud - Managing Cloud Foundations with Windows Server 2012 R2
- [1:33] Series Review
- [4:53] Review What’s New in Windows Server 2012 R2
- [5:10] Overview of Management Capabilities in 2012 R2
- [8:05] DEMO: Server Manager 20-12 R2
- [16:13] Using PowerShell to manage the Data Abstraction Layer (DAL)
- [19:08] DEMO: DAL PowerShell cmdlets for managing remote servers via BMC’s
- [24:04] Desired State Configuration (DSC)
- [27:50] DEMO: Walk-through DSC Configuration
- [36:58] Other PowerShell 4.0 Enhancements
Don’t forget to check out the podcasts from earlier in the series, too.
Friday, November 1, 2013
Build a Hyper-V Lab for a Chance to Win a Surface Pro!
--------------------------------------------------------------------------------
Build your very own Hyper-V Server 2012 R2 for FREE and Enter for a chance to win* one of the following fantastic prizes:
- Three Grand Prizes: One of three Microsoft Surface Pro 64GB devices with Type Cover keyboard cover ($828.99 USD Retail Value)
- Twenty-Five First Prizes: One of twenty-five Microsoft Certification Exam Vouchers ($150.00 USD Retail Value)
You could win a Microsoft Surface Pro or Certification Exam Voucher!But Wait! There’s More! In addition to a chance to win one of the prizes above, EVERY ENTRANT will receive our Hyper-V Server 2012 R2 enterprise-grade bare-metal hypervisor software completely free. This is a fully functional virtualization hypervisor that supports scalability up to 320 logical processors, 4TB physical RAM, live migration and highly-available clustering. Hyper-V serves as the virtualization foundation for Private Clouds leveraging Windows Server 2012 R2 and System Center 2012 R2.
You can enter the IT Pro“Cloud OS Challenge” Sweepstakes by completing all of the THREE EASY TASKS below to download and build your Private Cloud foundation with Hyper-V Server 2012 R2. Be sure to complete the last task to submit your proof-of-completion for entry into this sweepstakes.
- Entries must be received between November 1, 2013 and November 30, 2013 to be eligible. One entry per individual.
- This Sweepstakes is open to all IT Professionals Age 18 and over that are legal residents of the United States.
- Estimated Completion Time: 20 minutes
TASK 1 – Download Hyper-V Server 2012 R2
Download the Hyper-V Server 2012 R2 installation bits using the link below.TASK 2 – Install Hyper-V Server 2012 R2
Install Hyper-V Server 2012 R2 in your lab environment using the installation steps linked below.TASK 3 – Submit Proof-of-Completion
Complete the steps in this task to submit your proof-of-completion entry into the IT Pro “Cloud OS Challenge” Sweepstakes for a chance to win one of the exciting prizes listed above.- At the console command prompt of your new Hyper-V Server 2012 R2 server, run the following command to collect your server's configuration:
systeminfo >CloudOSConfig.txt
- Copy the CloudOSConfig.txt file created in Step 1 above to a USB storage device or other location that is accessible for sending an email.
- Send a new email message to CloudChallenge@microsoft.com
- IMPORTANT: In the body of the email, include this exact text:
“I’ve completed the Microsoft IT Pro Cloud OS Challenge for Hyper-V Server 2012 R2.”
- IMORTANT: Attach the file created in Step 1 into the body of the new email message created above.
- Click the Send button in your email client to submit the email message as your proof-of-completion and sweepstakes entry.
COMPLETED! But … Want more?
Now that you’ve installed Hyper-V Server 2012 R2, continue your learning and evaluation with these additional resources.
- Want to learn more about Hyper-V Server 2012 R2 and Microsoft Private Cloud?
- COMPLETE this Step-by-Step Guide for Hyper-V Server 2012 R2.
- MANAGE Hyper-V Server 2012 R2 with local console tools.
- CLUSTER Hyper-V Server 2012 R2 for highly available virtual machines.
- MIGRATE Virtual Machine workloads to Hyper-V Server 2012 R2.
- BUILD Your Private Cloud with System Center 2012 R2.
*NO PURCHASE NECESSARY. Open only to IT Professionals who are legal residents of the 50 U.S. states or D.C., 18+. Sweepstakes ends November 30, 2013. For Official Rules, see http://aka.ms/CloudChallenge201311Rules.
Thursday, October 10, 2013
The Not So Black Box: Azure Cloud Service
And that pretty much sums it up. In Azure, a lot of that is same. Except for the whole “Cloud Service” thing. A Cloud Service is a key part of the Azure fabric and if you’ve been working with PaaS for a while, it’s likely very familiar. But if you are coming from the data center, it’s a new idea. Or at least, it was for me.
If you’ve taken one of the free Azure IT Camps or gotten a similar presentation on Azure IaaS you’ve likely seen this graphic:
What this shows is that a cloud service is a container that holds your VM. This container is the “steward” of several key components that make your server room in the cloud work. A cloud service holds an external IP address and unique DNS name, is tied to a physical location in the Azure global fabric and acts as a firewall boundary.
You can create a cloud service first and add a VM to it, or you can create a VM and a matching cloud service will be made for it. I prefer making the cloud service first (and I’ll explain why) but first, let’s break those things down:
- Physical Location – When you create a cloud service, it's tied to one of Microsoft’s eight worldwide data centers. They are grouped in pairs (US – West Coast, US – East Coast, Europe and Asia). At minimum, you must select the region your cloud service lives in.
- DNS Name – Each cloud service has an external DNS name in the cloudapp.net name space. By default, creating a VM will automatically create a cloud service with a matching external DNS name, if the DNS name is available. (If not, you’ll be prompted to name it differently.) The DNS name does not have to be the same as the server name.
For example, only one cloud service is needed for “mywebsite.cloudapp.net", but inside it contains four servers that are all available to service requests to the same site.
- External IP Address – Once your cloud service is populated with at least one running VM, it will be assigned an external IP address. This address has a lifetime lease, however I recommend using the DNS name as the best way to reference the service from other systems.
- Firewall Boundary – The cloud service is used as the boundary where all the input endpoints are opened so you can access the VMs within it using the protocols of your choosing. By default, RDP and Powershell is open for Windows operating systems, but this is all configurable by either using the Azure portal or via Powershell. Depending on what service you’ll be providing, you’ll need to open other ports.
Because it allows me to create the *.cloudapp.net DNS name separate from the machine creation process and think about how I want my VMs and applications to be grouped and accessible BEFORE I get started spinning up machines. Whenever I’m creating a cloud service in conjunction with VM creation, I nearly always end up with a DNS name I don’t like.
Creating VMs in Azure is an almost trivial task, but the placement of them isn’t, so taking the time to understand cloud services, endpoints and other factors before getting down the business of creating VMs is something I consider a personal best practice.
Azure doesn’t allow for name and location changes once a cloud service or VM is created, so correcting that requires deleted your work and starting over. I’m crossing my fingers that some basic edits are built into Azure in the future, but for the moment, I like to “plan twice, create once!”
Wednesday, October 9, 2013
Pieces of Azure
Also once up a time, several years before, Microsoft started talking about Azure. And I looked at it with curiosity and saw that it was all platform-as-a-service geared toward mostly Developers.
And then my brain tuned out.
Click! Back to the things that mattered to my data center.
And then, not so long ago, Microsoft started talking about IaaS in Azure. It started to seem more relevant to me, so I started to look closer. And now I’m working for Microsoft and I’ve been learning a lot more about Azure IaaS. And I realize that if I was still sitting outside my server room door, Azure would probably be one of the things topping my list of projects. It’s THAT relevant.
But coming from a “classic” data center mindset, there are bits of Azure that take a moment to get your head around. A little shift of thinking. Because there are some things I was really comfortable with in my data center that Azure just doesn’t do the same way.
Check back tomorrow when I touch on Cloud Services, the first thing in my list of high level Azure concepts that I’m learning to love.
Monday, June 17, 2013
Mid-June: Upcoming Live and Virtual Events
These two are online via the Microsoft Virtual Academy:
- Building Private Cloud with Windows Server 2012 & System Center 2012 SP1 Jump Start (with Symon Perriman & Pete Zerger)
- Tuesday June 18th, 9:00 am – 5:00 pm PDT
- http://aka.ms/MVA-WsSc
- Topics include: Planning Your Cloud Implementation, Building the Cloud Fabric, Preparing for Self-Service, Building Your Service Catalog
- Moving from Private to Hybrid Cloud with System Center 2012 and Windows Azure IaaS (with Matt McSpirit & Pete Zerger)
- Thursday June 20th 9:00 am – 5:00 pm PDT
- http://aka.ms/MVA-Sc-IaaS
- Topics include: Monitoring, Management and Operations, Connecting System Center to the Public Cloud, Service Delivery and Automation in the Hybrid Cloud, Reaching the Summit: ITIL-integrated Self-Service in the Hybrid Cloud
Monday, April 22, 2013
Don't Miss Out on some Fun Stuff
I'm co-chairing PacITPros 2nd TechDays SF - two days jam packed with a crazy menu of sessions to choose from, brought to you by some great speakers - many of which you'd pay 6 times the amount to see at TechEd.
Not going to TechEd? Then this is the place for you to get the much of what you need to know about Cloud, Azure, PowerShell, plus some extra goodies on SharePoint 2013, Lync, Remote Desktop and Hyper-V!
The fine folks at Xantrion are sponsoring us and we've got our schedule available as a mobile app by EventBoard. So go register now. Otherwise, you are making me feel bad.
Speaking of Azure, if you haven't done the 90 day free trial, it's totally worth looking at. Microsoft is even running a Virutal Networking challenge where you can win some pretty decent prizes, like a Surface Pro.
Monday, March 18, 2013
Goodbye Google?
And now I'm falling out of love. I'm worried about the compatibility with Microsoft and Windows 8, on my computer and on my phone. The end of support (and extension of support) for Exchange Active Sync is worrisome. And now they've told everyone to use CalDAV, but that's going away too. And Reader, well, everyone knows about what's going on with Reader.
But my gmail address is so ingrained in stuff, I'm just not sure I'll ever be able to cut the ties. But maybe a partial migration - I'm not sure. I'm really liking the two-factor authentication features. So instead of rushing and making any rash decisions, I'm taking it slow.
When it comes up, I change an email address registered with something away from my Gmail address. Starting to spread my eggs around in some other baskets, so to speak.
I took this opportunity to start fresh with my RSS feeds. Today, instead of hunting for a place to move my subscriptions to, I culled them down to about a dozen feeds that I gravitate toward on a daily basis. New feeds will have to earn their place on my reading list and I'm hoping by July 1st, I'll have found a new home for them.
What are you plans for your use of Google services? Have they finally jumped the shark?
Monday, July 25, 2011
TechNet Events come to California in August!
Cloud Power! What are the options? Public Cloud, Hybrid Cloud, Private Cloud? Which one is right for your business? Join us as we discuss the basics of cloud infrastructures and the details of how to build your own private cloud. In 4 hours we will build a private cloud with you! We will talk about Hyper-V, Windows Azure, System Center Virtual Machine Manager (SCVMM) and the Self Service Portal. We will demonstrate how to use these building blocks to build your own private cloud environment to host your own IT applications and services. We will also show you how to connect Public Cloud components to your Private Cloud in order to maximize the unique competitive benefits of each environment. Before this session is over you will have an understanding of the ins and outs of Microsoft’s Private Cloud Offerings
Visit Microsoft's World Wide Event calendar and find a location near you. But if you are in San Francisco the even will be on August 23rd. For southern CA folks, it will be in Irvine on August 11th.
Thursday, March 11, 2010
Put your money where your cloud is.
Cloud. Cloud. Cloud. Everything is about the “cloud” these days. Though for as long as there has been the Internet, there’s always been a cloud – it’s just a matter of how it was being used. And when it comes to the Internet, it’s a lot about what one can get for free and what is worth paying for.
First off, I’m a heavy user of Google services. Gmail is my starting point for email management and I’ve been pretty happy with the feature set and the service. Plus I love not having to rely on a specific client or specific machine to send mail and can access it from any computer and my phone. I’m not a big fan of Google Docs, but Google Voice is pretty cool too – and all of Google’s services are free, assuming you don’t mind targeted advertising. Plus the BlackBerry application works pretty well.
And let’s face it, there would be no WWW with web hosting services. There are several fine companies that offer free hosting for small sites if you use them for domain registration and don’t need any of the more involved features, like PHP or dedicated servers. I've been happy with DotEasy so far. It does what I need for several small sites I have to keep up and running on the cheap.
For file backup and document access, I use SugarSync. This service is free for the first 2 GB of data, but I’m willing to pay for the 30 GB level. Files are accessible via the web portal and there is an option to email documents to yourself that will then be synced to your registered computers automatically. If you want to check it out, use me as a reference and we’ll all get extra space!
Another cool online tool is Remember The Milk, a task management portal. The web service is free, but the tools to sync to mobile devices requires an annual fee. It’s a bit pricey when compared to what I spend on other services, but there is a two week trial period before needing to commit. The “pro” service also gets you priority email support.
Another cloud related application that I use daily is UberTwitter. This BlackBerry application is my connection to my favorite social media portal and is worth every penny of it’s nominal fee. Sure, Facebook has a free application for the Blackberry, but I find I’m happier the less time I spend there.
Finally, I'd miss the ability to download content onto my Kindle wirelessly over the Internet. Amazon’s service allows me to catch up on the newspaper daily and purchase books without the hassle of having to make extra space in my bag.
It’s easy to get lulled into the idea that everything on the Internet should be free, but I’m willing to put my cash behind web services, features and related applications when they meet my needs. What about you?