David Carlson Posted October 2, 2015 Report Share Posted October 2, 2015 I had recently helped a customer configure automatic file extraction on a Mac computer, and thought I would share the details here. This option works for all builds of Windows, MacOS and Linux, and can be used for data files from any Symphonie data logger - including SymphoniePRO Install Mozilla Thunderbird (https://www.mozilla.org/en-US/thunderbird/) Search for the Add-on “attachment extractor”[sharedmedia=core:attachments:32] Install it Restart Thunderbird In the Add-ons manager, under Extensions click Preferences for the AttachmentExtractor[sharedmedia=core:attachments:31] Configure it to handle the files as you like. Note that there are many options for customizing this process. Link to comment Share on other sites More sharing options...
pcorcoran Posted October 2, 2015 Report Share Posted October 2, 2015 Great post Dave! Another customer of ours recently mentioned using Outlook Attachment Sniffer add-in to get *.rwd and *.rld data files out of Outlook and into specific folders. You can find more information about the tool here: http://www.rsbr.de/Software/OASniffer/index.htm. Pearse Link to comment Share on other sites More sharing options...
Dave Morris Posted July 20, 2016 Report Share Posted July 20, 2016 I'm using the VBA script below, and mail rules in Outlook 2010, to move the .rwd file to the raw data folder. Do you see any disadvantages with doing it that way David or Pearse? Public Sub saveAttachtoDisk(itm As Outlook.MailItem) Dim objAtt As Outlook.Attachment Dim saveFolder As String saveFolder = "D:\NRG\RawData" Dim dateFormat As String dateFormat = Format(itm.ReceivedTime, "yyyy-mm-dd HHmm ") For Each objAtt In itm.Attachments objAtt.SaveAsFile saveFolder & "\" & dateFormat & objAtt.DisplayName NextEnd Sub Thanks, Dave Link to comment Share on other sites More sharing options...
pcorcoran Posted July 25, 2016 Report Share Posted July 25, 2016 Hello Dave, Thank you for your post. There are many ways to extract data from an email account like Outlook. I know a number of customer's who also use scripting and rules to manage their data files. I don't see any problems with this method, so if it works for you then keep at it! Pearse Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.