Skip Ribbon Commands
Skip to main content

Home

:

Quick Launch

Home
 

 

 

Announcement: Catch me at my next workshop at the Microsoft campus in Chevy Chase, Maryland on Tue-Thur, 24-26 Jan 2012. Ping your TAM for details. We'll be discussing Windows Architecture & Performance Troubleshooting (Memory, Proc, IO, etc) There are still 11 seats (as of 12/20/11) available in this workshop.

This is the BLOG and technical resource site for Chris Davis. I am a Premier Field Engineer (PFE) for Microsoft. I work in the platforms space (meaning for the most part... Windows).

I'm also a magnet for some pretty odd technical issues and I love to share. You'll find that a large part of this site is dedicated to performance troubleshooting/tuning and also to a large degree Active Directory (I'm an MCM candidate for DS).

This site is also a mirror for my Technet BLOG site. If anything here interests you, follow me on:
Join me on LinkedIn! Follow Me on Twitter! Join Facebook!   

SPECIAL NOTE: I recognize that this site is a disaster right now and I apologize. I'm in the middle of transitioning this BLOG from Movable Type to Sharepoint. I have a number of customizations I haven't had time to finish authoring, and frankly I'm waiting for some of my friends in the PFE SharePoint team to assist me with ironing out some of my old-school spaghetti code before I replace a bunch of templates. Everything is back on the site - it just looks a little messy. The index moved to the bottom of the page if you're looking for any older articles. 

December 20
ForestDNSZones or DomainDNSZones FSMO says “The role owner attribute could not be read”

This came up recently at a customer site. I was looking for the script that fixes this (remembering that the site the fix belongs to is attached to an article that has nothing to do with the issue, but it still works great).

What I ran into was a TON of really horrible advice out there on the forums. Please please please – if you get this error don’t follow any of the advice you read unless the article mentions running a script that is lovingly called “fixfsmo.vbs”

What you’re probably seeing in LDP or ADSIEdit in the CN=infrastructure,DC=DomainDNSZones,DC=MyDomainName,DC=Whatever (that or ForestDNSZones) is an entry for FSMO that points to a retired or missing DC. Sorta’ like this:

cn=ntds settings\0adel:f655f307-02gb-4923-b7be-fc5e2042b4c8,cn={MyOldDCName}\0adel:88c9073f-6964-4ab3-98f0-d30dcd12a908,cn=servers,cn={SiteName},cn=sites,cn=configuration,dc={MyDomainName},dc={Whatever}

What has happened is the DC who held the FSMO Role Holder for your DomainDNSZones or your ForestDNSZones (or both) application partition isn’t there anymore. Someone deleted it, decommissioned it, basically it failed somewhere along the line but the DC owned one or more of your AD Integrated DNS Zones. The deleted DC can be seen in the mess above after cn=___ and in most cases this means someone had to do metadata cleanup and forcibly removed the server from AD.

So you might be asking, “uh, Chris? Aren’t there just 5 FSMO role holders?” Well, see for yourself:

image

Without getting into a huge discussion about naming contexts or application partitions – just know that if your domain uses application partitions (likely) each of these will have a FSMO. Like your other FSMO role holders you may need to seize the role. Sadly, you can’t do this with NTDSUTIL. You can SEE them (see below) but you can’t do anything with them:

image

In the list of options above, note that there isn’t a Seize or Transfer option for the application partitions. You can select them or view them:

image

But that’s it. There is a way to change the owner when you’re in this state however, keep reading.

So again, without going into a lot of depth on naming contexts and Application Partitions (I actually have another post that deals with this which will be published early next month dealing with DNS and App Partitions) we will move on for now. The bottom line is, you have a partition in your Active Directory database with no owner. We need to fix this, and we can’t use NTDSUTIL to get there.

The NORMAL way to go about changing FSMO role holders for the applications partitions is to use an editor like ADSIEdit or LDP. As shown in the first image above, you see that this region is editable. BUT as you’ve probably already noticed, this will error out “The role owner attribute could not be read” because there’s nobody to talk to (the value owner is gone).

So you need to force this change to happen. This is described in KB949257, unfortunately this article’s title is talking about issues doing an adprep /rodcprep – and a lot of people miss it or skip over it when in actuality it has exactly the script you need.

What you need to do is go to the DC you want to hold the role (I usually use the PDCE, but not for any particular reason). Now create a new file and call it fixfsmo.vbs:

image

Then dump this text into it:

const ADS_NAME_INITTYPE_GC = 3
const ADS_NAME_TYPE_1779 = 1
const ADS_NAME_TYPE_CANONICAL = 2

set inArgs = WScript.Arguments

if (inArgs.Count = 1) then
    ' Assume the command line argument is the NDNC (in DN form) to use.
    NdncDN = inArgs(0)
Else
    Wscript.StdOut.Write "usage: cscript fixfsmo.vbs NdncDN"
End if

if (NdncDN <> "") then

    ' Convert the DN form of the NDNC into DNS dotted form.
    Set objTranslator = CreateObject("NameTranslate")
    objTranslator.Init ADS_NAME_INITTYPE_GC, ""
    objTranslator.Set ADS_NAME_TYPE_1779, NdncDN
    strDomainDNS = objTranslator.Get(ADS_NAME_TYPE_CANONICAL)
    strDomainDNS = Left(strDomainDNS, len(strDomainDNS)-1)
    
    Wscript.Echo "DNS name: " & strDomainDNS

    ' Find a domain controller that hosts this NDNC and that is online.
    set objRootDSE = GetObject("LDAP://" & strDomainDNS & "/RootDSE")
    strDnsHostName = objRootDSE.Get("dnsHostName")
    strDsServiceName = objRootDSE.Get("dsServiceName")
    Wscript.Echo "Using DC " & strDnsHostName

    ' Get the current infrastructure fsmo.
    strInfraDN = "CN=Infrastructure," & NdncDN
    set objInfra = GetObject("LDAP://" & strInfraDN)
    Wscript.Echo "infra fsmo is " & objInfra.fsmoroleowner

    ' If the current fsmo holder is deleted, set the fsmo holder to this domain controller.

    if (InStr(objInfra.fsmoroleowner, "\0ADEL:") > 0) then

        ' Set the fsmo holder to this domain controller.
        objInfra.Put "fSMORoleOwner",  strDsServiceName
        objInfra.SetInfo

        ' Read the fsmo holder back.
        set objInfra = GetObject("LDAP://" & strInfraDN)
        Wscript.Echo "infra fsmo changed to:" & objInfra.fsmoroleowner

    End if

End if

 

And run the script from an elevated command prompt. You should now be able (through NTDSUTIL as shown above or through ADSIEdit) be able to see that the owner has changed to a valid DC.

For clarification, you should only run this script if the DC that is listed is no longer available and you can’t change it manually through ADSIEdit.

HTH!

December 06
Perfmon Blackbox… more better :)

During a recent workshop in southern California I promised my students that I would update an old blog of mine that referenced how to create a blackbox perfmon data collector set. In the instructions I mentioned that the best way to get one of these running and keep it running all the time was to create a startup script. I have since found a better way. I credit my colleague Martin Vokurek with figuring out this neat little trick.

So, first you will want to create the blackbox data collector set and you can see how to do that in my original blog HERE. Afterword, you come back to this post and follow these easy steps.

Number 1… go to the computer management (Start –> right-click Computer –> click Manage)

image

Number 2… browse down to the “PLA” section of your Task Library (Server Manager –> Configuration –> Task Scheduler –> Task Scheduler Library –> Microsoft –> Windows –> PLA)

image

Number 3… in this list you’ll see your data collector set and if you don’t you need to enable the hidden tasks (view -> show hidden tasks)

Number 4… double click your data collector set to open its properties

Number 5… go to the triggers tab

Number 6… click on new and add “At Startup”

image

That’s it. You should now see the blackbox data collector set restart each and every time the system starts.

BUT

I also want to use this time to point out a strange behavior that’s been noticed. And it has to do with how perfmon interprets “append” and “circular logging” (or bincirc with is the binary circular logging format).

You basically have two choices, and it really comes down to that double dash in the –v (once again see HERE). With this on, perfmon will use the same filename (thus an actual blackbox) each time it restarts. Turn off the dash dash v and you’ll see it actually create a new file each time it restarts.

There are upsides and downsides to both approaches. If you WANT perfmon to always use the same file (and not risk ever accidentally consuming all the space on your drive with a bunch of 500mb log files) you’ll want to go with the --v option. The downside to this approach is that perfmon will clear out the log file and start fresh with a zero byte log. Meaning if your server reboots you’ll not have any perf data from the previous session.

If you want to keep the file just don’t use the v option. And keep an eye on that disk space. Because what will happen is perfmon will simply create a new blackbox after each restart so you can go back through the previous blg file.

November 25
Migrating to Sharepoint

I'm moving my site from Movable Type (absolutely fed up with them) to SharePoint... which is where I should have been to begin with ;-)

In the mean time things will be online and offline sporadically so... sorry. I'll have the articles back online really soon!

In the mean time you can still access most of it from here:

http://www.9z.com/old/

October 22
Command line confusion (what do all those brackets mean?)

So... I found out this week that a lot of folks get confused by some of our (Microsoft's) KB and TechNet articles when we start showing examples of how to use a command line tool. Same holds true when you look at the helpfile for some of the same commands.

It is actually not just random as some folks think :-)
So here's how this breaks down:
Text without brackets, braces, angles, etc, means items you MUST type as shown.
Text inside of <angle brackets> are a placeholder that you MUST put a value.

Text inside of [square brackets] are just optional items.

When you see items {inside of braces} these are a SET of required items, you need to pick ONE.

When you see a vertical bar like this | these are just showing mutually exclusive items, pick ONE.

When you see this (...) this indicates something that can be repeated.

For instance lets take the command line REPADMIN. The help file shows this:

repadmin <cmd> <args> [/u:{domain\user}] [/pw:{password | *}] [/retry[:<retries>][:<delay>]] [/csv]

Meaning, repadmin is obviously required. And so is providing some sort of arguement such as /syncall. Everything else is optional.

So then we would look at the help file for repadmin /syncall

repadmin /syncall <DSA> [<Naming Context>] [<flags>]

Meaning to sync the DC, you would need to type something like this:

repadmin /syncall myDomainController.mydomain.local

And optionally you can do some extra stuff like this:

repadmin /syncall myDomainController.mydomain.local /AeP

Which would cause (if you read the helpfile) myDomainController to sync all the naming contexts (NC's) that it holds in the database enterprise wide and will Push the changes.

What's actually funny about this one particular command (little off subject but worth mentioning) is that you can also specify the switch /q to run in quiet mode - or the /Q switch to run in REALLY quiet mode ;-)

I hope this helps to clarify.

July 09
Microsoft patent division taking cash from at least 5 Android vendors

I felt this was definately worth an echo from:
http://www.networkworld.com/news/2011/070511-microsoft-patent-android.html

One of Microsoft's hottest new profit centers is a smartphone platform you've definitely heard of: Android.

Google's Linux-based mobile operating system is a favorite target for Microsoft's patent attorneys, who are suing numerous Android vendors and just today announced that another manufacturer has agreed to write checks to Microsoft every time it ships an Android device.

Microsoft's latest target is Wistron Corp., which has signed a patent agreement "that provides broad coverage under Microsoft's patent portfolio for Wistron's tablets, mobile phones, e-readers and other consumer devices running the Android or Chrome platform," Microsoft announced.

You won't find Wistron devices in a Google Shopping search or on Amazon.com, because the company builds components for other brands. The existence of both Android and Chrome in the latest patent agreement shows Microsoft is going after Google products on multiple fronts. Chrome OS laptops, or "Chromebooks," recently hit the market from Samsung and Acer and contain the Chrome browser running on top of Linux.

"We are pleased that Wistron is taking advantage of our industrywide licensing program, established to help companies address Android's IP issues," Microsoft general counsel Horacio Gutierrez said in a press release.

Microsoft has struck more than 700 licensing agreements since launching its IP program in December 2003, including at least five with Android vendors. Just last week, Microsoft announced Android agreements with Velocity Micro, General Dynamics and Onkyo Corp. Since Microsoft is making the announcements one by one, there could be more coming this week.

The biggest win, however, was a patent agreement struck last year with HTC, which has become one of the most successful smartphone vendors on the strength of its Android devices such as the Evo and Thunderbolt.

Microsoft reportedly receives $5 every time HTC sells an Android phone, leading some observers to conclude that Microsoft makes more money from Android than its own WindowsPhone 7 platform.

Microsoft isn't done, either. After all, there are dozens of Android vendors. Motorola, another major Android device maker, is fighting Microsoft's patent infringement claims in court, butMicrosoft recently received a ruling in its favor in the ongoing litigation, according to patent watcher Florian Mueller.

Microsoft is suing Barnes & Noble over the Android-based Nook, and has signed patent agreements with Samsung and LG, although it's not clear whether these agreements extend to Android, Mueller also notes.

Microsoft claims Motorola infringes on 21 patents, including 19 with Android, according to Mueller.

Microsoft's contentious relationship with Linux-based products goes back many years, of course, to CEO Steve Ballmer calling Linux a cancer in 2001 and a 2007 claim that Linux and other open source software violates 235 Microsoft patents.

The Android patent wars also extend a fierce rivalry with Google, with the two companies fighting on many fronts including search engines, operating systems, browsers, office software and of course, mobile devices.

Ironically, Google's Android is likely a bigger profit maker for Microsoft than Bing, which has failed to topple Google in the search market. Bing is part of Microsoft's Online Services division, which lost more than $700 million in the most recent quarter. Microsoft's Windows Phone revenue numbers haven't been revealed, but Android is well ahead of Microsoft in smartphone market share.

May 17
RemoveReplicaFromPFRecursive.ps1 returns "There is no existing PublicFolder that matches the following identity

I was trying to retire my SBS 2008 box after migrating to SBS 2011 and I couldn't uninstall Exchange Server. I kept getting errors that I needed to remove the replica sets from the public folders. But when I would run the RemoveReplicaFromPFRecursive.ps1 script is would error out over and over no matter what I put in it. By the way, if you get an error that "A positional parameter cannot be found that accepts argument 'Folder'" it is because it doesn't like the space when you tried to type "Public Folder Database" so just use "\" instead.

I was beating myself up over that one for a while.

Anyway - if the script won't work you probably have an incorrect container with nothing inside in the path: CN=Second Storage Group,CN=InformationStore,CN={servername},CN=Servers,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=First Organization,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC={domain},DC=local

I validated it was empty - and deleted it from ADSI edit and was then able to uninstall Exchange Server. If you don't know what ADSI edit is, you probably don't want to try this yourself without opening a support case. {sorry}

You can also see this article at my technet blog at http://blogs.technet.com/b/the_9z_by_chris_davis/archive/2011/05/17/removereplicafrompfrecursive-ps1-returns-quot-there-is-no-existing-publicfolder-that-matches-the-following-identity-quot.aspx

May 05
Put a BlackBox (Black Box) on your server!

So something I've been recommending to my customers for a while is to have the equivalent of an in flight data recorder on their server. You can do this with Perfmon with circular logging and it isn't that hard to set up.

Why? Well take for example this scenario. You just got a call from one of your users that said the server was incredibly slow - you log on and everything looks fine. The user says yeah, it's ok now but what happened?

Well, if it happens a couple more times - especially if someone or some automated process is waking you up in the middle of the night - you're probably going to want to get to the bottom of this, right? Well, why wait until the problem happens again? Because you don't have any data. Well now you can.

What you want to do is set Perfmon up so it ALWAYS runs. Keep a log of say 300 MB, 500 MB, or maybe a gigabyte of history. Set it up to start every time the machine starts up. And set it up to overwrite the log. This will always keep a history (similar to your event log) of what was just going on with the server in question.

Here's how:

So the first thing you want to do is to have some counters, right? Wll which ones should you pick? Here is a template you can use. This is preloaded with all my personal favorites. If you know me very well then you know I teach a class from time to time called Vital Signs, which is all about learning performance monitor and what the various counters mean. This text file linked above are all the counters you'd need to solve 95%+ of the perf issues in the world.

So what do you do with it? First create a subfolder on C:\ (or whatever drive you want) and call it perflogs - if it isn't already there. Then put the counters.txt file from above into that folder. Then all you need to do is type:

logman create counter BlackBox -cf c:\perflogs\counters.txt -si 05:00 -f bincirc -o c:\Perflogs\Blackbox.blg -a --v -max 500

What this will do is create a BLG (or binary logging file) in the perflogs subfolder. It will take a snapshot of all the counters in that counters.txt file every five minutes. It will run untill it hits 500MB and then it will just append to the file. So it will never grow beyond that size.

Then, all you need to do is start the log. You can type:

logman -start BlackBox

Now, here is the trick - this will keep that counter running until the machine reboots. So if you want it to keep running, put it into a startup script.

Then you'll be able to look back into the log (to see what happened after someone calls and complains) by stopping the log either from inside of perfmon or from the command line by typing:

logman -stop BlackBox

Then copy the blackbox.blg file to your computer, start the blackbox back up again - and troubleshoot as normal.

(if you're looking for advice on how to interpret perfmon counters, standby for a quick-tips post from me coming up later this month - or better yet, ask your Microsoft TAM about getting you into a Vital Signs class)

You can also find a copy of this article at my Technet Blog site: http://blogs.technet.com/b/the_9z_by_chris_davis/archive/2011/05/17/put-a-blackbox-black-box-on-your-server.aspx

April 21
Is metadata cleanup DEAD?!? Really?? - Yes. Yes it is.

OK so it isn't really dead, but it isn't necessary anymore. I've run into this out in the field a few times recently, it would seem we didn't get the word out on this very well.

In older versions of Windows (prior to 2008) you had to use a tool called "ntdsutil" to forcably remove dead DC's (or DC's that were forcably removed using dcpromo /forceremoval) Here are some screenshots of that process.

As of 2008 this is no longer necessary. Simply deleting the account from the "Domain Controllers" OU will do the trick. Alternatively you can delete the DC from Sites and Services. Few extra steps but it works.

For more information please refer to this technet article.

And before you ask, no. To my knowledge there are no plans to actually remove ntdsutil.

March 30
A blurb about Phones and their Operating Systems

NEW YORK - OCTOBER 11:  A person holds a new  ...

Image by Getty Images via @daylife

This might be a tiny bit off the norm for my blog but I keep getting the same questions from a lot of people. There's a lot of confusion in the consumer market right now as the big players try and position themselves as the standard.

This confusion is not healthy for consumers. Let's face it, those little magical pocket companions are becoming more and more a part of our lives, and I truly believe we've only scratched the surface. More and more your personal and professional lives will be tied and combined into these devices. Think back five years ago - did you see people in airports, lobby's, bus terminals, traffic lights, restaurants, etc all looking down at their phones? Typing away on emails or facebook? No, they were staring off into space - a void we didn't even really know existed. A waste of brain cycles some believe, a necessary break to allow the brain to store and process others would say. Whatever your philosophy, those days are gone.

A year ago I blogged (on another site which will forever remain nameless) about a coming device that someone would inevitably invent which would be a hybrid of the laptop and the phone. This now exists in a rather unrealized and somewhat underengineered form with the Motorola Atrix, but make no mistake. The device that will exist in your pocket for about 85% of what you need to do while mobile, then about 15% of the remaining tasks (like an Excel spreadsheet, long email, blog, or PowerPoint for instance) will be the same device, however either docked at home or docked at work with a full size monitor keyboard and mouse, depending where you are. Technologies that sync your documents (like Windows Phone 7 and the SkyDrive integration for documents and OneNote) up in the cloud aren't a fad. This is reality. This is the future.

Let me attempt to clear the present state of that future a bit.

There are two schools of thought when it comes to SmartPhones.

Basically you have a slew of different hardware manufacturers (Nokia, Samsung, Dell, HTC, etc) that will build phones that run on varying "open platform" or "hardware agnostic" operating systems such as Google's Android (which is free) or Windows Phone 7 (which is not free).

Then there are a number of hardware manufacturers that will ONLY build phones that run on their own operating systems (Blackberry which runs RIM or research in motion, and Apple which runs the iOS for example). They control what applications can go on the phones. They control the release cycles for patches and upgrades. Etc.

So if you woke up tomorrow and thought to yourself, "hey, I want to build phones - I have a really cool idea for a phone that might be better than anything out there" you'd have a decision to make. You could either:

-Hire a team of developers to build you a new operating system from scratch, then try and get a bunch of independent app developers out there in the world convinced that your phone was the best and to start writing apps for your phone (games, tools, etc). And convince them to build all these apps months before your phone releases so your app store isn't lame when you launch the phone.
You would need to build an app store and figure out a way to charge people while also making sure your independent app developers have a way to either get paid for app purchases or for advertising revenue on free apps. Then you'd need to build a music store so your customers can download ringtones and music - while making the folks in Hollywood and Nashville happy by ensuring the devices comply with their outrageously obtuse "digital rights management" or DRM rules so people don't pirate the music. This is what Apple did.

OR

-You could decide that's too much of a hassle. All you want to do is build this new killer phone that you dreamt up, right? So, let someone else handle all that mess and buy an existing operating system for your phone. So you might go with Windows Phone 7 because they are, well... Microsoft. Or you might go with Android because they are free.

Android robot logo.

Image via Wikipedia

You might be thinking this is a no-brainer, go with the free operating system. The problem with this is that there is no control over what apps can go on that phone and people will download apps that just aren't written very well and make the phone perform like garbage. Then what do you have? A customer that thinks your phone is garbage when in reality, it's acting that way because of some app they downloaded. Also, Google has yet to put in place a very good music store like Microsoft's Zune or like the iPhone's app store. Also, with Google you're talking about an Operating System that is written by a community of developers. Anyone that can write code can contribute and anyone that's interested can download source code for the operating system - which terrifies most people. Have we had a major virus outbreak on phones yet? No. Will we? Yes, it's just a matter of time. So some folks chose to go with Microsoft because there is better security on apps, source code, and frankly - with Microsoft you know who to call when things go wrong with the Operating System on your phone.

So the biggest question is, what is the compatibility of applications between the OS's? None. If you develop a game, such as Angry Birds for the iOS and then want to sell it on an Android based device, you have to re-write the program. If you want to "port it over" to Windows Phone? Sorry, you're re-writing a lot of the code again. This is very frustrating for app developers trying to make 99 cents on a game, but unfortunately they have very tiny voices in the mix. For now, this is their lot. Pick a platform and stick with it OR resign yourself to having to re-write every game you invent three or more times. (then fix it every time Apple, Microsoft, or Android updates their OS and breaks your game)

But I digress. Here is the difference:

Apple - writes their own OS and builds their own hardware, controls what apps go on the phone (very tight regulations, heavy approval process), very controlling from a hardware perspective - they have a mentality that those are really THEIR phones, their just letting you use it and you should be damn glad they were nice enough to release them to the world instead of keeping the coolness to themselves. The iPhone is the least customizable phone on the market, not due to limitations in programming but due to the fact that Steve Jobs knows how your phone should look, feel, and sound... and dammit, quit trying to mess with it.

Blackberry - or Research in Motion (RIM) writes their own OS and builds their own hardware. They are highly popular for a couple of reasons but quickly losing traction. The Blackberry WAS for a long time the most secure phone. So IT departments across the world doled out their phones. An IT department could fully control a Blackberry remotely, restrict the websites you visited (and log them), restrict the apps you could download (which there weren't many to begin with), wipe the phone remotely, enforce password PIN and lockout policies, etc. Lots of phones can do this now but they were the first so they took off as the standard. A lead in the race they are quickly losing. The other reason people love the Blackberry is because they have the easiest keyboard to use. I don't know why more people don't try to duplicate this. Touchscreen keyboards suck for guys like me with big thumbs.

Independent Manufacturers - (such as Dell, HTC, Samsung, Nokia, Motorola) have no idea who will win this battle of the operating systems. And they don't care. They build hardware that will run on operating systems like Android, Windows Phone 7, Microsoft's older phone OS (6.5 and the like), Symbian, etc. Then they let the consumer decide. They build cool phones and then call AT&T, Verison, T-Mobile, etc and ask them if they want to carry them in their stores. That's about it.

Google - (Android) is the newest player to the game. They are developing like mad and have quickly become the most prominent OS in the SmartPhone market due to the zero price structure. Their OS is able to run on just about any platform making it ideal for devices other than just phones. Their app store is growing to eventually rival that of Apple. They are still lacking in compatibility with popular products like Microsoft Office (mostly read-only and not-so-great formatting) security, music, and a few other misses but are rapidly trying to overcome this. Their email integration is lacking, a lot of Exchange users don't like the way it works on the phone and the security piece makes a lot of IT departments steer away from the platform. There is also little control over what types of apps can be loaded on the device. If an app is not good enough for their version of the app store, users can simply "side-load" the app. It it wasn't good enough for the store, there's usually a reason. But nevertheless people have had a lot of issues with the lack of app control.

Microsoft - (Windows Phone 7) Microsoft actually invented the SmartPhone and the tablet years ago. They have been in the game the longest, but lacked the vision Apple had to make it sexy. This new version is the most promising but a lot of analysts think it might be too late. The lackluster performance against the 800lb gorilla (Apple) gave way for a third player to enter the game (Google) and they are now playing catch up. They have a superior product in every category listed above but this might be too little too late. Time will tell. Microsoft has integrated WindowsLive, SkyDrive, Xbox, Office, Zune, security features, application development control, and ease of app publishing into the new product that no other company can touch due to the fact that many of these features already existed. The competition just has too much to develop to catch up to the features Microsoft can add - but again, this is a late player to the game.

So, who is winning? Apple right? Wrong.
As of March 2011 here is the footprint:
Android - 39.5%
Symbian - 20.9% (*see note below)
iOS - 15.7%
Blackberry - 14.9%
Windows Phone 7 - 5.5%
Others - 3.5%

(*Symbian which is developed by Nokia will be all but discontinued. Nokia has decided to adopt Windows Phone 7 as their new standard to try and stay relevant in the marketplace. At present Windows Phone is projected to take second place by 2015 behind Android with a projected lead over iOS) Here are the projected 2015 standings (by computerweekly and computerworld):

2015:
Android - 45.4%
Windows Phone - 20.9%
iOS - 15.3%
Blackberry - 13.7%
Others - 4.6%
Symbian - 0.2%

March 29
openservice remoteregistry failed

So I was getting an "openservice remoteregistry failed" error trying to build a 2008 R2 failover cluster. Turned out to be a time issue. As you probably know, although Active Directory doesn't rely on syncronized time, Kerberos does - and that impacts a lot of things that AD relies on.



So, after some time researching and seeing some really bad advice (mostly relating to "just reload your server and that should fix your problem" type guidance out there) I figured I should drop this out there in case anyone wants to save a couple hours of needless work.

FYI Microsoft best practice for time is for everything on your network to sync to your PDC emulator - and have that sync to an external (or even better, a hardware based) time source.

1 - 10Next
 

 All Articles

 
  
  
  
Category
  
  
Edit
  
No presence informationChris Davis12/20/2011 9:50 AM0 
  
No presence informationChris Davis12/6/2011 11:27 AM0 
  
No presence informationChris Davis11/25/2011 1:01 PM0 
  
No presence informationChris Davis10/22/2011 2:03 PM0 
  
No presence informationChris Davis7/9/2011 3:07 PM0 
  
No presence informationChris Davis5/17/2011 3:14 PM0 
  
No presence informationChris Davis5/5/2011 3:17 PM0 
  
No presence informationChris Davis4/21/2011 3:20 PM0 
  
No presence informationChris Davis3/30/2011 3:22 PM0 
  
No presence informationChris Davis3/29/2011 2:22 PM0 
  
No presence informationChris Davis3/15/2011 2:23 PM0 
  
No presence informationChris Davis3/4/2011 1:28 PM0 
  
No presence informationChris Davis3/2/2011 1:38 PM0 
  
No presence informationChris Davis2/8/2011 1:41 PM0 
  
No presence informationChris Davis2/7/2011 1:44 PM0 
  
No presence informationChris Davis2/6/2011 1:46 PM0 
  
No presence informationChris Davis1/6/2011 1:47 PM0 
  
No presence informationChris Davis1/5/2011 1:49 PM0 
  
No presence informationChris Davis12/25/2010 1:57 PM0 
  
No presence informationChris Davis12/12/2010 2:01 PM0 
  
No presence informationChris Davis12/7/2010 2:03 PM0 
  
No presence informationChris Davis12/2/2010 2:10 PM0 
 

 About the 9z

 
 me.jpg
Chris Davis: I am married and have two daughters. I live in Oklahoma and I work for Microsoft. I love my job because I get to work directly with customers helping them to better understand the technology they implement, perform risk assessments on their environments, and help fix things if they break. For me, this is the perfect mix... Catch me at my next workshop, hope to see you there!