Copy files to network computers on windows command line

前端 未结 3 1835
北恋
北恋 2021-02-01 21:52

I am trying to create a script on Windows which when run on an admin PC:

  1. Copies a folder from the admin PC into a group of network PCs by specifying the ip address
3条回答
  •  野的像风
    2021-02-01 22:08

    check Robocopy:

    ROBOCOPY \\server-source\c$\VMExports\ C:\VMExports\ /E /COPY:DAT

    make sure you check what robocopy parameter you want. this is just an example. type robocopy /? in a comandline/powershell on your windows system.

提交回复
热议问题