# OS-11: Cloud Productivity Tools Status: not started Domain: - 1.0 Operating Systems Objective alignment: - 1.11 Cloud productivity tools ## What You Need To Know Cloud productivity tools move everyday business services from local servers and local apps into cloud-managed services. Common examples: - Email - Cloud storage - File synchronization - Collaboration tools - Spreadsheets - Word processing - Presentations - Videoconferencing - Instant messaging/chat - Identity synchronization - License assignment ## Memory Trick Use **E-S-C-I-L**: - **E**mail - **S**torage and sync - **C**ollaboration - **I**dentity synchronization - **L**icense assignment If the question says "user can access from anywhere," "syncs across devices," or "assign a license to a user," think cloud productivity. ## Email Systems Cloud email: - Mailbox is hosted by a cloud provider. - Common examples include Microsoft 365/Exchange Online and Google Workspace/Gmail. - Often includes spam filtering, malware filtering, redundancy, backups, and centralized management. Exam clue: - If the user can sign in from multiple devices and mail is stored on the provider's servers, it is cloud email. ## Storage and Synchronization Cloud storage: - Files are stored in a cloud service. - Common examples include OneDrive, Google Drive, Dropbox, and iCloud Drive. Synchronization: - A local file can be uploaded to the cloud and synced to other devices. - Sync clients may let you choose which folders are local, cloud-only, or always available offline. Memory trick: - **Sync = same files across systems.** Important distinction: - Local-only file: stored on one device. - Synced file: copied between local device and cloud. - Streaming/cloud-only file: visible locally but downloaded on demand. ## Collaboration Tools Collaboration tools let users work together in real time or near real time. Examples: - Shared documents - Spreadsheets - Presentations - Videoconferencing - Instant messaging - Shared calendars - Comments and version history Exam clue: - If multiple users edit or communicate together through the same service, it is collaboration. ## Identity Synchronization Identity synchronization connects user identities across systems. Examples: - Microsoft Entra ID - Google Identity - Okta - Directory sync from on-premises identity to cloud identity Why it matters: - Create or update a user once, and the change can appear in connected cloud services. - Password and account state may be synchronized depending on configuration. Exam clue: - If the question says "same account works across cloud apps" or "new users appear automatically," think identity sync. ## License Assignment Cloud services often use per-user licenses. License assignment: - Admin assigns a license to a user account. - The user receives access to apps/services. - Licenses can often be moved between users. Why it matters: - Easier than tracking physical license keys. - Prevents wasting unused licenses. - Centralized license management helps audits and cost control. Exam clue: - If a user can sign in but cannot access an app, check whether the correct license is assigned. ## Commands To Enter Cloud productivity is usually managed in web admin portals, but you can still inspect local sync and network basics. Windows: ```powershell whoami ``` What it does: - Shows the currently signed-in user. - Useful when checking identity or account context. ```powershell hostname ``` What it does: - Shows the device name. ```powershell ipconfig /all ``` What it does: - Shows network and DNS details needed for cloud service connectivity. ```powershell dir $env:USERPROFILE ``` What it does: - Lists folders in the current user's profile. - Look for cloud sync folders such as OneDrive, Dropbox, or Google Drive if installed. Linux: ```bash whoami ``` What it does: - Shows current user. ```bash hostname ``` What it does: - Shows device name. ```bash ip addr ``` What it does: - Shows network interface/IP address information. ```bash ls ~ ``` What it does: - Lists folders in the current user's home directory. - Look for cloud sync folders if a sync client is installed. macOS, if available: ```bash whoami hostname ls ~ ``` What it does: - Shows user, device name, and home folder contents. - Look for iCloud Drive, OneDrive, Dropbox, or Google Drive folders if configured. ## Mini Lab Goal: - Recognize cloud productivity components and local sync behavior. Windows/Linux/macOS: 1. Identify the signed-in user. 2. Identify the device name. 3. Check basic network connectivity. 4. Look in the user's home/profile folder for any cloud sync folders. 5. If you use a cloud storage app, identify whether files are local, online-only, or synced. Record: - Current user: - Device name: - Cloud email service used, if any: - Cloud storage service used, if any: - Sync folder path: - Is there an online-only or streaming file option? - What collaboration tools do you use? - What account identity do those tools use? Admin scenario practice: - A new employee can sign in but cannot open the company spreadsheet app. What should you check? - A user saved a file locally but it does not appear on another device. What sync settings should you inspect? - A user changed departments and now needs a different app set. What licensing/admin action may be needed? ## Quick Check Before Quiz You are ready for the OS-11 quiz when you can answer these without looking: - What does cloud file synchronization do? - What is identity synchronization? - What does license assignment control? - Why are cloud email services centrally managed? - What should you check if a user can sign in but cannot use a licensed app?