Reputation: 286
I want to do a python script that is able to copy log files from a remote windows 10 virtual machine to the script's machine (Windows) as well as deleting files. A developer in my work place uses WMI with C# to do these kind of stuff but I haven't been able to find anything for Python regarding this topic.
Upvotes: 1
Views: 1063
Reputation: 21285
You can use SSH for that.
Paramiko is an awesome library that can run SSH in python: http://www.paramiko.org/
Upvotes: 1