.
This commit is contained in:
parent
f0d67b346e
commit
3aa5cc35ff
@ -68,9 +68,6 @@ echo ### INSTALL tasks ###
|
|||||||
echo #####################
|
echo #####################
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
call install-logonscript.cmd
|
|
||||||
echo.
|
|
||||||
|
|
||||||
call install-desktopicons.cmd
|
call install-desktopicons.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
@ -106,6 +103,9 @@ echo.
|
|||||||
call install-antivir.cmd
|
call install-antivir.cmd
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
|
call install-logonscript.cmd
|
||||||
|
echo.
|
||||||
|
|
||||||
echo #####################
|
echo #####################
|
||||||
echo ### DISABLE tasks ###
|
echo ### DISABLE tasks ###
|
||||||
echo #####################
|
echo #####################
|
||||||
|
@ -36,14 +36,20 @@ echo creating some directories and copy files for current user ...
|
|||||||
rem SSH
|
rem SSH
|
||||||
mkdir %USERPROFILE%\workspace 1>nul 2>nul
|
mkdir %USERPROFILE%\workspace 1>nul 2>nul
|
||||||
mkdir %USERPROFILE%\.ssh 1>nul 2>nul
|
mkdir %USERPROFILE%\.ssh 1>nul 2>nul
|
||||||
xcopy /D %TOOLS%\scripts\config\ssh-config.txt %USERPROFILE%\.ssh\config
|
if NOT EXIST %USERPROFILE%\.ssh\config (
|
||||||
|
copy /Y %TOOLS%\scripts\config\ssh-config.txt %USERPROFILE%\.ssh\config
|
||||||
|
)
|
||||||
|
|
||||||
rem WINDOWS TERMINAL
|
rem WINDOWS TERMINAL
|
||||||
xcopy /D %TOOLS%\scripts\config\wt-settings.json ^
|
if NOT EXIST %LOCALAPPDATA%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json (
|
||||||
%LOCALAPPDATA%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json
|
copy /Y %TOOLS%\scripts\config\wt-settings.json ^
|
||||||
|
%LOCALAPPDATA%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json
|
||||||
|
)
|
||||||
|
|
||||||
rem TOTALCOMMANDER
|
rem TOTALCOMMANDER
|
||||||
xcopy /D %TOOLS%\scripts\config\wcx_ftp.ini %windir%
|
if NOT EXIST %windir%\wcx_ftp.ini (
|
||||||
|
copy /Y %TOOLS%\scripts\config\wcx_ftp.ini %windir%
|
||||||
|
)
|
||||||
|
|
||||||
rem ###
|
rem ###
|
||||||
rem ######
|
rem ######
|
||||||
|
Loading…
Reference in New Issue
Block a user