https://www.youtube.com/watch?v=9hLxvwO1VCs&t=4s To increase the attachment file size limit in Exchange Server 2019 To increase the attachment file size limit in Exchange Server 2019, you can follow these steps: Check current limits: First, verify the current message size limits by running the following command in the Exchange Management Shell: Powershell Get-TransportConfig | Format-List MaxReceiveSize,MaxSendSize Increase the limits: Use the Set-TransportConfig cmdlet to increase both the MaxSendSize and MaxReceiveSize. For example, to set the limit to 50 MB: powershell Set-TransportConfig -MaxSendSize 50MB -MaxReceiveSize 50MB Note that you should set the limit about 33% higher than the actual desired attachment size to account for Base64 encoding. So for a 50 MB attachment limit, you may want to set it to around 67 MB. Restart Exchange services: For the changes to take effect immediately, restart the Exchange services using: powershell Get-Service *Exchange* | Where {$_.D...
How to Schedule back up, backup once, and restore or recover the backup? Windows Server provides built-in backup and recovery capabilities through the Windows Server Backup feature. Here are the key points: Backup: You can perform full server backups or select specific files/folders to back up. Backups can be saved to local drives, network shares, or removable media. You can schedule regular backups or perform one-time backups as needed. To start a backup, open Windows Server Backup, select "Backup Once" or "Backup Schedule", and follow the wizard. Recovery: You can restore entire servers, specific volumes, or individual files/folders. To restore data, open Windows Server Backup, select "Recover", choose the backup source and date, then select what to restore. You can restore to the original location or an alternate location. Key features: Bare Metal Recovery (BMR) back...
Common Exchange Online server issues and solutions During interviews for Exchange Online administrator or support roles, some common Exchange Online server issues and solutions that may be asked include: Email Delivery Issues: Problem: Emails are not being delivered or received. Possible Solutions: Check mail flow rules, connectors, and transport services. Troubleshoot using message tracking and protocol logging. Verify DNS records and ensure no IP blocking or blacklisting. Mailbox Access Issues: Problem: Users cannot access their mailboxes or experience intermittent access. Possible Solutions: Check mailbox permissions, user account status, and client configurations. Diagnose using the Remote Connectivity Analyzer tool. Reset mailbox credentials or reconnect the mailbox if necessary. Outlook Performance Issues: Problem: Slow performance or responsiveness in Outlook or other Exchange Online clients. Possible Solutions: Investigate large mailboxes, outdated Outlook versions, and network...
Comments