Word Injunction Likely Much Ado About Nothing

Techwriter10 0 Tallied Votes 603 Views Share

Yesterday, the Federal Appeals Court ruled in what appears at first blush to be a shocking decision, that Microsoft must stop selling Word 2007 by January 11, 2010. But a closer look at the decision suggests that this isn't as big a deal as it first seems.

Sure, Microsoft has to pay Canadian developer i4i close to $300 million, but that's really chump change for a company that has tens of billions in cash reserves. Microsoft itself has tried to minimize the impact calling the disputed tool, "a little used feature." Regardless, it appears, this has no impact on product already sold and the disputed code has been removed from upcoming Office 2010, leaving Microsoft with little real damage.

Could Have Been Worse

One thing Microsoft did by appealing was buy itself some time to get past the current version of Word and remove the feature in dispute. It could still have a short-term affect on sales, but most people at this point would probably be holding off until Office 2010. Doesn't really make sense to buy Word 2007 in any quantity that would matter to Microsoft with 2010 just around the corner. It remains to be seen if this would affect larger OEM partners like Dell and HP, but Microsoft insists that the delay has bought them enough time to remove the feature from Word 2007, and they will meet the deadline to remove it. If that's the case, Microsoft has had to spend some money, but doesn't really seem to be hurt too badly by all this.

Is It Really as Minor as It Appears?

Microsoft's official statement tries to suggest that the XML editing feature doesn't matter much, and that's true if you're an average user or a consumer running Word at home, but for companies the XML feature in Word 2007 changed the game and allowed enterprise customers to embed code to use Word documents in complex work flows and to communicate and move documents across disparate business systems. For them, the feature matters a lot, but again, since the ruling has no impact on packages already sold, it shouldn't really matter to customers who have been using this product for years and have built connectors to external systems using XML code covered under this decision.

Makes Good Copy

It's hard to point to a single product beyond Windows that would have a huge impact on a company as large and diverse as Microsoft, but Word comes close because it's a tool so many people use on a daily basis. When you see a headline suggesting they have to stop selling it, it makes you stop and think. Main stream press outlets certainly have jumped on this and tried to make it more than it is.

In the end though, while this is probably embarrassing for Microsoft, it appears to be little more than a legal speed bump. Ultimately, there's nothing to see here folks. Let's move along.

Dani AI

Generated

made the right call that the headlines were sensational, but a precise timeline and a few practical notes close the loop for anyone digging this up years later.

A Texas jury found Microsoft liable in May 2009 and awarded $200M; the district court added enhanced damages and entered a permanent injunction, which the Federal Circuit affirmed and set to take effect January 11, 2010. (See the district-court findings and the CAFC opinion.)
(https://law.justia.com/cases/federal/district-courts/texas/txedce/6:2007cv00113/101834/412/) (https://caselaw.findlaw.com/court/us-federal-circuit/1498460.html)

Microsoft pursued further review; the U.S. Patent Office reexamination confirmed i4i’s claims in 2010, and the U.S. Supreme Court in June 2011 rejected Microsoft’s bid to lower the standard for proving patent invalidity (the Court left the jury verdict intact and preserved the “clear and convincing” standard). (See PTO/reexamination reports and the Supreme Court opinion.)
(https://www.edn.com/us-patent-office-affirms-i4i-patent-rejects-microsoft-challenge/) (https://supreme.justia.com/cases/federal/us/564/91/)

Practically speaking, most individual users were unaffected; Microsoft issued updates and altered U.S. distributions so retail copies sold after the injunction date no longer contained the accused custom‑XML editing behavior, and Office 2010 builds did not include the feature in question. (See contemporaneous reporting.)
(https://arstechnica.com/information-technology/2009/12/microsoft-barred-from-selling-word-has-plan-for-workaround/)

For organizations that had built workflows around custom XML in Word, the concrete steps at the time were: inventory documents for a customXml part (DOCX is a ZIP with a customXml/ folder); test server-side processing against patched Word/Office 2010; and migrate embedded metadata/automation to supported alternatives (content controls or server-side Open XML processing). Quick check (run where command-line access is available):

for f in *.docx; do
  if unzip -l "$f" | grep -q 'customXml/'; then
    echo "custom XML found in $f"
  fi
done

Bottom line: alarmist headlines overstated the everyday impact, but the ruling and follow-ups mattered to enterprise document workflows and required a measured audit-and-migrate response.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.