Forum Discussion
jeanbaptiste75
Dec 02, 2019Copper Contributor
Move a file from a web server to a sharepoint site
Hello. I would like to ask for some help. Everyday some files are created in my webserver with a PHP script. I would like to automatically move thses filee to my sharepoint site / library. ...
Dec 03, 2019
you can use Hybrid Runbook Worker or simply use PowerShell cmdlets and schedule this script with task scheduler.
Cheers,
Federico
jeanbaptiste75
Dec 03, 2019Copper Contributor
Thanks for your answer. On your second link there is some information about "Sharepoint Migration Tool" . Do you think this tool would fit my needs ?
- Dec 03, 2019
SPMT supports your scenario, you need to use PowerShell scripts and generate a scheduled task (link)
Es:
Add-SPMTTask -FileShareSource <String> -TargetSiteUrl <String> -TargetList <String> [-TargetListRelativePath <String>]In general, that's fine, but it seems oversized for what you have to do.
Cheers,
Federico