HTTP SharePoint Get downloads files from a Windows SharePoint Server website, using HTTP[S]. This script is not suitable for files larger than a few dozen megabytes, because it loads the entire file into memory before saving it.
Use this script like a source. Then configure one or destinations to save the files to their final locations.
Input Parameters
SharePoint_BaseURL (Required) - The base URL of the website.
For SharePoint 2003, this will be something like https://server.
For SharePoint 2007, this will be something like https://server/Docs.
SharePoint_DeleteAfterDownload - Whether to delete the source file from SharePoint after a successful download. Default is False.
SharePoint_IgnoreCertProblems - Whether to ignore problems with the remote server certificate (such as signer not trusted). Default is False.
SharePoint_HTTPUser - The username, for HTTP authentication.
SharePoint_HTTPPassword - The password, for HTTP authentication.
SharePoint_Folder (Required) - The name of the SharePoint folder, including parent folders if applicable. Date and parameter macros are allowed.
For SharePoint 2003, use "Shared Documents" for the default library.
For SharePoint 2007, use "Documents" for the default library.
SharePoint_FileMask (Required) - The filemask specifying which files to download. For example, *.txt. Date and parameter macros are permitted.