w10install/scripts/copy-executables.cmd
2024-07-18 14:18:49 +02:00

33 lines
456 B
Batchfile

@echo off
set TOOLS=%SystemDrive%\tools
set SOFTWARE=..\software
echo ####### %0 #######
for %%E in (
bfg.jar
pageant.exe
putty.exe
puttygen.exe
rufus.exe
tzedit.exe
rdp.exe
anydesk.exe
superuser.exe
) do (
if NOT EXIST %SOFTWARE%\%%E (
echo WARNING: %SOFTWARE%\%%E not found!
) else (
echo copying %%E to %TOOLS% ...
copy /Y %SOFTWARE%\%%E %TOOLS%
)
)
echo ####### %0 #######