Commandline Copy without launching GUI?
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?
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?
That still launches the GUI. Did you try it for yourself?
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
https://help.codesector.com/en/knowledge-bases/2/articles/398-command-line