IssueThe TSM backups do not discovered by Recovery Manager for SharePoint (RMSP)PythonWCF.log file contains: String was not recognized as a valid DateTime.
ReasonRMSP 3.0 (and older) tries to use "en-US" culture to convert the date string for a TSM backupRMSP 3.1 tries to use client computer current culture to convert the date string for a TSM backupThe error will occure in case if date string format differs from expected culture.
ResolutionFor RMSP 3.0 open the outputparser.py file.For RMSP 3.1 open the backuplist.py file.
Then find the DateTime.Parse(time, CultureInfo.CurrentCulture) or DateTime.Parse(time, CultureInfo("en-US")) and change this toDateTime.Parse(time, CultureInfo("en-GB") in case of English (United Kingdom) date string format.
This settings will be moved to configuration file for the next RMSP versions.
Quest Recovery Manager SharePoint 3.2.2 Update 20100224 available. It is the Recovery Manager for SharePoint Tivoli Agent msi. This one completely fixes the "date string format " issue (details).
Just install it!