w10install/optional/install-virtualbox.cmd

25 lines
439 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\virtualbox-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 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 #######
2021-03-02 21:47:42 +01:00
pause