bugfixing
This commit is contained in:
parent
fda10b3ffe
commit
19ce5b2179
@ -2,8 +2,6 @@
|
||||
|
||||
set EXE=..\software\totalcommander-setup.exe
|
||||
set KEY=..\personal\wincmd.key
|
||||
set INI=..\personal\wincmd.ini
|
||||
set FTPCONFIG=..\personal\wcx_ftp.key
|
||||
set TARGET=c:\totalcmd
|
||||
set STARTMENU=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
|
||||
set STARTMENU_USER=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
|
||||
@ -30,16 +28,6 @@ if EXIST %KEY% (
|
||||
copy /Y %KEY% %TARGET%
|
||||
)
|
||||
|
||||
if EXIST %FTPCONFIG% (
|
||||
echo copying ftp config file ...
|
||||
copy /Y %FTPCONFIG% %TARGET%
|
||||
)
|
||||
|
||||
if EXIST %INI% (
|
||||
echo copying ini file ...
|
||||
copy /Y %INI% %TARGET%
|
||||
)
|
||||
|
||||
rem refresh desktop (W10 style)
|
||||
ie4uinit.exe -show
|
||||
|
||||
|
@ -39,10 +39,22 @@ if NOT EXIST %USERPROFILE%\.vimrc (
|
||||
|
||||
rem TOTALCOMMANDER
|
||||
if NOT EXIST %APPDATA%\GHISLER\WINCMD.ini (
|
||||
echo setup for TOTALCOMMANDER ...
|
||||
echo copying ini file for TOTALCOMMANDER ...
|
||||
mkdir %APPDATA%\GHISLER 1>nul 2>nul
|
||||
copy /Y %TOOLS%\optional\config\WINCMD.ini %APPDATA%\GHISLER
|
||||
copy /Y %TOOLS%\optional\config\wcx_ftp.ini %APPDATA%\GHISLER
|
||||
|
||||
rem ini file ...
|
||||
if EXIST %TOOLS%\personal\WINCMD.ini (
|
||||
copy /Y %TOOLS%\personal\WINCMD.ini %APPDATA%\GHISLER
|
||||
) else (
|
||||
copy /Y %TOOLS%\optional\config\WINCMD.ini %APPDATA%\GHISLER
|
||||
)
|
||||
|
||||
rem ftp config file ...
|
||||
if EXIST %TOOLS%\personal\wcx_ftp.ini (
|
||||
copy /Y %TOOLS%\personal\wcx_ftp.ini %APPDATA%\GHISLER
|
||||
) else (
|
||||
copy /Y %TOOLS%\optional\config\wcx_ftp.ini %APPDATA%\GHISLER
|
||||
)
|
||||
)
|
||||
|
||||
rem WINDOWS TERMINAL
|
||||
|
Loading…
Reference in New Issue
Block a user