Veeam-MS Exchange Writer Retryable Error

It is very common to encounter the following error message in Veeam Backup when backuping Microsoft Exchange Server 6/18/2018 8:37:38 PM :: VSS: Backup job failed. Cannot notify writers about the 'BACKUP FINISH' event. A VSS critical writer has failed. Writer name: [Microsoft Exchange Writer]. Class ID: [{76fe1ac4-15f7-4bcd-987e-8e1acb462fb7}]. Instance ID: [{5e2cc993-8c98-4f33-98b6-9697ceaecbaf}]. Writer's state: [VSS_WS_FAILED_AT_BACKUP_COMPLETE]. Error …

Veeam-MS Exchange Writer Retryable Error Read More »

Syntax Highlight with Prism.js in Ghost

Please refer to the steps below on how to add Syntax Highlight with Prism.js in Ghost Go to Prism and select the language that you would like to be included Download both prism.css & prism.js and upload to /var/www/ghost/content/themes/casper/assets/css /var/www/ghost/content/themes/casper/assets/js Edit the default.hbs file /var/www/ghost/content/themes/casper$ sudo vi default.hbs Paste "<link rel="stylesheet" type="text/css" href="{{asset "css/prism.css"}}" />" …

Syntax Highlight with Prism.js in Ghost Read More »

Disable Feature Image in Post in Ghost Blog

Go to /var/www/ghost/content/themes/casper$ sudo vi post.hbs Remove the following lines {{#if feature_image}} <figure class="post-full-image" style="background-image: url({{feature_image}})"> </figure> {{/if}} Restart Ghost /var/www/ghost$ ghost restart The Features images should be disabled in the Blog Post now.

PowerShell to Generate Exchange Mailbox Usage Report

You can run the PowerShell Scirpt below on Exchange 2010 SP3 server to export Mailbox Usage Report to CSV File #Connect to Exchange – PowerShell ISE – Exchange 2010 . 'C:\Program Files\Microsoft\Exchange Server\V14\bin\RemoteExchange.ps1' Connect-ExchangeServer -auto $Results = @() #Declare Array for all results $Mailboxes = Get-Mailbox -ResultSize Unlimited -RecipientType UserMailbox #$Mailboxes = Get-Mailbox -identity group2 …

PowerShell to Generate Exchange Mailbox Usage Report Read More »

Syntax Highlighting with Prismjs in WordPress

Select the language in https://prismjs.com/download.html and download the prism.css & prism.js I’m using GeneratePress Child Theme, and i had manually create css & js directory in generatepress_child /var/www/html/wordpress/wp-content/themes# ls generatepress* generatepress: 404.php content-link.php content-single.php footer.php inc no-results.php rtl.css search.php single.php archive.php content-page.php css functions.php index.php page.php screenshot.png sidebar-left.php style.css comments.php content.php fonts header.php js readme.txt …

Syntax Highlighting with Prismjs in WordPress Read More »

Scroll to Top