Hi.
Is that possible to allow user to launch TotalCommander after installation by program?
for example, show a message box to ask if user wanna start this program.
We know that setup program can detect and close existed TC process while upgrading. Why not to restart it after this process?
It will make easier for me coz I always start TC with administrator privilege.
Installation Process: Start TC after installation
Moderators: Hacker, petermad, Stefan2, white
If you really need this behavior, you could do that by utilizing a batch like:
Don't know if this really works. Try it. Remove lower case 'echo' and 'pause' to leave demo mode for real use.
Code: Select all
@ECHO OFF
FOR %%E in (tcmd*exe) Do (
ECHO.
ECHO "%%E"
SET /P answer=launch this TC setup? [y/n]:
If %answer% == y (
echo START /Wait "%%E"
)
ECHO.
)
ECHO.
ECHO.
ECHO ***** ***** ***** ***** no more setups found ***** ***** *****
ECHO.
ECHO.
ECHO ***** ***** ***** ***** launch now your TC?
ECHO. & ECHO. & ECHO. & ECHO.
SET /P launch=launch now your TC? [y/n]:
If %launch% == y (
echo START "" "D:\rive\path\TOTALCMD.EXE"
)
ECHO Fin!
pause