Quantcast
Channel: Veeam Support Knowledge Base
Viewing all articles
Browse latest Browse all 4362

How to Configure a Custom Text Banner for the Veeam Backup & Replication Console

$
0
0

How to Configure a Custom Text Banner for the Veeam Backup & Replication Console

KB ID: 4458
Product: Veeam Backup & Replication | 12
Veeam Cloud Connect | 12
Published: 2023-06-08
Last Modified: 2023-06-08

Purpose

This article documents enabling and configuring the "Classified Stripe," a feature that can be configured to prominently display a banner in all Veeam Backup & Replication Consoles that connect to the Veeam Backup Server, including remote consoles.

Use Case Examples

Default
This is the default text and background color.

Solution

Enable the Stripe

This registry value is created on the Veeam Backup Server, and will be displayed on every Veeam Backup & Replication Console that connects to the server, including remotely connected consoles.

Key Location: HKLM\HKLM\SOFTWARE\Veeam\Veeam Backup and Replication\
Value Name: UIClassifiedMode
Value Type: DWORD (32-Bit) Value
Value Data: 1

Create via PowerShell:

New-ItemProperty -Path 'HKLM:\SOFTWARE\Veeam\Veeam Backup and Replication\' -Name 'UIClassifiedMode' -Value "1" -PropertyType DWORD -Force

Configure the Stripe Text

If this value is not created, the stripe will display the word CONFIDENTIAL.

This value controls what text will be shown in the stripe.

Key Location: HKLM\HKLM\SOFTWARE\Veeam\Veeam Backup and Replication\
Value Name: UIClassifiedStripeText
Value Type: String Value (REG_SZ)
Value Data: Enter the text that you want to be displayed in the stripe.

Create via PowerShell:

New-ItemProperty -Path 'HKLM:\SOFTWARE\Veeam\Veeam Backup and Replication\' -Name 'UIClassifiedStripeText' -Value "Enter the text that you want to be displayed in the stripe." -PropertyType String -Force

Configure the Stripe Background Color

(Optional, if not specified, the color will default to dark red.)

This value controls the background color of the stripe. The value data can be any hexadecimal color code, and must include the preceding "#" symbol.

Key Location: HKLM\HKLM\SOFTWARE\Veeam\Veeam Backup and Replication\
Value Name: UIClassifiedStripeBackgroundColor
Value Type: String Value (REG_SZ)
Value Data: #E1F4E3

Create via PowerShell:

New-ItemProperty -Path 'HKLM:\SOFTWARE\Veeam\Veeam Backup and Replication\' -Name 'UIClassifiedStripeBackgroundColor' -Value "#E1F4E3" -PropertyType String -Force
To submit feedback regarding this article, please click this link: Send Article Feedback
To report a typo on this page, highlight the typo with your mouse and press CTRL + Enter.

Viewing all articles
Browse latest Browse all 4362

Trending Articles