1 2 3 4 5 6 7 8 9 | @echo off
echo Uninstalling old Videolan...
start /wait /d "%Programfiles%\VideoLAN\VLC\" uninstall.exe /S
rem Wait to be sure that uninstallation is ended.
sleep 120
echo Installing Videolan package...
start /wait vlc-1.0.1-win32.exe /S
del "%ALLUSERSPROFILE%\Desktop\VLC media player.lnk"
echo Done.
|
Add a comment
Login to add a comment.