You need his implementation of netcopy, netmove, netdelete.
pywin32 extension required.
1 2 # Copy "c:\documents" folder/file to "c:\transferred" on host "w0001". 3 netcopy('w0001', 'c:\\documents', 'c:\\transferred') 4 5 # Move with account credentials. 6 netmove('w0001', 'c:\\documents', 'c:\\transferred', 'admin', 'adminpass') 7 8 # Delete with another account. 9 netdelete('w0001', 'c:\\transferred', 'testdom\\user1', 'user1pass')