w10install/scripts/install-win32diskimager.cmd
Michael H.G. Schmidt b713e6bd11 testing ...
2022-12-28 23:19:32 +01:00

24 lines
564 B
Batchfile

@echo off
set EXE=..\software\win32diskimager.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing WIN32DISKIMAGER ...
%EXE% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo changing startmenu folder ...
move /Y %STARTMENU%\"Image Writer\Win32DiskImager.lnk" %STARTMENU%
echo removing win32diskimager startmenu folder ...
rd /S /Q %STARTMENU%\"Image Writer" 2>nul
echo ####### %0 #######