I want to download/upload file from remote windows 2008 R2 servers using my python script. The problem is I do not want to install anything extra on my windows server box. I want to achieve this just using my normal login credentials.
Below are the different methods I heard of:
- Use paramiko SSH : But to use this we have to install an SSH service on the remote box, which i do not want to do.
- Use python wmi module: But I guess it does not have the functionality to download files from the remote servers.
- Mount drives on your local box: Also do not want to do this as there will be lot of machines i want to connect to.
- Use winscp: I guess it will also require SSH ?
- Fabric: Heard of this, not sure what are its prerequisites.
are there any other methods with which i can achieve this?