This commit is contained in:
Michael H.G. Schmidt 2021-02-03 13:37:54 +01:00
parent bb905f28d8
commit 6c70e3de70
4 changed files with 51 additions and 0 deletions

View File

@ -118,6 +118,12 @@ echo.
call install-receiver.cmd
echo.
call install-vlc.cmd
echo.
call install-virtualbox.cmd
echo.
call install-antivir.cmd
echo.

View File

@ -59,6 +59,15 @@ if NOT EXIST %APPDATA%\GHISLER\WINCMD.ini (
copy /Y %TOOLS%\scripts\config\wcx_ftp.ini %APPDATA%\GHISLER
)
rem WINDOWS TERMINAL
set LOCALSTATE=%LOCALAPPDATA%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState
if NOT EXIST %LOCALSTATE%\settings.json (
mkdir %LOCALSTATE% 1>nul 2>nul
copy /Y %TOOLS%\scripts\config\wt-settings.json ^
%LOCALSTATE%\settings.json
)
rem ###
rem ######

View File

@ -0,0 +1,18 @@
@echo off
set EXE=..\software\VirtualBox-6.1.18-142142-Win.exe
echo ####### %0 #######
echo installing VirtualBox ...
%EXE% --silent --ignore-reboot
echo renaming Desktop shortcut ...
move /Y "%PUBLIC%\Desktop\Oracle VM VirtualBox.lnk" ^
"%PUBLIC%\Desktop\VirtualBox.lnk"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######

18
scripts/install-vlc.cmd Normal file
View File

@ -0,0 +1,18 @@
@echo off
set EXE=..\software\vlc-3.0.12-win64.exe
echo ####### %0 #######
echo installing VLC player ...
%EXE% /L=1033 /S
echo renaming Desktop shortcut ...
move /Y "%PUBLIC%\Desktop\VLC media player.lnk" ^
"%PUBLIC%\Desktop\VLC.lnk"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######