Ok, I've given myself enough permissions to access this registry key and all sub-keys using the PowerShell script below, and it seems to allow me to log in now:
# Run in an elevated PowerShell window (Administrator)
$path = 'HKLM:\SOFTWARE\Veeam\Veeam Backup and Replication\Plugins'
try {
$acl = Get-Acl -Path $path
# Allow standard users to read the key (and subkeys)
$rule = New-Object System.Security.AccessControl.RegistryAccessRule(
'Users',
'ReadKey',
'ContainerInherit,ObjectInherit',
'None',
'Allow'
)
Right now nothing is wrong with the login, so I'm not sure what there is to see, but I'm happy to let you have a look at the install as we have several other clients I will want to upgrade to v13 in the near future.
The only issue I have at the moment is that one of the client servers ("fileserver") isn't getting their updated components for some reason. When I tried to make logs for your case / ticket it said my client server ("fileserver") certificate is invalid?
After upgrading (using the Windows Server ISO), I can no longer connect to B&R from the backup server using the console unless I start it with Run as administrator. Shouldn’t it prompt for permission via UAC when admin privileges are required? It has beed so in v12.
Error: Failed to connect to the backup server: Access to the registry key ‘HKEY_LOCAL_MACHINE\SOFTWARE\Veeam\Veeam Backup and Replication\Plugins\13.0.0\Console’ is denied
Connecting from a remote machine (for example, my admin workstation) works without any problems.
Does anyone have a quick fix for this, or should I reach out to support directly?
Alex shared a quick fix, but I strongly recommend opening a support case so we can investigate this issue properly.
A customer should not have to change permissions on their own.
I just wanted to follow up and let you know that I was able to resolve the issue with support. We fixed it by adjusting the permissions on the affected registry key.