You can follow below instructions to setup and use S-Drive Download Manager.
Enabling Download Manager for S-Drive Tab
- Go to https://login.salesforce.com and login to your Salesforce account.
- Go to S-Drive Configuration tab.
- Check Enable Download Manager checkbox under General Settings and click Save button.
- Go to S-Drive tab and you’ll see the Download File(s) icon at the top.
- Now you can select multiple files in a folder by checking their checkboxes and click Download File(s) button to download selected files.
- A Java applet will be opened in a popup and it will ask permissions, where to save downloaded files etc. (You may need to disable popup blockers and enable java applet if asked).
Enabling Download Manager for Objects
- Go to https://login.salesforce.com and login to your Salesforce account.
- Create a custom visualforce page for your object. An example content can be found below:
<apex:page standardController="DemoObject__c" tabStyle="DemoObject__c"> <apex:detail inlineEdit="true" relatedList="true" showChatter="true"/> <cg:AttachmentComponent title="DemoObject Files" inline="true" customObjectName="DemoObject__c" customObjectFileName="DemoObjectFile__c" enableDownloadManager="true" objectId="{!DemoObject__c.Id}" /> </apex:page>
- Make sure you set enableDownloadManager=”true” in the AttachmentComponent component properties and click Save button.
- Make sure you enabled the <Object> Files section of the object as explained in the “Setup & Configuration” section of the video tutorials.
- Go to your individual object and you’ll see the Download Manager button at the top.
- Now you can select multiple files in a folder by checking their checkboxes and click Download Manager button to download selected files.
- A Java applet will be opened in a popup and it will ask permissions, where to save downloaded files etc. (You may need to disable popup blockers and enable java applet if asked).
Notes: Selecting folders is not currently supported in Download Manager. You can select individual files and use Download Manager.