Quelque chose comme
cp \\target_machine local_file.txt c:\dest_file.txt
En supposant que vous ayez les autorisations appropriées, vous pouvez le faire comme ceci:
copy local_file.txt \\target_machine\c$\dest_file.txt
Utilisez "c $" pour référencer le lecteur C sur la machine distante.
C'est comme ça:
copy c:\local_path\local_file.txt \\target_machine\destination_path\destination_file.txt
Si \\target_machine\destination_path\
est mappé sur un lecteur réseau, par exemple, Z:
, la commande devient
copy c:\local_path\local_file.txt Z:\destination_file.txt