Skip to content

🔧 How to Install

tigattack edited this page Jul 5, 2022 · 5 revisions

Requirements:

  • Veeam Backup & Replication 11 or higher.
  • PowerShell 5.1 or higher.

Install Methods

  • Option 1: Use a simple one-line install script to download and execute the installer, then simply run follow the prompts.
  • Option 2: Download and run the install script manually.
  • Option 3: Install manually.

Note: Options 1 and 2 will also optionally configure any supported Veeam jobs to work with VeeamNotify.

Option 1

📝 NOTE: Please inspect Installer.ps1 prior to running to ensure safety. I already know it's safe, but you should verify the security and contents of any script from the internet you are not familiar with.

  1. Launch PowerShell as Administrator on your Veeam server.
  2. Run the following command:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/tigattack/VeeamNotify/main/Installer.ps1'))

Option 2

  1. Download Installer.ps1.
  2. Open PowerShell (as Administrator) on your Veeam server.
  3. Run the following commands:
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process -Force
Unblock-File C:\path\to\Installer.ps1
C:\path\to\Installer.ps1

Option 3

Follow the manual install instructions on my blog.