• Veeam & Powershell: Sync Cloud Repository

    This Script will Sync your Cloud repository for Veeam Backup & Replication: Add-PSSnapin -Name VeeamPSSnapIn -ErrorAction SilentlyContinue Get-VBRBackupRepository |where-object {$_.Type -eq “cloud”}|Sync-VBRBackupRepository

  • Veritas V-79-57344-38727 – Backup Exec was unable to collect the necessary metadata for your virtual machine

    Hi; This is a common issue that can be related to writers or either can be related to several problems related to the post Original source: https://www.veritas.com/support/en_US/article.TECH126737     Here’s what you can do : 1. Check Exchange Writer backup status is not failed state using on CMD VSSADMIN LIST WRITERS 2.Update Veritas Backup via live…

  • Macro for moving all emails from subfolders ( recursive )

    Never wondered how I can get this emails sorted when all are spread in different folders ? Well… I’ve got a very nice macro that I have found last week ; In order this to work you will need to activate macro execution in your outlook ALT +F11 ( Access Macro design ) Alt +F5…

  • Enable Exchange account logging on accounts

    Hi ; How to enable logs into an exchange account: After you connect to your Exchange PowerShell organization, use PowerShell to enable mailbox audit logging for a mailbox /  Set-Mailbox -Identity “Name of the user” -AuditEnabled $true   Alternatively, you can enable mailbox auditing for all mailboxes in your organization. Get-Mailbox -ResultSize Unlimited -Filter {RecipientTypeDetails…

  • Resend Multiple Emails via Outlook VBA from Folder / Outbox Stuck problems when sending multiple emails Macro

    When emails stuck on outbox; Copy/ Move them to another folder; Clear outbox Use the macro to send the remaining emails ; In the first place, press “Alt + F11” key buttons in the main Outlook window. After getting into the “Microsoft Visual Basic for Applications” window, open a blank module. Subsequently, copy the following…