w10install/scripts/install-vlc.cmd

23 lines
369 B
Batchfile
Raw Normal View History

2021-02-03 13:37:54 +01:00
@echo off
2021-02-27 20:07:28 +01:00
set EXE=..\software\vlc-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
2021-02-03 13:37:54 +01:00
echo ####### %0 #######
echo installing VLC player ...
%EXE% /L=1033 /S
2021-03-09 23:15:35 +01:00
echo removing Desktop link ...
del /F "%PUBLIC%\Desktop\VLC media player.lnk" 2>nul
2021-02-03 13:37:54 +01:00
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######