I want to use PowerShell to transfer files with FTP to an anonymous FTP server. I would not use any extra packages. How?
There must be no risk that the script hangs or crashes.
I want to use PowerShell to transfer files with FTP to an anonymous FTP server. I would not use any extra packages. How?
There must be no risk that the script hangs or crashes.
There are some other ways too. I have used the following script:
And you could run a script against the windows FTP command line utility using the following command
(Check out this article)
The following question on SO also answers this: How to script FTP upload and download?
You can simply handle file uploads through PowerShell, like this. Complete project is available on Github here https://github.com/edouardkombo/PowerShellFtp