computing
  • 3

Solved Xcopy Silent Mode

  • 3

how to crate bat file xcopy command and silent work????????????

Share

1 Answer

  1. Just put /s.
    Example: xcopy /s filename.exe C:\users\user\filename.exe
    you can also put cls to clear the command line.
    • 0