w10install/scripts/copy-executables.cmd

45 lines
894 B
Batchfile
Raw Permalink Normal View History

@echo off
2023-02-20 09:24:42 +01:00
set TOOLS=%SystemDrive%\tools
set SOFTWARE=..\software
echo ####### %0 #######
2024-11-19 13:17:59 +01:00
rem ###################################
rem Windows Defender Exception ...
rem ###################################
echo disabling Windows defender for PATH [ %TOOLS% ] ...
powershell -inputformat none -outputformat none -NonInteractive -Command Add-MpPreference -ExclusionPath %TOOLS%
rem ###################################
rem MAIN loop ( copy .exe files ) ...
rem ###################################
for %%E in (
2024-03-15 16:29:19 +01:00
bfg.jar
pageant.exe
2021-04-03 23:05:39 +02:00
putty.exe
puttygen.exe
2021-04-05 23:06:24 +02:00
rufus.exe
2023-07-30 10:42:03 +02:00
tzedit.exe
2024-01-30 21:40:08 +01:00
rdp.exe
2024-05-31 14:53:01 +02:00
anydesk.exe
2024-07-18 14:18:49 +02:00
superuser.exe
2024-09-08 19:53:09 +02:00
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 #######
2022-06-19 11:28:23 +02:00