Changes between Version 2 and Version 3 of Ticket #11349, comment 10
- Timestamp:
- Nov 11, 2014 7:14:27 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11349, comment 10
v2 v3 13 13 I tried several things. 14 14 15 I removed drivers 15 What finally worked (making a long story short): 16 17 I added the VirtualBox Extension Pack and was able to run VirtualBox again. 16 18 17 rm C:\Windows\System32\drivers\VBoxNetAdp.sys 19 I also had the error: Bridged Networking does not find any adapters 18 20 19 rm C:\Windows\System32\drivers\VBoxUSBMon.sys 21 See https://www.virtualbox.org/ticket/3654 20 22 21 rm C:\Windows\System32\drivers\VBoxDrv.sys 23 I fixed it with the following change and running the below command. 22 24 23 Stopped and deleted vboxdrv, vboxusbmon, vboxnetflt, vboxnetadp services (if existing) 25 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Network] 24 26 25 rm %SystemRoot%\System32\DriverStore\INFCACHE.1 27 "MaxNumFilters"="0x20" 26 28 27 cd C:\Program Files\Oracle\VirtualBox\drivers\USB\filter 29 msiexec /i VirtualBox-4.3.18-r96516-MultiArch_amd64.msi /L*vx VirtualBox-4.3.18-install.log /QB TARGETDIR="C:\Program Files\Oracle\VirtualBox" DDLOCAL=VBoxNetworkFlt 28 30 29 cd C:\Program Files\Oracle\VirtualBox\drivers\vboxdrv 30 31 cd C:\Windows\System32\DriverStore\FileRepository 32 rm -rf vbox* 33 34 in Control Panel \ Device Manager, deleted driver "VirtualBox Host-Only Network Adapter" 35 36 deleted drivers VBox* with autoruns (from Sysinternals) 37 38 rebooted and tried reinstalling Virtualbox but this failed. 39 40 See attached log files. 41 42 43 I also tried the following that allows to run VB, but not to start a VM: 44 VirtualBox-4.3.16-r95972-Win.exe -extract 45 46 cd C:\Users\vteich\AppData\Local\Temp\VirtualBox 47 48 @rem Run this script as administrator 49 50 cd C:\Users\vteich\AppData\Local\Temp\VirtualBox 51 52 msiexec /A VirtualBox-4.3.16-r95972-MultiArch_amd64.msi /L*vx VirtualBox-4.3.16-install.log /QB TARGETDIR="C:\Program Files\Oracle\VirtualBox" 53 54 cd "C:\Program Files\Oracle\VirtualBox" 55 56 VBoxSVC /ReRegServer 57 58 regsvr32 VBoxC.dll 59 60 However, there is no entry in "Control Panel \ Programs and Features". 61 62 Thereafter I rebooted and tried to install 4.3.16 with the Windows installer, but it still fails. 63 64 Can someone help me? 31 HTH others.