w10install/optional/install-totalcommander.cmd
Michael H.G. Schmidt f48ed62dc2 .
2021-03-02 21:47:42 +01:00

24 lines
496 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 and moving TotalCommander desktop link ...
move /Y "%USERPROFILE%\Desktop\Total Commander*" "%PUBLIC%\Desktop\Total Commander.lnk"
echo ####### %0 #######
pause