← Windows & Active Directory

365 exchange Online

Kategori: Windows & Active Directory · Sayfa: 225

365 exchange Online başlıklı kaynağın profesyonel teknik özetidir. Aşağıda belgenin ana başlık ve içerik yapısı Türkçe açıklamalarla sunulmuştur.

Microsoft 365 Exchange Online Administration What is Exchange Online? Exchange Online is Microsoft’s cloud-based email, calendar, and contacts service . It’s part of Microsoft 365 (Office 365) and provides organizations with enterprise-grade email without needing on-premises Exchange servers. ● Users get access to mailboxes, shared mailboxes, calendars, contacts, and tasks . ● It integrates with Outlook (desktop and web), Teams, and SharePoint . ● Microsoft handles the infrastructure, updates, and security , reducing IT overhead. Key Features of Exchange Online A. Email and Mailboxes ● Enterpr...

ise-class email with custom domains. ● Mailbox sizes: ○ Plan 1 / E1: 50 GB per user ○ Plan 2 / E3/E5: 100 GB per user, plus auto-expanding archive ● Shared mailboxes for teams or departments. ● Alias emails and multiple addresses per mailbox. B. Calendars and Scheduling ● Shared calendars for team coordination. ● Scheduling assistant to find free/busy times across users. ● Room & equipment mailboxes for booking conference rooms or devices. C. Compliance & Security ● Anti-spam and anti-malware protection. ● Data Loss Prevention (DLP) policies to prevent sensitive data leaks. ● Litigation hold &...

In-Place hold for legal compliance. ● Archiving and retention policies for long-term data management. ● Advanced Threat Protection (ATP) in E5 for malware, phishing, and Safe Links. D. Mail Flow and Transport Rules ● Rules to redirect, block, or add disclaimers to emails. ● Automatic forwarding control. ● Message trace for troubleshooting email delivery issues. E. Integration ● Works seamlessly with Microsoft Teams, SharePoint, OneDrive, and Outlook . ● Supports mobile access (iOS, Android) and web access (OWA). Licensing Overview Exchange Online can be licensed: ● Standalone Exchange Online ...

Plans: Plan 1 (basic) or Plan 2 (enterprise). ● Included in Microsoft 365 Suites: ○ Business Basic / Standard / Premium ○ Office 365 E1 / E3 / E5 ○ Microsoft 365 E3 / E5 Key differences: ● Plan 1 / E1: 50 GB mailbox, basic email and web access. ● Plan 2 / E3: 100 GB mailbox, compliance features, DLP, litigation hold, archiving. ● E5: Adds advanced security like ATP and auditing. 1. Standalone Exchange Online Licenses License Mailbox Size Archive DLP / Compliance Outlook Web Access Hosted Voicemail Use Case Exchange Online Plan 1 50 GB Optional (100 GB) ❌ ✅ ❌ Small business or standard email us...

ers Exchange Online Plan 2 100 GB Auto-expanding archive ✅ ✅ ✅ Enterprises needing compliance & archiving 2. Microsoft 365 / Office 365 Suite Licenses Including Exchange Online License Plan Mailbox DLP/Compliance Archiving Office Apps Security Use Case Microsoft 365 Business Basic 1 50 GB ❌ Optional Web & Mobile Basic Anti-spam Small businesses, email only Microsoft 365 Business Standard 1 50 GB ❌ Optional Desktop + Web Basic Anti-spam Small business with Office apps Microsoft 365 Business Premium 1 50 GB ❌ Optional Desktop + Web Advanced Security + Intune Small business with security Office 3...

65 E1 1 50 GB ❌ Optional Web only Basic security Enterprise web-only users Office 365 E3 2 100 GB ✅ Auto-expanding Desktop + Web DLP, retention, litigation hold Enterprises needing compliance Office 365 E5 2 100 GB ✅ Auto-expanding Desktop + Web Advanced Security (ATP, Safe Links/Attachments) Enterprises needing advanced security Microsoft 365 E3 2 100 GB ✅ Auto-expanding Desktop + Web Compliance + Security Enterprise productivity & compliance Microsoft 365 E5 2 100 GB ✅ Auto-expanding Desktop + Web Compliance + Advanced Security + Analytics Full-featured enterprise package 1. Create a Microso...

ft 365 E3 Trial Account ✅ Purpose ● Set up a Microsoft 365 tenant for testing, training, or proof of concept . ● Provides a sandbox environment without impacting production. ✅ Configuration Steps Portal 1. Go to Microsoft 365 E3 Trial. 2. Click Start Free Trial → enter business email. 3. Create tenant domain (e.g., contoso.onmicrosoft.com). 4. Create the first Global Admin account. 5. Verify phone/email → finish signup. PowerShell (after tenant created) # Connect to Microsoft Online Connect-MsolService # View available licenses Get-MsolAccountSku ✅ Validation ● Login at https://admin.microsoft...

.com. ● Navigate to Billing → Licenses → Confirm Microsoft 365 E3 Trial listed. ✅ Best Practices ● Use a non-production domain for labs. ● Document Global Admin credentials. ● Enable MFA immediately. ✅ Use Case ● IT teams test Exchange Online, Purview, Intune . ● Pilot compliance/security policies before production rollout. 2. Create Exchange Online User Mailbox and Assign License ✅ Purpose ● Create new users in Microsoft 365 with mailboxes. ● Assign licenses for Exchange Online access. ✅ Configuration Steps Portal 1. Microsoft 365 Admin Center → Users → Active users → Add a user . 2. Enter na...

me, username, domain. 3. Assign Microsoft 365 E3/E5 license. 4. Ensure Exchange Online service enabled. PowerShell # Connect to MSOnline Connect-MsolService # Create new user New-MsolUser -UserPrincipalName user1@contoso.com -DisplayName "User One" -FirstName User -LastName One -UsageLocation US -LicenseAssignment contoso:ENTERPRISEPACK ✅ Validation ● Login as user → access Outlook on the Web (https://outlook.office.com). ● Send/receive test email. ✅ Best Practices ● Always set Usage Location before assigning licenses. ● Automate user creation with PowerShell scripts for bulk onboarding. ✅ Use...

Case ● Onboarding new employees with mailbox & Teams access on Day 1. 3. Create Office 365 User Account without License in Exchange Online ✅ Purpose ● Create accounts for contractors, staging, or future employees without consuming licenses. ✅ Configuration Steps Portal 1. Admin Center → Users → Active users → Add a user . 2. Enter details → Do not assign a license . PowerShell New-MsolUser -UserPrincipalName user2@contoso.com -DisplayName "User Two" -FirstName User -LastName Two -UsageLocation US ✅ Validation ● User appears under Active Users . ● No mailbox created (check Exchange Admin Cente...

r → Mailboxes). ✅ Best Practices ● Use for service accounts or pre-provisioning. ● Assign license later when mailbox/app access is required. ✅ Use Case ● HR creates accounts early, IT assigns licenses on employee start date. 4. Assign or Remove License to Microsoft 365 User Account ✅ Purpose ● Manage Microsoft 365 subscriptions for users dynamically. ● Enable/disable Exchange Online, Teams, OneDrive, etc. ✅ Configuration Steps Portal 1. Admin Center → Users → Active users . 2. Select user → Licenses and apps . 3. Assign/remove Microsoft 365 E3/E5 . PowerShell # Assign License Set-MsolUserLicen...

se -UserPrincipalName user2@contoso.com -AddLicenses contoso:ENTERPRISEPACK # Remove License Set-MsolUserLicense -UserPrincipalName user2@contoso.com -RemoveLicenses contoso:ENTERPRISEPACK ✅ Validation ● User mailbox is provisioned (assign). ● User mailbox removed (remove license). ✅ Best Practices ● Use Azure AD Group-based licensing for automation. ● Regularly audit unused licenses to reduce cost. ✅ Use Case ● Temporary employees: assign license only for project duration. 5. How to Reset User Password in Exchange Online ✅ Purpose ● Reset forgotten or compromised passwords for users. ● Mainta...

Belge toplam 15 paragraf içermektedir; tam metin /root/pdf klasöründeki kaynak dosyasında mevcuttur.

← Kategoriye dön