w10install/scripts/copy-executables.cmd
Michael H.G. Schmidt bc7c372d2e MS-Office integrated
2024-09-08 19:53:09 +02:00

34 lines
477 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
isodownloader.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 #######