Skip to main content

The Rise of Microsoft, Part 19: Copilot

Copilot

🎬 Prefer to watch? Here's the 60-second version:

Watch on YouTube ▶

💻 The Rise of Microsoft — a 20-part series. See all parts »  |  « Part 18: Embrace

For most of its history, Microsoft's biggest bets came from inside the building. Windows, Office, Azure — all grown at home, defended for decades. So when the company's most consequential move of the 2020s turned out to be a check written to a San Francisco research lab it did not own, it marked a genuine change in how Redmond thought about the future. The lab was OpenAI. The bet was artificial intelligence. And it would end with a single word bolted onto nearly every product Microsoft sells: Copilot.

A quiet billion, then a very loud ten

The relationship started in 2019, when Microsoft invested $1 billion in OpenAI and, just as importantly, became the lab's exclusive cloud provider. From then on, OpenAI's models would be trained and run on an Azure-based supercomputing platform built specifically for the job. It was a trade as much as an investment: OpenAI got the raw compute that frontier models demand, and Microsoft got a front-row seat — and eventually a commercial license — to the most talked-about research in the field. In September 2020, that seat became a reserved one when Microsoft secured an exclusive license to the underlying GPT-3 model.

For a while, this looked like a smart-but-niche partnership. Then, in November 2022, OpenAI released ChatGPT, and the ground shifted under the entire industry. Within two months Microsoft moved to deepen the alliance dramatically, announcing in January 2023 an extended, multiyear partnership widely reported to be worth around $10 billion — bringing Microsoft's total reported backing of OpenAI to roughly $13 billion. Microsoft's own announcement was coy about the figure, but the strategic message was not: the company was going all-in on generative AI, and it intended to ship it faster than anyone expected.

The name that came from code

Before Copilot was a household word, it was a tool for programmers. In June 2021, GitHub — which Microsoft had acquired in 2018 — unveiled GitHub Copilot as a technical preview: an AI pair-programmer, built on OpenAI technology, that autocompleted whole functions from a comment or a hint. It graduated from preview to a paid subscription for individual developers in June 2022. The metaphor was deliberate and it stuck. A copilot doesn't fly the plane for you; it sits beside you, handles the busywork, and keeps you on course. That framing — assistance, not replacement — would become the through-line for everything that followed.

The first big consumer strike landed on February 7, 2023, when Microsoft unveiled a reinvented Bing and Edge at its Redmond campus, powered by a next-generation OpenAI model soon revealed as GPT-4. For a search business that had spent fifteen years as a distant runner-up, it was a rare chance to attack Google on its home turf. Satya Nadella barely hid his delight. “I want people to know that we made them dance,” he told The Verge, a line that captured both the ambition and the score-settling energy of the moment.

Copilot in every window

Search was only the opening act. On March 16, 2023, Microsoft announced Microsoft 365 Copilot, weaving generative AI directly into Word, Excel, PowerPoint, Outlook, and Teams — the software that runs a large share of the world's working hours. Draft a document, summarize a thread, turn a spreadsheet into a slide: the pitch was that the most valuable AI wouldn't live in a separate chatbot tab, but inside the tools people already used all day. Later in the year the assistant pushed into the operating system itself as Windows gained a built-in Copilot, and the old Cortana was quietly retired.

By late 2023, Microsoft did something it rarely does well — it simplified. The sprawl of separate AI features, each with its own name, was consolidated under a single Copilot brand, complete with a unified logo. Bing Chat became Copilot. The Microsoft 365 assistant became Copilot. The Windows sidebar became Copilot. It was a bet that one recognizable identity, repeated everywhere, would do more for adoption than a dozen clever product names. Underneath, the system ran on Microsoft's own Prometheus model, itself built atop OpenAI's GPT family and tuned for Microsoft's needs.

What makes this chapter remarkable isn't any single launch — it's the speed and totality of the pivot. In roughly a year, a company famous for moving carefully rewired its flagship products, its cloud strategy, and its public identity around a technology largely invented somewhere else. It was the clearest proof yet of the reinvention that began under Nadella: Microsoft no longer needed to own every idea, only to be the platform on which the best ideas ran. The partnership would grow more complicated in the years that followed, but the direction was set. AI was no longer a feature. It was the strategy.

Next time, in the finale: where all of this leaves Microsoft — the trillion-dollar comeback, the open questions, and what the next chapter might hold.


🔗 Explore more from Syncster

Comments

Popular posts from this blog

Cursor AI Review: Is the AI Code Editor Worth It?

I've been using Cursor as my main code editor for a while now, and enough people have asked whether it's worth switching to that a proper review felt overdue. Short version: for me, yes — but with caveats. What is Cursor? Cursor is an AI-first code editor built as a fork of VS Code. That means every extension, theme, and keybinding you already use in VS Code works here, but with AI woven directly into the editing experience instead of bolted on as a plugin. It's made by Anysphere and can run models from OpenAI and Anthropic under the hood. What I like Tab completion is uncanny. Cursor predicts your next edit — not just the rest of the line, but the next change across the file. Once you get used to hitting Tab, going back to a plain editor feels slow. The Composer / Agent mode. You describe a change in plain language and it edits multiple files at once, showing you a diff to accept or reject. For refactors and boilerplate, this saves real time. It unde...

MacBook Pro M5 vs M5 Pro: Which One Should You Actually Buy?

Apple's latest 14-inch MacBook Pro comes in two very different flavors: the base M5 and the step-up M5 Pro . On paper they look similar — same gorgeous Liquid Retina XDR display, same design — but under the hood the gap is bigger than the names suggest. Here's a clear, no-hype breakdown, with concrete use cases so you can match the chip to your work. Quick spec comparison Spec M5 M5 Pro CPU 10-core (4 performance + 6 efficiency) Up to 18-core (6 performance + 12 efficiency) GPU 10-core Up to 20-core Neural Engine 16-core 16-core Memory bandwidth 153 GB/s 307 GB/s (roughly double) Unified memory 16 / 24 / 32 GB 24 / 48 / 64 GB Max storage Up to 4 TB SSD Up to 8 TB SSD Battery (video playback) Up to 24 hours Up to 22 hours Media engines Single encode/ProRes engine More encode/ProRes engines (higher configs) What actually changes between them More cores — the M5 Pro nearly doubles CPU cores and adds GPU cores, so sustained, multi-threaded work finishe...

How I used Google Sheets and Apps Script

Google Sheet is one of the most powerful spreadsheet application that exists online, rivaling with Microsoft's Excel. One of the main strengths is its strong support for collaboration with other users, much easier and popular than collaboration tools with Microsoft Office. Aside from plain spreadsheet, it also supports extensions such as macro. If you are familiar with macros on other office tools, they work almost the same. However, the most extension I use and tinker with is the Apps Scipt . Apps Script Extension One of the challenges I faced recently is how do I track or monitor reports in our department if they are submitted on time or worst, forgotten due to lack of better monitoring tools. So I thought if there can be simple applications that can be deployed or use by a more general user to allow reminding periodically what reports are approaching due dates or those that are past dues. Then I looked for a way, instead of creating a full blown app from scratc...