What I am finding is that Veeam changes a particular registry key during replication:
Code: Select all
HKLM\SYSTEM\CurrentControlSet\Control\hivelist REG_SZ "\REGISTRY\MACHINE\BCD00000000"
Code: Select all
HKLM\SYSTEM\CurrentControlSet\Control\hivelist REG_SZ "\REGISTRY\MACHINE\BCD00000001"
Has anyone else had this issue and do we know why it happens?
I am attempting to work around it with a post job batch file which contains the following:
Code: Select all
reg delete \\dc1\HKLM\SYSTEM\CurrentControlSet\Control\hivelist /v "\REGISTRY\MACHINE\BCD00000001" /f
reg add \\dc1\HKLM\SYSTEM\CurrentControlSet\Control\hivelist /v "\REGISTRY\MACHINE\BCD00000000" /t REG_SZ /d "\Device\HarddiskVolume1\Boot\BCD" /f
Code: Select all
[04.11.2015 13:11:00] <01> Info Running post-job script
[04.11.2015 13:11:00] <01> Info Executing custom command 'C:\Source\hivelist_change.bat', arguments ''
[04.11.2015 13:11:00] <01> Warning Post-job script terminated with exit code 1
Thanks
Mark