PURPOSE : Coping files and folders on remotes machines
REQUIREMENTS:
.NET Framework v4.0 or better.
PowerShell v2.0.
USE :
RemoteCopy.exe [-m][-u][-p][-s][-d][--help]
Paramètres :
-m: ip address of remote machine or list of address
-u: user (remote login)
-p: password
-s: directory or sources files to copy
-d: destination
--help: display help
NB :
> to copy to or from a drive, you can use D: or D: \ but not "D: \".
> character * can be used to select the files, but the program became case sensitive.
Last edit: Brice Maurin 2014-06-05
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
PURPOSE : Coping files and folders on remotes machines
REQUIREMENTS:
.NET Framework v4.0 or better.
PowerShell v2.0.
USE :
RemoteCopy.exe [-m] [-u] [-p] [-s] [-d] [--help]
Paramètres :
-m: ip address of remote machine or list of address
-u: user (remote login)
-p: password
-s: directory or sources files to copy
-d: destination
--help: display help
Exemples :
> RemoteCopy.exe -m 172.16.197.3 -u administrateur -p password -s "C:\informatique\fic.txt" -d "C:\Documents and Settings\vendeur\Bureau"
> RemoteCopy.exe -m 172.16.197.3 -u administrateur -p password -s "C:\informatique*" -d "C:\Documents and Settings\vendeur\Bureau"
> RemoteCopy.exe -m K:\list_ip.txt -u administrateur -p password -s "C:\informatique\Repertoire" -d "C:\Documents and Settings\vendeur\Bureau"
NB :
> to copy to or from a drive, you can use D: or D: \ but not "D: \".
> character * can be used to select the files, but the program became case sensitive.
Last edit: Brice Maurin 2014-06-05