HTTP SharePoint Put uploads a file to 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 sending it.
Use this script like a destination, as a per-file process. Typically you would use this in a task with one or more sources.
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_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. Macros are permitted.
For SharePoint 2003, use "Shared Documents" for the default library.
For SharePoint 2007, use "Documents" for the default library.
SharePoint_Filename - The name to be given to the file. If not specified, the original filename is used. Macros are permitted.
SharePoint_MaxFileSizeMB - If a file is larger than the specified number of (MB), then skip that file and signal an error. Default 100; max value 500.