w10install/scripts/install-virtualbox.cmd
Michael H.G. Schmidt 2a6e6dee1c restructured
2021-02-27 20:07:28 +01:00

23 lines
430 B
Batchfile

@echo off
set EXE=..\software\virtualbox-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
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 #######