SUBSCRIBE
Tech Journal Now
  • Home
  • News
  • AI
  • Reviews
  • Guides
  • Best Buy
  • Software
  • Games
Reading: Microsoft taps LinkedIn CEO for dual role leading Office in AI strategy shift
Share
Tech Journal NowTech Journal Now
Font ResizerAa
  • News
  • Reviews
  • Guides
  • AI
  • Best Buy
  • Games
  • Software
Search
  • Home
  • News
  • AI
  • Reviews
  • Guides
  • Best Buy
  • Software
  • Games
Have an existing account? Sign In
Follow US
© Foxiz News Network. Ruby Design Company. All Rights Reserved.
Tech Journal Now > News > Microsoft taps LinkedIn CEO for dual role leading Office in AI strategy shift
News

Microsoft taps LinkedIn CEO for dual role leading Office in AI strategy shift

News Room
Last updated: June 4, 2025 3:32 pm
News Room
Share
7 Min Read
SHARE
Ryan Roslansky, CEO of LinkedIn, will also lead Microsoft Office applications under a new organizational structure aimed at accelerating the company’s agentic web AI strategy. (Microsoft Photo)

LinkedIn CEO Ryan Roslansky will take on a second role under a new Microsoft organizational structure, overseeing Office apps in addition to leading the business networking platform acquired by the Redmond company nine years ago.

Microsoft is announcing the change internally Wednesday morning. As executive vice president for Office, Roslansky will be responsible for Outlook, Word, Excel, PowerPoint, and Microsoft 365 Copilot, while continuing as LinkedIn CEO.

The move is intended to tap Roslansky’s product experience and strengthen the ties between Microsoft’s core platforms as it pursues its “agentic web” AI strategy.

In the Office role, Roslansky will report to Rajesh Jha, Microsoft’s EVP of Experiences + Devices. Roslansky will still report to CEO Satya Nadella for LinkedIn.

Office leaders Sumit Chauhan and Gaurav Sareen will remain in their roles, according to the company, now reporting to Roslansky as part of the new structure.

Microsoft also said Charles Lamanna, who leads the Business and Industry Copilot team, will now report to Jha — shifting out of Scott Guthrie‘s Cloud + AI division.

The changes are not directly related to recent job cuts by Microsoft, according to people inside the company.

.ms-revenue-chart {
font-family: ‘Merriweather’, serif;
max-width: 630px;
margin: 10px auto;
background: white;
padding: 20px 30px 15px;
border-radius: 24px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
border: 1px solid rgba(0,0,0,0.05);
}
.ms-revenue-chart h1 {
font-family: ‘Inter’, sans-serif;
color: #111827;
text-align: center;
margin-bottom: 8px;
font-size: 28px;
font-weight: 700;
letter-spacing: -0.025em;
}
.ms-revenue-chart .subtitle {
font-family: ‘Inter’, sans-serif;
text-align: center;
color: #6b7280;
margin-bottom: 20px;
font-size: 16px;
font-weight: 300;
}
.ms-revenue-chart .chart-container {
position: relative;
height: 420px;
margin: 0 auto;
}
.ms-revenue-chart .source {
font-family: ‘Inter’, sans-serif;
text-align: center;
color: #9ca3af;
margin-top: 15px;
margin-bottom: 0;
font-size: 12px;
font-weight: 400;
border-top: 1px solid #e5e7eb;
padding-top: 12px;
}

@media (max-width: 680px) {
.ms-revenue-chart {
margin: 5px;
padding: 15px 20px 10px;
}
.ms-revenue-chart h1 {
font-size: 24px;
}
.ms-revenue-chart .subtitle {
font-size: 14px;
margin-bottom: 15px;
}
.ms-revenue-chart .chart-container {
height: 350px;
}
.ms-revenue-chart .source {
font-size: 11px;
margin-top: 10px;
padding-top: 10px;
}
}

Microsoft Revenue by Product Segment

Nine Months Ended March 31, 2025 • Total Revenue: $205.3B
Source: Microsoft 10Q filing; GeekWire Graphic made by Claude.AI

(function() {
Chart.defaults.font.family = ‘Merriweather’;

const ctx = document.getElementById(‘msRevenueChart’).getContext(‘2d’);

const data = {
labels: [
‘Server + Cloud’,
‘M365 Commercial’,
‘Gaming’,
‘LinkedIn’,
‘Windows and Devices’,
‘Search & News Ads’,
‘Enterprise & Partner’,
‘Dynamics’,
‘M365 Consumer’,
‘Other’
],
datasets: [{
data: [70557, 63449, 17923, 13190, 12985, 10287, 5766, 5691, 5369, 66],
backgroundColor: [
‘#3b82f6’, // Server + Cloud – Bright blue
‘#1f2937’, // M365 Commercial – Dark gray
‘#3b82f6’, // Gaming – Bright blue
‘#1f2937’, // LinkedIn – Dark gray
‘#3b82f6’, // Windows – Bright blue
‘#3b82f6’, // Search & News Ads – Bright blue
‘#3b82f6’, // Enterprise – Bright blue
‘#3b82f6’, // Dynamics – Bright blue
‘#3b82f6’, // M365 Consumer – Bright blue
‘#3b82f6’ // Other – Bright blue
],
borderWidth: 0,
borderRadius: 8,
borderSkipped: false,
barPercentage: 0.7,
categoryPercentage: 0.8
}]
};

const config = {
type: ‘bar’,
data: data,
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
display: false
},
tooltip: {
backgroundColor: ‘rgba(0,0,0,0.8)’,
titleColor: ‘white’,
bodyColor: ‘white’,
borderColor: ‘rgba(255,255,255,0.1)’,
borderWidth: 1,
cornerRadius: 8,
titleFont: {
family: ‘Merriweather’,
size: 13
},
bodyFont: {
family: ‘Merriweather’,
size: 12
},
callbacks: {
label: function(context) {
return ‘$’ + context.parsed.y.toLocaleString() + ‘ million’;
}
}
}
},
scales: {
y: {
beginAtZero: true,
grid: {
color: ‘rgba(0,0,0,0.03)’,
lineWidth: 1,
drawBorder: false
},
ticks: {
color: ‘#9ca3af’,
font: {
size: 13,
family: ‘Merriweather’,
weight: ‘400’
},
padding: 12,
callback: function(value) {
return ‘$’ + (value / 1000).toFixed(0) + ‘B’;
}
},
title: {
display: true,
text: ‘Revenue (Billions)’,
color: ‘#6b7280’,
font: {
size: 15,
weight: ‘400’,
family: ‘Merriweather’
},
padding: {
bottom: 20
}
}
},
x: {
grid: {
display: false
},
ticks: {
color: ‘#6b7280’,
font: {
size: 12,
family: ‘Merriweather’,
weight: ‘400’
},
maxRotation: 45,
minRotation: 45,
padding: 8
}
}
},
interaction: {
intersect: false,
mode: ‘index’
}
}
};

const chart = new Chart(ctx, config);
})();

The changes consolidate Microsoft’s productivity and business applications under one division, aiming to create tighter integration among LinkedIn, Microsoft 365 (including Office apps), and Dynamics 365 as it develops cross-platform AI tools.

Microsoft’s reshuffling comes amid intensifying competition to integrate AI agents across different types of business software and cloud services, going up against rivals such as Salesforce, Amazon and Google. 

The company acquired LinkedIn for $26.2 billion in 2016, but has let it operate largely independently, without the deep integrations seen across Microsoft’s other businesses. 

Roslansky, who has led LinkedIn since 2020, guided the company through the pandemic and expanded its use of AI and skills-based tools. 

LinkedIn generated $13.2 billion in revenue during the first nine months of Microsoft’s fiscal year, up 8% from $12.1 billion in the same period last year. It ranked as Microsoft’s fourth-largest business line by revenue, behind Server Products and Cloud Services ($70.6 billion); Microsoft 365 Commercial ($63.5 billion); and Gaming ($17.9 billion).

Read the full article here

You Might Also Like

The Tangled Web: Copyright, AI, and the Content ID Conundrum

Microsoft makes largest-ever biochar carbon removal deal as AI boom threatens climate ambitions

TerraPower lands $650M from NVIDIA’s investment fund, Bill Gates and others

DexCare AI Platform Tackles Health Care Access, Cost Crisis

RNA startup targeting diabetes wins Seattle pitch event hosted by Venture Black

Share This Article
Facebook Twitter Email Print
Leave a comment Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

- Advertisement -
Ad image

Trending Stories

Games

MindsEye boss reportedly blames its failure on ‘saboteurs’ and says a re-launch is in the works, even as the entire development studio is at risk of layoff

July 3, 2025
Games

Marvel Rivals’ updated hero hot list reveals the most-played and highest win-rate characters, and it’s good news for Support players

July 3, 2025
News

Seattle leaders scrutinize $90M tax plan: Relief for small businesses, higher bills for big tech

July 3, 2025
Games

All active Anime Vanguards codes in July 2025 and how to redeem them

July 3, 2025
Games

Rematch’s developers expected players to develop new tech fast, but ‘not nearly as fast as it is going right now’

July 3, 2025
News

Startup radar: It’s all about AI for early stage Seattle companies in space, storytelling, supply chain

July 3, 2025

Always Stay Up to Date

Subscribe to our newsletter to get our newest articles instantly!

Follow US on Social Media

Facebook Youtube Steam Twitch Unity

2024 © Prices.com LLC. All Rights Reserved.

Tech Journal Now

Quick Links

  • Privacy Policy
  • Terms of use
  • For Advertisers
  • Contact
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?