w10install/scripts/install-totalcommander.cmd

22 lines
487 B
Batchfile
Raw Normal View History

2021-02-28 15:24:20 +01:00
@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
2021-02-28 22:17:02 +01:00
echo renaming and moving TotalCommander desktop link ...
2021-02-28 15:24:20 +01:00
move /Y "%USERPROFILE%\Desktop\Total Commander*" "%PUBLIC%\Desktop\Total Commander.lnk"
echo ####### %0 #######