Hello @Eugene,
I don't use the Windows storage daemon, but one issue that I am seeing wrong in your config is using \
backslashes in Windows paths. In Bacula all Windows, Linux, UNIX paths use slashes /
as a path separator, not backslashes \
.
So, on the Windows host you need to change in the storage daemon configuration:
FROM:
Archive Device = "D:\test_backup"
TO:
Archive Device = "D:/test_backup"
After that you need to restart the storage daemon.
Best regards,
Marcin Haba (gani)