- Aug
- 2,293
- 111
Since TCMD.EXE can no longer be copied to the local system using the internal COPY command...
...note that CURL.EXE,
part of the Windows 10 OS,
can be used to copy TCMD.EXE to the local system.
Joe
Code:
R:\>copy /g https://jpsoft.com/downloads/v33/tcmd.exe
https://jpsoft.com/downloads/v33/tcmd.exe => R:\tcmd.exe
TCC: HTTP protocol error. 403 Forbidden. "https://jpsoft.com/downloads/v33/tcmd.exe"
0 files copied 1 failed
...note that CURL.EXE,
part of the Windows 10 OS,
can be used to copy TCMD.EXE to the local system.
Code:
R:\>curl.exe -s -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0" -O https://jpsoft.com/downloads/v33/tcmd.exe
Joe