Commandline Copy without launching GUI?

Avatar
  • updated
  • Completed

I would like to be able to run TeraCopy without launching the GUI (so all output would be contained entirely within a cmd window). Is this possible? 

Avatar
John Travolski

That still launches the GUI. Did you try it for yourself?

Avatar
John Travolski

Any updates on this?

Avatar
John Travolski

Any update on this? Would be very useful.

Avatar
Code Sector
  • Completed

Don't be afraid to ask our friendly AI assistant:

How to copy folder c:\folder to d:\folder using the TeraCopy command line with a minimised window inside the PowerShell prompt?

Its response:


To copy a folder from "C:\folder" to "D:\folder" using TeraCopy command line with a minimized window inside PowerShell prompt, you can use the following command:

Start-Process -FilePath "C:\Program Files\TeraCopy\TeraCopy.exe" -ArgumentList "Copy 'C:\folder' 'D:\folder' /NoClose" -WindowStyle Minimized

This command will start the TeraCopy process with the "Copy" operation, source folder as "C:\folder", destination folder as "D:\folder".

The response is good, but it's better to switch quotation symbols:

Start-Process -FilePath "C:\Program Files\TeraCopy\TeraCopy.exe" -ArgumentList 'Copy "C:\folder" "D:\folder"' -WindowStyle Minimized