w10install/scripts/install-totalcommander.cmd
Michael H.G. Schmidt 4ff022fd37 .
2021-02-28 15:24:20 +01:00

22 lines
476 B
Batchfile

@echo off
set EXE=..\software\totalcommander-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing TotalCommander ...
%EXE% /AHMGDU
rem this runs in the background - we have to wait 10 seconds for it to complete ...
timeout /T 10
echo renaming TotalCommander desktop link ...
move /Y "%USERPROFILE%\Desktop\Total Commander*" "%PUBLIC%\Desktop\Total Commander.lnk"
echo ####### %0 #######