Wednesday, February 23, 2011

Windows Server Solutions Best Practice Analyzer (BPA)

Wow, the new Best Practice analyzer is up and ready for download! This new BPA can be installed on the following products and will show you best practices for each one!

  • Windows Small Business Server 2011 Standard
  • Windows Small Business Server 2011 Essentials
  • Windows Multipoint Server 2011
  • Windows Storage Server 2010 R2 Essentials

So if you’re unsure if you’re doing something right, or want to make sure you’re following best practices, get the BPA installed!


UPDATE: As called out in the comments, you'll also need the Microsoft Baseline Configuration Analyzer 2.0 before installing.

Monday, February 21, 2011

Windows MultiPoint Server 2011 has RTM’d!!!

I’ve mentioned Windows MultiPoint Server 2011 on this blog before, like how well it works with Windows Small Business Server 2011, or how it fits into your small business, and how you can leverage it to simplify your client story.  Or if you were at SMBNation Fall 2010 in Las Vegas, or attended the VICE(?) UG talk on SBS 2011 you had ability to actually hear me talk to you about it.

You’ve been patient, you’ve been waiting.  And now the wait is over.  Windows MultiPoint 2011 Server has RTM’d!!

Product Unit Manager of MultiPoint, Dean Paron, and Director of Marketing Sandrine Skinner announced today that MultiPoint is available (get the eval at the download center)!  MSDN and Technet subscribers are expected to receive it in the next week.  With the release of RTM, the hand off to the OEM partners happened earlier this month.


Dean Paron, Product Unit Manager, demos Windows MultiPoint Server 2011, source Brandon LeBlanc on the Windows Blog

More Details on the WMS Blog and SBS blog, but here is a snippit of that:

Volume License(VL) customers will be able to download and purchase Windows MultiPoint Server 2011 on March 1, 2011. Broader, public availability through partners will start mid-April 2011.

And by the way the evaluation version available on the Download Center today can be turned into a full production version when you purchase your VL license of Windows MultiPoint Server 2011- so there is no need for re-installation.

We also would like to take this opportunity to thank all of our beta testers for providing feedback and helping us refine and enhance the experience for this new product release.

There has been a lot of discussions around Windows MultiPoint Server 2011 over the last few weeks: it started at the BETT show, the largest tradeshow of Education technology, that took place in London early January where we first had the opportunity to showcase face to face Windows MultiPoint Server 2011 to customers and partners from around the world.

In our previous blogs around the Beta , we mentioned what’s new in Windows MultiPoint Server 2011 versus the previous release of Windows MultiPoint Server (WMS 2010) in terms of features and functionality.

We would like to also mention what’s new in terms of channel availability and SKU availability for Windows MultiPoint Server 2011:

Standard

Premium

Channel

OEM

VL Open Commercial

OEM (pre-install and ROK)

OEM Academic

VL Open Commercial

VL Academic

Number of simultaneous connected sessions you can run

10*

20*

Domain Join capability

Not supported

Supported

Hyper-V capability

Not supported

1+1 licensing model

*Actual number of connected sessions is based on host computer hardware capacity (CPU, memory, etc.), station hardware configuration (RemoteFX, PCI-E or USB) and usage workloads

As you can see in the table above, we now have 2 editions, Standard and Premium which have the same features and functionality except for the ability to join a domain, and ability to run as Hyper-V host or guest, which are only available in the Premium edition. Also the Premium edition is broadly available to customers and resellers through OEM and OEM Academic as well as through Volume Licensing Open Commercial and Academic.

Again VL customers will have access to Windows MultiPoint Server 2011 on the VL download site on March 1, 2011.

Also worth mentioning, we even had our own famous internal Windows 7 blogger, we’re sure you know him already, Brandon LeBlanc, who’s blogging about his experience with Windows MultiPoint Server 2011: check it out here at this link: http://windowsteamblog.com

We’re so excited about this release as in the WMS team we’re super passionate about delivering technology to help our Teachers and Students thrive and providing them with a Windows 7 experience, even as their school’s or campus’ IT budgets have been slashed.

Here’s the link to the Download Center for your convenience- Happy Windows MultiPoint Server 2011!!!!

Thursday, February 10, 2011

How to Enable TimeMachine Backup for your MAC to your Windows Small Business Server 2011 Essentials or Windows Home Server 2011

Well, I don’t often dabble around with a MAC, I just can’t get used to the single mouse button and pressing a key on the keyboard for a simple context menu.  I’ve quite possibly been assimilated to Windows.  However,  protecting your data is important, even if you are on a right-click less product.

As you probably know by now, the Release Candidate of both Windows Small Business Server 2011 Essentials, and Windows Home Server 2011 is now live. Which means you can download and install them!!  You should take a moment and do that now.  I’ll wait.

Once you have these installed, you can easily add your Windows based PC to the server and to the PC backup by simply going to http://server/connect on your client PC.  Click the install for Windows PC button and follow the instructions.  Windows PC’s are automatically added to the backup which takes place in a round robin style nightly.  When you’re on a Mac, it’s the same thing, but you click “Install for Mac”, you end up with a launch pad and access to the server, but no default backup.

It has to be possible right? I mean everyone knows that a MAC is really a *nix box with a really fancy UI (and no right-click).

Poking around on the Internet, you can find some steps, like how to get unsupported volumes to appear to the TimeMachine engine, with the help of a friend (thanks Fabian & Craig) we’ve managed to put together these steps, which work for both Home Server 2011, and SBS 2011 Essentials:

  1. First, create an SMB share on your server using the share permissions wizard, let’s call it Mac Backups.  Make sure the users who are on a Mac have Read/Write access.
  2. Change the Mac TimeMachine to show unsupported Network Volumes by going to Finder, then Applications, Utilities, Terminal.
  3. Inside the Terminal, type this command defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1.  This sets the showing of unsupported network volumes to TRUE.

 Showing Unsupported Network Volumes

  1. Obtain the MAC’s MAC Address. A MAC Address is the hardware address of the local network card.  It’s important to choose the MAC address of the built in wired connection.  To obtain this, you can run the command from the terminal: ifconfig | grep en0.

 Finding the MAC Address

  1. Next (and this is the confusing part, so bare with me) we need to create a sparse file on the MAC and copy the server share.  A sparse file is a file that you define a CAP size, but it will probably take up much less (we’ll define it as 200GB in this example).  This file creation process is a little tricky.  To do this, type in to the same terminal above: command ‘hdiutil create –size 200g –fs HFS+J –volname “<CLIENT_NAME> Backup” <CLIENT_NAME>_<MAC_ADDRESS>.sparsebundle’ Where the MAC client is called <CLIENT_NAME> and the MAC Address on the primary wired connection to the MAC is <MAC_ADDRESS>.  This means if you’re client name was OSX, and your MAC address is 00:00:1F:12:82:92, then your command would be: command ‘hdiutil create –size 200g –fs HFS+J –volname “OSX Backup”  OSD_00001F128292.sparsebundle’  .  Here is what it looks like this client is called “macmini2” and has a MAC address of 34:15:9E:09:00:94


Sparse File Created

  1. Copy this file to “\\SERVER\Mac Backups\” that you created earlier on the server. As you probably know if you are a MAC user, you have to mount the volume:

 Mount the Server Share on the MAC

  1. Load up the Time Machine settings from within System Preferences, and the sparse file you created above should be in the list.  Select this as the target for your backups.  This will have every TimeMachine backup backup directly to a share on the server:

 Configuring TimeMachine to use the sparse file

  1. Repeat for all your Mac computers on your network.

Once you have completed these steps, your MAC will start using the Windows Home Server 2011 or Windows Small Business Server 2011 Essentials as the backup TARGET.  This means it will back up over the network using the built in timeline functionality, on the schedule you define inside timeline.

What is also cool, is while the MAC won’t show a percentage complete like the PC does when performing the client backup, it will tell you the status right in the console, which of course falls through to the alerts.

Mac Backup Successful:

Mac Backup Successful

Mac Backup Unsuccessful:

Mac Backup Unsuccessful

So there you have it, How to backup a MAC to a Windows Home Server 2011 (aka Vail) or Windows Small Business Server 2011 Essentials (aka Aurora) Server.

For reference, here is the team reference for WHS v1

Saturday, February 05, 2011

Why I plan on using the new Windows Home Server 2011

I’m sure you have heard by now, that the Release Candidate of the new Windows Home Server 2011 is available for download. It’s a huge milestone, and I’m excited for the final RTM sometime the first half of this year!

Windows Home Server 2011

There has been a lot of negativity around upgrading to the Windows Home Server (version 1) product, to the Windows Home Server 2011 or even using it at all, all due to the Drive Extender removal. I do understand the pain. I do. But I don’t understand why people instantly now hate WHS????

Looking back, we remember that Drive Extender had some initial problems after the v1 release. Some corner case of editing large files that lived on the server, in some rare cases, these large files were corrupt, people wanted to turn Drive Extender off, it scared them. After Power Pack 1 came in to save the day, only then did people start to trust Drive Extender, and yes, they immediately fell in love with it. Easy drive extension with a side benefit of duplicating files on multiple hard drives (“dup ‘em if you got ‘em!”).

Removing DE was a very tough decision, but I ultimately agree with the decision given what I know.

But without drive extender, is the product not awesome? is your data not safe? This blog post is intended to tell you why I think WHS 2011 is still awesome, and still keeps my data safe. I am a new father (she’s 8 months old at the time of writing this) and I’m a hobbyist photographer. My photos are probably the most important digital thing to me, then my countless hours of work I’ve spent on my documents, then my e-mail, then all that other stuff, like ripped CDs and DVDs, and some HD DVDs.

Let’s start with the “Just Awesome” stuff… most of this bucket falls into the Remote Web Access site, so from the outside in we go!

Remote Access is just Awesome!

For one, right from the get-go you can customize the RWA about as much as you want:

Customized Logon Page

(This picture can be found on my photoblog here)

Remember, you also still get that free 3rd level web domain and matching trusted web certificate (from GoDaddy.com) on the home server.com domain name. Did I mention free security?

You get remote access to computers behind your network, but this time it’s powered by TS Gateway for Server 2008 R2! Yes, that means you can get dual monitor support, and you can take advantage of better optimization for remote access to your PC and better security using that same web certificate for encryption! Thus no longer using security protocols from 8 years ago.

Remote Silverlight Video Streaming

Yes, no more TwonkyMedia chewing up your processor, a built-in, secure, streaming engine based on Silverlight, with (if you put in a fast enough processor) media transcoding:

Silverlight Streaming

I also just *love* the photo slide shows. Sending access to the folks and letting them just watch 1000s of photos via a slide show, priceless:

Home Server Picture Slideshow

A Silverlight Music Player that you can make, save and use playlists on. which you can quickly switch music around in. I even use this player in my living room when I have get a get together. People just understand how to use it:

Silverlight Music Player

The ability to download or the ability to move files around without having to download. Yes, that’s right, delete, copy, cut and paste things all over the shared folders without actually having to download it.

Organize your Folders Remotely

That’s a pretty powerful remote access story, one you won’t find with add-ins that run this flawlessly on the WHS v1 product… oh wait, I’m not finished, check out my iPhone formatted remote access webpage:

iPhone Logon

iPhone Folder and File View

And it looks just as good on an Android and Windows Phone 7!

While we’re talking about media, let’s focus on the internal network. With an implementation of DLNA 1.5 open standard for compatible streaming, you can stream to your XBOX 360, Playstation 3, DLNA capable TV, iPad (with application), Windows 7 PC (or slate!) or any other DLNA compliant device. You can also configure which folders participate in the streaming, simply by adding them to the set of defaults.

Media Streaming Settings

If we’re going to talk about handy apps, do you remember that awesome Vista Gadget for WHS v1 by homeserverhacks.com? It was called ShareMaster. Well, now included in WHS 2011, is the Launchpad, which enables you to easily backup your PC, access your Remote Web Access site (without having to know the URL, even if it changes!), Shared folders, and if you’re an admin, the Dashboard. It’s also completely extensible by the SDK, so developers can kick it up a notch and add more functionality:

Client side Launchpad

That’s a whole lot of awesome packed into one box! I want to switch gears now and talk about how WHS 2011 protects my data, and why I think it’s safe. To me, the leading cause of data loss is usually hardware failure, most often then not, it’s a harddrive failure. Although there is the rare instance it can be a natural disaster, which happened to my uncle about this time last year.

Last but not least, is something you can’t see, that excites me the most. The Windows Home Server 2011 SDK (still in beta) is HUGE compared to the v1 product. Moreover, it’s SHARED with both Windows Small Business Server 2011 Essentials, and Windows Storage Server 2008 R2 Essentials. What does that mean? it means that things designed for business, can easily be used in the home (and vice versa). That means lots and lots of add-ins! and high quality ones at that. Nothing like developing for 3 platforms, instead of just one.

Data Protection, Why My Data is Safe on WHS 2011!

Data protection is all about having data on multiple drives. Take a look at RAID configurations. RAID5 is one of the most popular RAID configurations in the small and medium businesses, it’s probably sufficient for a home too, but sometimes it can be challenging to set up. RAID5 is a drive configuration that wastes up to 1 of a set of 3 or more drives to maintain “parity” bits. These parity bits are used to rebuild data on a drive if it’s lost. The system can run in limited capacity as soon as this drive dies without the end user knowing it. All in all, it’s a sweet system, but loose that 2nd drive before you can rebuild the array, and your data is toast!

What does Windows Home Server 2011 do? It keeps the data you choose on a second hard drive. Yep, the data on all your client computers is automatically backed up nightly to the Home Server. That’s up to 10 PCs safely backed up, every night. So now the data on your clients, is also on your server, two hard drives. There is a delay of 24 hours, but it’s there. Even if you get a Facebook Virus, you can roll back to the day before. This is exactly the same functionality as WHS v1, except it’s faster, and more robust.

What about the data on the server? Server’s hold data, isn’t that data safe? Yes of course it is. You can backup that data to an internal, or better yet, external hard drive! Unlike WHS v1, this has HUGE improvements. First, the backup is automated. Automated backups take the human error factor out, and the backup uses snapshots, so even open files are captured. I think I remembered to backup my WHS v1 about once/month. Now I’m getting 2x/day! And you know what, I choose the defaults because the server on my data doesn’t change that often. You can bump this up to as often as every 30 minutes. That’s your data, on another hard drive, 30 minute window of possible loss, but if I can’t trust a hard drive for 30 minutes, I’ve got problems with all the data that DOES change on my client computers, because that backs up every 24 hours! [And you can’t tell me that the purchase of an external hard drive isn’t worth your data backup, especially you, Mr. 22TB WHS v1! With or Without Drive Extender]

And…. if you want to do RAID, you can do RAID, you can do RAID1, RAID5, or even RAID10! If you want to do cloud backup (which I do because I’m too lazy to take the backup hard drive out of my house), you can do that, as a few providers are building add-ins.

So what did I really loose with Drive Extender being gone?

  • In the event of a hard drive failure, all my data isn’t still available until I put in a new hard drive and restore that drive back to its original state, if I didn’t configure RAID.
  • I can’t easily extend my storage when I have a disk that’s running out of space.
  • I can’t grow my share sizes past the size of all the hard drives in the system
  • My server storage responds faster because I’m not using DEMigrate.exe all the time

None of the above actually pertains to data loss. It’s all convenience. It was definitely nice to have in WHS v1, but I don’t think it’s absolutely needed in a server in the home.

Massive Data Collections

Let’s talk about Massive Data Collections quickly. Because WHS v1 made it so easy to grow your data collections, far beyond the size of one disk, without having to worry, “have I locked myself in to only X amount of data?”.

Let’s talk about my photo collection. It’s 80GB right now. That’s still not 1TB. I’m an amateur photographer, one that shoots a lot of photos, with a Canon 5D Mark II (a 21mp camera). I still have tones of space on a single 2TB drive to grow. What if I’m a professional photographer? Well, professional photographers don’t use Windows Home Server, at least I haven’t come across one. A good friend of mine has been interviewing professional photographers for some time, and they work with such large photos, they keep them locally, then archive them, usually via USB. Then if they want to work on them, they just plug them into the computer they are on, and it’s a local picture again. \

Video collections. My Canon 5D Mark II takes 1080p video. I use it a lot, that’s probably what jumped my photo collection from 60-80G in a year… but I’m still within reason. My video collection, is a rip of all my DVDs, and some HD-DVDs, and it’s still only 130GB, that’s still less than 1TB, and I still have all the DVDs in the closet, my music collection is 40GB… still have all the CDs. But I agree these data collections can get quite huge. This is probably the one place folks will actually miss Drive Extender. I couldn’t agree more.

… But maybe it’s time to take a hard look at what data you’re hording on your server. Do you really need to be a digital hoarder and save everything? I mean even Mozy can’t deal with you, as they announced they are killing their unlimited data plan. People save a lot, and it costs money, but do you really need it all? The guys at TechCrunch say “I assure you that you will never print those 10,000 pictures you have stored in iPhoto. Never. Ever.”.

If you absolutely *must* keep all that data, you should have a plan for it anyways. It’s not like if you store magazines for comic books, you don’t put aside space in a closet for them. With a plan, you can easily map out your storage needs, and growth. In fact, a few people even have growth charts of their storage growth from WHS v1, so you *know* the storage you’re going to need! I also suggest turning on File System Resource Manager and cataloging exactly which data is being used. I bet after a year, you use less than 30% of it.

So bottom line, I stay trim with my data (rule #1 of becoming a better photographer is forcing yourself to throw away 70% of your photos), I feel like Windows Home Server 2011 is the right product for me, for simplified access to my data. Simplified Management of my network, and extremely safe data protection plans. Moreover, because it’s Windows, it just works with other things in my house.

I liked Drive Extender too, but the product isn’t dead, in fact, it’s still awesome!

Friday, February 04, 2011

Windows MultiPoint Server 2011 and Interaction with Small Business Server 2011 Essentials

I know I have talked before about Windows MultiPoint Server 2011, and how it can help your Small Business with thin clients, old clients, seasonal employees and even reducing the number of machines in the office by getting one nice one.

I wanted to touch on this again, now that the Release Candidate of Windows Small Business Server 2011 Essentials is available. With this release of SBS 2011 Essentials, a new level of integration between MultiPoint 2011 Premium and SBS 2011 Essentials is here. MultiPoint has some features that just work well with SBS, and vice versa. Let’s take a look at those so you know what to expect. You are required to get MultiPoint 2011 Premium for these features to work as that's the version that allows domain join.

1. MultiPoint Server Premium can Join the SBS 2011 Essentials Server

That’s right, MultiPoint can go straight to http://server/connect and join just as if it was a client computer. As the MultiPoint administrator on one of the local sessions, simply browse to the server /connect page and click the Join this Windows PC. The join is pretty seamless, which then brings us to the next point…

2. Domain users can log into the MultiPoint 2011 Premium Server

Once domain joined, the MultiPoint server allows all domain users to log in as standard users to the server. This includes local sessions or remote TS sessions. This can essentially render the Users tab of MultiPoint useless to you, but now you can manage your users from inside the Small Business Server 2011 dashboard.

3. MultiPoint Server shows up in the SBS 2011 Essentials Server Dashboard

Yep, you can see your MultiPoint server in the dashboard, just along with your other clients, it appears online or offline depending on the state of the server.

MultiPoint Server in the SBS 2011 Console

This now brings me to my next point, because you probably saw that the backup status of this MultiPoint server is Successful

4. MultiPoint 2011 is backed up by SBS 2011 Essentials

Yep, as if it’s a client computer, the MultiPoint 2011 Server is backed up as if it’s a client computer. In fact, it’s the *only* server operating system that can be backed up by the SBS 2011 Essentials backup engine.

MultiPoint backup

5. MultiPoint appears in the Remote Web Access of SBS 2011 Essentials

Last but not least, the MultiPoint 2011 server automatically appears in the Remote Web Access for SBS 2011 Essentials, and users can connect directly to this server remotely.

MultiPoint in RWA

Using the SBS 2011 Essentials dashboard, you can control which users have access to this computer simply on their user properties object

User Properties

There you have it. As mentioned before, MultiPoint is a TS-in-App-Sharing server on steroids. You can use local settings via USB, or remote sessions using either thin clients, remote computers, or just local computers you don’t want to upgrade to Windows 7, but still have this experience. The more users you configure to connect, the better the hardware you should configure.

While this is all content that applies to RTM, currently SBS 2011 and MultiPoint 2011 are in Beta.

Tuesday, February 01, 2011

How to set the Default Printer for All Users in your Small Business Server 2011 Standard or Essentials Network

One of the biggest pains in a small business is setting up the default printer that everyone needs to use.  With these high powered printers that can handle pages per second and are often shared between a very high number of small business employees, if not all, setting the default printer can be a tedious task.

Before you can start, you need to make sure that the clients understand the new policy.  Windows 7 and higher have the GPO extensions needed to understand this policy, but they will need to be installed on Windows XP or Windows Vista clients.  If you are running SBS 2011 Standard, you can create a "Feature Pack” inside WSUS server and deploy it to all your clients without visiting them.  If you’re running SBS 2011 Essentials, you’ll have to manually install it on each client computer.

Next, we should get the Group Policy in place.  The Group Policy will apply to all users as they log in to change the default printer, should we set it up correctly.  To do this we’ll first create a Group Policy Object to work with.  It’s always good practice to create a new Policy that you can enable/disable per item you wish (although keep in mind that the more policies you add, the slower it takes clients to apply them all).  Here is how to create the default policy:

  1. Click Start, Administrative Tools, and then Group Policy Management.
  2. Expand Forest: <domain.local>, then Domains, and then <domain>.local
  3. Right-click on domain.local and click Create a GPO in this domain and Link it here
  4. Give it a friendly name, I called mine Default Printer Policy, leave the starter GPO to (None)

Now we have a policy to work with.  Next up we have to make this policy do something.  Right now it doesn’t.  As a test, I like to make sure it works for one user first, so let’s find a guinea pig and go from there:

  1. With the new Default Printer Policy selected, remove Authenticated Users from the Security filtering and place in the guinea pig user. Select Authenticated Users, and click Remove.
  2. Click the Add… button, type in the user’s alias and click OK.

Default Printer Policy

This ensures that the policy only applies to the one user.  Now let’s set up that default printer within the GPO:

  1. Right-click on the Default Printer Policy GPO and chose Edit…
  2. The GP Management editor opens, expand User Configuration, Preferences, Control Panel Settings, and select Printers:Printer Policy
  3. Right click on Printers, and choose New… and then Shared Printer. New Shared Printer Properties
  4. Under the Action drop down, make sure it says Create
  5. Under the Share Path: put the path to the shared network printer
  6. If you want it to be the default printer, tick the Set this printer as the default printer.  In some cases, few people in the business have private/personal printers, you can exclude these if there is a local printer attached by checking the next box

This of course implies that the printer is installed on each client computer you want to use it on.  What I did was install the printer and share it off the server.  This had the x64 drivers on the server for handing out to the clients on the network.  So the MultiPoint 2011 server on my network automatically installed and configured the printer as the default one.  However, the 32 bit Windows 7 clients did not.  In order to do this, I had to add the x86 drivers to the printer.  Do do this:

  1. Right-Click on the printer that’s installed on the server and choose Printer PropertiesPrinter Properties
  2. On the Sharing tab, choose Change Sharing Options and then click Additional Drivers Sharing Properties
  3. Select the x86 check box and click OK..  To install these you’ll need both the 32-bit drivers for your printer (usually downloaded or on a DVD), and a 32-bit disk of the operating system.  (If you have any Itanium hardware, you’ll have to repeat for this as well)

Once this is finished, the clients both x64 and x86 will install the drivers straight from the server instead of Windows Update.  Which is much faster! 

There are additional steps you can take to make parts of your network choose different printers as their defaults etc.  For those I’m going to send you directly to my two sources of information

The Windows Server Administration blog provided most of the information, with their blog post available here.

The Group Policy Center blog provided some reference info, with their blog here.

Tuesday, January 25, 2011

Presentation on SBS 2011 Essentials and Standard on top of HP hardware, by yours truly!

I’ll be visiting the Vancouver Island Computer Experts(?) User Group at the beginning of February for a presentation on Small Business Server 2011 Essentials and Standard running on HP hardware.

  • Date: February 2, 2011
  • Time: Welcome at 6:30, kick off at 7pm, runs until approximately 9:30pm
  • Location: Camosun College Lansdowne (3100 Foul Bay Road, Victoria, BC)

More Details & Registration can be found hereimage

Learn about:

Come to see what’s new in the new versions of Small Business Server, ask some questions, check out two different pieces of Hardware from HP, the Intel based ML 330, or the HP MicroServer hardware so you can make the right choice for your businesses between which version of Small Business Server you should get, and which hardware you should get to match that solution.

Abstract:

Join Sean Daniel, Senior Program Manager from Microsoft Corp. as he talks about small business server solutions coming from Microsoft and HP. See what’s new with Small Business Server 2011 Standard and Essentials and learn about HPs offerings for Small Business server hardware.  As a Small Business program manager for 10+ years, he’ll talk about the new servers as well as be able to answer questions on the old servers from Microsoft.  Come with questions on the new or old products, with his experience in the field, he’s perfect to bounce questions off.

If you are an IT support shop, your companies "go to IT person", an independent IT person, the manager/implementer for your small business, or interested simply interested in small business technology, this evening is for you!!

image

Register here.

Monday, January 24, 2011

Feedback Request: Help us improve SBS 2011 and Windows Home Server “Vail” Online Help

The Home and Small Business Server documentation team would like to hear from you!! Please visit Windows Small Business Server 2011 Essentials Online Help and Windows Server Code Name “Vail” Online Help websites, check out their content, and then click What do you think of this website? Take a quick survey at the top of the page.  The survey is anonymous so you can give it to us straight up!

User Help

This information will be used to improve the experience and content on this website, bringing more value to consumers like you!

Thursday, January 06, 2011

Windows Multi Point 2011 and How it Fits into Your Small Business

I’ve talked about Multi-Point before, and I mentioned it in my presentation at SMBNation in Las Vegas at the end of last year, but yet I still get the questions about education only, or can we use it in business? 

image

Well, it’s true that the current version of Multi-Point, 2010 that’s available today is out in the field for education only (or at least it’s hard to get or manage if you’re not in education).  If you’re in the market for it, because you like the idea of a single computer and multiple users, there were two major problems.  The OEM edition was non-domain joinable, and only supported 10 users.  The Academic version was only via volume licensing to qualified people, and supported 20 users and the beloved domain-join functionality.  So really, if you wanted something useful, really do have to be in the education field to even get your hands on it. 

Also, there are some features that are good for education, but kind of confuse users outside in the working world, like if you put a thumb-drive into one of the USB ports at a workstation, it appears to all the work stations.  Good for education, not so great for business.

Well, if you wrote off Multi-Point 2010 for business, you probably haven’t been paying attention to the new Multi-Point 2011, currently in Beta (obtain it here)

image

With Windows MultiPoint Server 2011, the licensing and purchase model has been simplified.  There are still two versions as before, with similar restrictions:

  • Windows MultiPoint 2011 Standard – still cannot join a domain and still has a max of 10 work stations
  • Windows MultiPoint 2011 Premium – CAN join a domain as before and can have up to 20 workstations

The most important piece of information to note in the SMB space, is that BOTH of these MultiPoint editions are offered in multiple Microsoft licensing channels.  So now you don’t have to be a large school to actually purchase the more useful edition of MultiPoint.

What’s better, is that USB issue mentioned above is fixed, a USB thumb-drive only appears to the session its plugged into, and not all the users on the server. 

Additionally, the 2011 version of WMS has support for thin clients.  Here is where I think the big win for Small Business lives.  If you have 12 XP workstations, you can simply obtain 1 copy of MultiPoint Premium and now each of those XP workstations have another 5 years of life but yet, they get a full Windows 7 experience when used as a WMS workstation over the network. 

What??

Yeah, that’s what.  WMS is essentially a turnkey TS server on steroids.  You can TS to it, or you can plug in USB based workstations, or use OS down-level desktops.  I’ve even seen old useless Linux based laptops, that have support for RDP be instantly turned into a powerful Windows 7 workstation.

If you’re a VAP, selling it should be a breeze.  Just show the business owner the console where you can get a thumbnail of each individual workstation.  Business owners will love that they can snoop on their employees desktops for when they are using Facebook, or other non-productive functionality, or even to just confirm employee behavior.

Thumbnail View of Desktops

You can really tell that the Windows MultiPoint Server, and the Windows Small Business Server teams share the same floor in Building 43 at Microsoft, our consoles look similar.  Sadly, they do not completely integrate for this release.

I’ve installed WMS into my SBS 2011 Essentials (Aurora) network and it works great.  I haven’t tried on an SBS 2011 Standard network, but there is nothing to prevent it from not working.  I’m seriously considering having the standard version run at my house for when guests arrive and want to use a computer.  Even John Zajdler has tried it in his Aurora Network

If you haven’t tried it yet, and it’s interesting to you get on it because the release candidate is already out.. which has gotta mean it’s close, right?

Wednesday, January 05, 2011

Happy New Year, what’s in store for you in 2011

First off, I wanted to wish all my followers a very happy new year.  2011 is shaping up to be a killer year for small businesses.  There is so much new Microsoft technology coming out to make business more efficient, it’s hard to keep tabs on it all.  I also wanted to apologize to my followers about my lack of posts.  I’ve just returned from a 5 week paternity leave and before that, I was getting my stuff in order.

First, Windows Small Business Server 2011 Standard edition as Released to Manufacturing (RTM!).  This release is pretty exciting and signifies a number of different milestones both internal to our team, and external to the public.  Let’s focus on the external. 

image

SBS 2011 Standard offers small businesses a completely on premise solution to run their business, including the new Exchange Server 2010 with SP1, SharePoint Foundation Services 2010, and the coveted Server 2008 R2 base operating system, bringing security to a new level.  If you’re familiar with SBS 2008, then you’re in luck, because this product brings a bunch of new functionality, but the learning curve will be super short for you, but it still has enough meat in the product to keep it interesting.

For example, the New and Enhanced features of SBS 2011 Standard are:

  • Windows Server 2008 R2 Standard as the base OS, with it’s added security and speed over the 2008 base platform
  • Exchange Server 2010, with SP1 brings greater reliability and performance to your small business.  In addition to many additional features like resource sharing (my personal favorite)
  • SharePoint Foundation 2010 makes using SharePoint even easier!
  • WSUS 3.0 with SP2 to help you manage patches with ease
  • The new version of Remote Web Access (formerly Remote Web Workplace), with movable widgets.
  • A redesigned http://companyweb
  • Improvements into automated domain management
  • An updated Best Practice Analyzer (BPA)

So it’ll be a few short weeks more before you can get your hands on this baby, just keep in mind the system requirements if you’re already procuring a machine for it.  Exchange needs more RAM than you’d probably think about it.

And coming the first half of this year, is the highly anticipated Windows Small Business Server 2011, which ties to Office 365, a true hybrid in the server market.  You can obtain the public beta for SBS 2011 Essentials here (with a new public preview coming soon!).

Also coming this year is Windows Storage server codename “Breckenridge”, which provides a client backup engine for your SBS 2011 Standard or SBS 2008 installs.  It’s like a win-win situation in 2011.

Finally, for media hounds, Windows Home Server “Vail” is coming as well, which uses Silverlight to stream videos and pictures out to the web, or DLNA 2.0 to stream it inside your home, backup your home PCs, your server.

All three of the above will also leverage an ecosystem of add-ins to extend the functionality of the server of your choice.  As I said, an exciting 2011.

Thursday, November 11, 2010

Presentation Material from SMBNation

Did you manage to make it to SMBNation 2010?  Were you in the jammed packed rooms for “Aurora” or “SBS7”.  Now that we have full product names, pricing and estimated release dates, it’s time to start talking about these great products.

SMBNation

While the names in the decks are unchanged, I am now making the SMBNation decks available to you for both sessions:

Windows Small Business Server 2011 Essentials (known at SMBNation as “Aurora”), and

Windows Small Business Server 2011 Standard (known at SMBNation as “SBS7”).

Click on the above links to download the decks presented.

Monday, November 08, 2010

Announcing Windows Storage Server 2008 R2 Essentials

Now that Kinect has stopped stealing all of our thunder around announcements (although I have to admit I can’t wait for mine, it looks awesome!), we can continue rolling out announcements in the Small Business space. This morning, building on the Windows Small Business Server 2011 Announcement, we are announcing a new edition targeted at Small Business called Windows Storage Server 2008 R2 Essentials.

What is this Windows Storage Server 2008 R2 Essentials? It’s an answer to what the community have been begging for. Today we see a lot of partners put WHS v1 into small business for the PC Backup integration. WHS v1 only backs up 10 of those computers, and is a stand-alone machine you have to manage on it’s own. Breckenridge fills this gap for businesses allowing you to Domain Join Breckenridge to your SBS 2008/SBS 2011 Standard domains to allow backup for up to 25 computers, and additional storage for up to 25 users.

Home Console of BreckenridgeDomain Joinpicture 3

As you can see, it looks a lot like the Windows Home Server Codename “Vail” Edition and the Windows Small Business Server 2011 Essentials Edition. That’s because it is! It shares the same underlying architecture, which means all the same add-ins work on WSS 2008 R2 Essentials, as they do on the other products.

So what is the differences?

Home Server “Vail” WSS 2008 R2 Essentials SBS 2011 Essentials
10 user limit 25 users limit 25 users limit
10 computer limit 25 computer limit 25 computer limit
1 CPU Socket 1 CPU socket 2 CPU sockets
8GB RAM Maximum 8GB RAM Maximum 32GB RAM Maximum
No Domain Join Domain Join Domain Controller

Aside from the ability to Domain Join, and the user limit increase, there are some subtle differences you’ll notice throughout the product that have more of a business “tint”, like if you choose to use WSS 2008 R2 Essentials for Remote Web Access, you’ll notice the same defaults you see in SBS 2011 Essentials, instead of what you see in Home Server. There are also some changes to HomeGroup defaults as well. The last thing to note is while you can install WSS 2008 R2 into an SBS 2011 Essentials, or WHS Vail environment, the client connector from each of these products cannot be installed on the same PC.

So why should you consider WSS 2008 R2 Essentials for your small business or customer?

  • PC Backup for up to 25 PCs in your SBS 2008, 2011 Standard network. And yes, you can run multiple devices in the same network, and choose who has access via a domain group
  • Server backup – backup those PC Backups and other critical data on the WSS 2008 R2 Essentials server. (no, you can’t include the backup of this into your SBS backup)
  • Similar console management as our other products. But if you domain join, you don’t manage users from this console, and the password policy is inherited from the domain (even for local users left on the WSS 2008 R2 Essentials box)
  • If you are installing it into a standard server environment, enjoy the Remote Web Access functionality
  • Additionally, monitor the health of computers in your network
  • Media streaming in the business (training videos, etc)

Windows Storage Server 2008 R2 essentials should be released in the first half (H1) of next year (2011). While it can work as a stand alone NAS device, it’s primarily targeted at Small Businesses with an Active Directory in place and the need for PC Backup and media streaming functionality. When it’s released, it will be available through multiple OEM channels with multiple form factors.

To see the official announcement on the SBS Blog, navigate here.

To learn more about Windows Storage Server, and the new addition, navigate to their blog.

Specifically if you want to read more from the Storage Server Family on WSS 2008 R2 Essentials, they have published a post here.

Tuesday, November 02, 2010

Aurora and SBS7 have a new name! Announcing SBS 2011 Standard & Essentials

This morning over on the Official SBS blog, we announced the names of both Aurora, SBS7 and the Premium add-on.  Both products have been hammered on pretty hard in the current beta, having been downloaded more than 9000 times to both partner and consumer community testers.  So what are the final names?

Aurora shall be known as Windows Small Business Server 2011 Essentials.  This product is perfect as a first server for small businesses, giving them a cost-effective/easy-to-use solution to help protect, organize and access their data.  As you already know, this product will connect up to Office365.  SBS11 Essentials can be used by up to 25 users and requires no CALs for access to this server (CALs still apply if you add a TS-in-app-sharing server though!).  Pricing for SBS11E is still to come, but we expect to release this in the first half of 2011.  To learn more about Windows Small Business Server 2011 Essentials, download the datasheet.

SBS7 shall be known as Windows Small Business Server 2011 Standard. This is designed and priced for small businesses with up to 75 users, delivering that familiar SBS 2008 Standard, enterprise class server technology as an affordable all-in-one solution.  SBS7 helps protect information with server backups and more on-site features like email, SharePoint, and WSUS.  Licensing is consistent with SBS2008 where CALs are required.  Estimated costs are at the official SBS blog, but today state ~$1096 with CALs at $72 (all in USD).  Again, this will be released in the first half of 2011.  To learn more about Windows Small Business Server 2011 Standard, download the datasheet.

I also wanted to announce the Windows Small Business Server 2011 Premium Add-on. This add-on can be applied to both SBS11e or SBS11s and includes access to another copy of Windows Server 2008 R2 Standard and SQL Server 2008 R2 for the small business.  The secondary server can be used for many different purposes, including LOB applications, roll-based such as TS-in-app-sharing (with additional CALs), a BDC, virtualization through Hyper-V, etc.  Again, estimated costs for this sku are at the official SBS blog. but today state ~$1604 with CALs at approximately $92 (all in USD). 

To learn more about the Windows Small Business Server Family, download the family overview brochure.

To download previews of Windows SBS 2011 Standard and Essentials you can visit here.

To read the official SBS blog post, visit here.

Tuesday, October 26, 2010

SBS Diva talks about not being afraid of the cloud

Susan Bradley talks about how partners shouldn’t be afraid of the cloud, but yet embrace it. Video courtesy of VarVid.

http://varvid.tv/2010/sbs-diva-susan-bradley-shares-her-insight-on-wpc-2010/

Aaron Booker of Varvid had a nice sit-down with Susan Bradley, known as the SBS Diva, at Microsoft’s Worldwide Partner Conference 2010. Susan made a point to emphasize how important it is for VARs to upgrade their SBS Competency in order to stay attractive to customers and hopes that partners will not overreact to some of the comments on the cloud frenzy… Susan and Aaron talked about Aurora, SBS v7, and lots more.

For what it’s worth, Susan updates her blog from a laptop seemingly from the 1920s, an an extinct Cingular wireless card:

photo