In this article, we will see how to solve NtCreateFile failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND error if you are also getting this one in your Windows 10 System. To give you more insight about the problem, I am running Ubuntu 20.04 LTS VM on Virtualbox installed on Windows 10 System. Yesterday, while the VM was running my system suddenly stopped responding and after sometime it got restarted automatically.
So all the open files, browsers and running VM got unexpectedly closed. Once the system restarted, I tried to start the Ubuntu 20.04 LTS VM but it got failed with the error "NtCreateFile failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND". While this error could occur due to any reasons, here I will show you the exact root cause in my case and what I did to solve it.

Also Read: How to Download and Install Oracle VirtualBox on Windows 10
When I checked VBoxHardening log file to collect more information about the error then I noticed that the error is pointing to driver being stuck may be in stopping/starting state due to which VM is unable to start.
24a4.1d30: Error -101 in supR3HardenedWinReSpawn! (enmWhat=3)
24a4.1d30: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND (0 retries)
Driver is probably stuck stopping/starting. Try 'sc.exe query vboxsup' to get more information about its state. Rebooting may actually help.
So I first tried to run sc.exe query vboxsup in the command prompt as mentioned in the logs to check the status of the service. Here I found that the vboxsup service does not exist and hence showing as not installed.
NOTE:
Please make sure to start the command prompt as administrator to run the privileged commands.
C:Windowssystem32>sc.exe query vboxsup [SC] EnumQueryServicesStatus:OpenService FAILED 1060: The specified service does not exist as an installed service.
NOTE:
Please note that you may require administrator or equivalent access to go inside the C drive folder and to install the below service.
So to install the above service, I went to C:Program FilesOracleVirtualBoxdriversvboxsup folder and right clicked on VBoxSup and then clicked on Install to first install this service. Once it got installed successfully, I checked the status again by running same sc.exe query vboxsup command and this time I noticed that the driver is showing installed but it is currently in STOPPED state as you can also see below.
C:Windowssystem32>sc.exe query vboxsup SERVICE_NAME: vboxsup TYPE : 1 KERNEL_DRIVER STATE : 1 STOPPED WIN32_EXIT_CODE : 1077 (0x435) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0
To start the above service, I ran sc.exe start vboxsup command as shown below. This started the successfully with status showing in RUNNING state as shown below.
C:Windowssystem32>sc.exe start vboxsup SERVICE_NAME: vboxsup TYPE : 1 KERNEL_DRIVER STATE : 4 RUNNING (STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0 PID : 0 FLAGS :
Once the VBoxSup service started, I again tried to start my VM and this time I noticed that VM started without any error. This confirms that above solution worked for me. Hopefully this will work for you as well. Please let me know your feedback in the comment box.
I’m running Vagrant (1.8.1) + VirtualBox (5.0.12) on Windows 7 and trying to boot up a Windows 7 image (modernIE/w7-ie8). However, I get this error:
---------------------------
VirtualBox - Error In supR3HardenedWinReSpawn
---------------------------
<html><b>NtCreateFile(DeviceVBoxDrvStub) failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND (0 retries) (rc=-101)</b><br/><br/>Make sure the kernel module has been loaded successfully.<br><br><!--EOM-->where: supR3HardenedWinReSpawn
what: 3
VERR_OPEN_FAILED (-101) - File/Device open failed.
Driver is probably stuck stopping/starting. Try 'sc.exe query vboxdrv' to get more information about its state. Rebooting may actually help.</html>
---------------------------
OK
---------------------------
I ran the query command, but the service «is not found».
> sc.exe query vboxdrv
[SC] EnumQueryServicesStatus:OpenService FAILED 1060:
The specified service does not exist as an installed service.
I tried rebooting, too. Nothing.
asked Jan 13, 2016 at 22:18
Anthony MastreanAnthony Mastrean
21.5k21 gold badges105 silver badges184 bronze badges
I am on windows 10 and following steps works for me:
Steps:
- Navigate to «C:Program FilesOracleVirtualBoxdriversvboxdrv»
- Right click on «VBoxDrv.inf» file and select Install option
-
Open the Console as a administrator and run the following command
sc start vboxdrv
Praetorian
105k19 gold badges236 silver badges325 bronze badges
answered Aug 4, 2016 at 16:59
![]()
13
There’s something wrong with the installation of VirtualBox (I’ve been seeing reports of this problem as far back as 4.x). The installer registers an incorrect location for the driver SYS file (the ImagePath in this example).
PS> Get-ItemProperty HKLM:systemcurrentcontrolsetservicesvboxdrv
Type : 1
Start : 3
ErrorControl : 1
ImagePath : ??C:Program FilesOracleVirtualBoxVBoxDrv.sys
DisplayName : VBox Support Driver
PSPath : Microsoft.PowerShell.CoreRegistry::HKEY_LOCAL_MACHINEsystemcurrentcontrolsetservicesvboxdrv
PSParentPath : Microsoft.PowerShell.CoreRegistry::HKEY_LOCAL_MACHINEsystemcurrentcontrolsetservices
PSChildName : vboxdrv
PSDrive : HKLM
PSProvider : Microsoft.PowerShell.CoreRegistry
The file doesn’t exist.
PS> Test-Path (Get-ItemProperty HKLM:systemcurrentcontrolsetservicesvboxdrv).ImagePath
False
The actual location requires an extra driversvboxdrv.
PS> Test-Path 'C:Program FilesOracleVirtualBoxdriversvboxdrvVBoxDrv.sys'
True
You can update the registered location.
PS> Set-ItemProperty HKLM:systemcurrentcontrolsetservicesvboxdrv -Name ImagePath -Value '??C:Program FilesOracleVirtualBoxdriversvboxdrvVBoxDrv.sys'
And now you can start the driver/service.
> sc.exe start vboxdrv
answered Jan 13, 2016 at 22:26
Anthony MastreanAnthony Mastrean
21.5k21 gold badges105 silver badges184 bronze badges
10
Try the following code (as administrator):
sc.exe start vboxdrv
![]()
moffeltje
4,4154 gold badges31 silver badges56 bronze badges
answered Jun 13, 2016 at 12:58
![]()
1
I did what Anthony Mastrean suggested but I was still getting some errors:
C:Vagrant>sc query vboxdrv
SERVICE_NAME: vboxdrv
TYPE : 1 KERNEL_DRIVER
STATE : 1 STOPPED
WIN32_EXIT_CODE : 31 (0x1f)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
C:Vagrant>sc start vboxdrv
[SC] StartService FAILED 123:
The filename, directory name, or volume label syntax is incorrect.
This thread on superuser gave me the solution:
find C:Program FilesOracleVirtualBoxdriversvboxdrv VBoxDrv.inf
right click and select Install
answered Mar 28, 2019 at 19:49
![]()
hestellezghestellezg
3,0393 gold badges31 silver badges34 bronze badges
As already pointed out, there seems to be a file-path issue after upgrades, especially when the VBox was open. The question’s keyword was not giving any working results for me here, as I could not even find the directory /xboxdrv/ and even the file VBoxDrv.inf so I changed to missing xboxdrv and I found quick windows_approach here https://stackoverflow.com/a/32077300/5922263. It simply says that head to the program list, right-click Oracle VM VirtualBox and click Repair and this time, ensure it is closed first:
ControlPanel > Programs > Programs and Features > Oracle VM VirtualBox
I hope this helps.
answered Oct 2, 2022 at 7:31
AjowiAjowi
3892 silver badges12 bronze badges
July 9, 2019 mellerbeck
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed ‘sc start vboxdrv’
From https://forums.virtualbox.org/viewtopic.php?f=6&t=66442
Leave a Reply
Enter your comment here…
Fill in your details below or click an icon to log in:
Email (required) (Address never made public)
Name (required)
Website
You are commenting using your WordPress.com account.
( Log Out /
Change )
You are commenting using your Twitter account.
( Log Out /
Change )
You are commenting using your Facebook account.
( Log Out /
Change )
Cancel
Connecting to %s
Notify me of new comments via email.
Notify me of new posts via email.
Содержание
- virtualbox.org
- NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- virtualbox.org
- NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- virtualbox.org
- NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- virtualbox.org
- NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
- Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
virtualbox.org
End user forums for VirtualBox
- Board index‹General‹VirtualBox on Windows Hosts
- Change font size
- Print view
- FAQ
- Login
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by jeebc » 5. Mar 2015, 17:55
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
STATUS_OBJECT_NAME_NOT_FOUND (0 retries)
Driver is probably stuck stopping/starting. Try ‘sc.exe query vboxdrv’ to get more information about its state. Rebooting may actually help. (rc=-101)
Make sure the kernel module has been loaded successfully.
Computer is Windows 7 (64-bit), Vbox is 4.3.24
The image worked just fine when running on the other computer
When I run sc.exe query vboxdrv I get :
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by jeebc » 5. Mar 2015, 18:17
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by michaln » 5. Mar 2015, 18:21
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by jeebc » 5. Mar 2015, 18:41
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by kpenrose » 6. Mar 2015, 18:50
Same issue with me — just downloaded and installed the 4.3.24 version — running on a Win 7 machine, Ubuntu 14.10 virtual machine.
I’ve attached my log file. I ran the sc.exe command and I see this:
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by kpenrose » 6. Mar 2015, 19:15
Okay — got it working.
Here’s what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed ‘sc start vboxdrv’ and got this:
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Molndav » 4. Jul 2015, 15:29
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by pitbullero88 » 19. Jul 2015, 10:41
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Saman » 29. Jul 2015, 13:47
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Nisa » 30. Jul 2015, 11:31
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Murat » 14. Aug 2015, 21:41
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Murat » 14. Aug 2015, 21:47
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by TechG » 11. Oct 2015, 14:01
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by NguyetHuynh » 4. Nov 2015, 05:31
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Maxx99 » 7. Nov 2015, 17:38
Источник
virtualbox.org
End user forums for VirtualBox
- Board index‹General‹VirtualBox on Windows Hosts
- Change font size
- Print view
- FAQ
- Login
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by jeebc » 5. Mar 2015, 17:55
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
STATUS_OBJECT_NAME_NOT_FOUND (0 retries)
Driver is probably stuck stopping/starting. Try ‘sc.exe query vboxdrv’ to get more information about its state. Rebooting may actually help. (rc=-101)
Make sure the kernel module has been loaded successfully.
Computer is Windows 7 (64-bit), Vbox is 4.3.24
The image worked just fine when running on the other computer
When I run sc.exe query vboxdrv I get :
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by jeebc » 5. Mar 2015, 18:17
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by michaln » 5. Mar 2015, 18:21
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by jeebc » 5. Mar 2015, 18:41
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by kpenrose » 6. Mar 2015, 18:50
Same issue with me — just downloaded and installed the 4.3.24 version — running on a Win 7 machine, Ubuntu 14.10 virtual machine.
I’ve attached my log file. I ran the sc.exe command and I see this:
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by kpenrose » 6. Mar 2015, 19:15
Okay — got it working.
Here’s what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed ‘sc start vboxdrv’ and got this:
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Molndav » 4. Jul 2015, 15:29
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by pitbullero88 » 19. Jul 2015, 10:41
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Saman » 29. Jul 2015, 13:47
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Nisa » 30. Jul 2015, 11:31
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Murat » 14. Aug 2015, 21:41
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Murat » 14. Aug 2015, 21:47
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by TechG » 11. Oct 2015, 14:01
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by NguyetHuynh » 4. Nov 2015, 05:31
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Maxx99 » 7. Nov 2015, 17:38
Источник
virtualbox.org
End user forums for VirtualBox
- Board index‹General‹VirtualBox on Windows Hosts
- Change font size
- Print view
- FAQ
- Login
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by jeebc » 5. Mar 2015, 17:55
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
STATUS_OBJECT_NAME_NOT_FOUND (0 retries)
Driver is probably stuck stopping/starting. Try ‘sc.exe query vboxdrv’ to get more information about its state. Rebooting may actually help. (rc=-101)
Make sure the kernel module has been loaded successfully.
Computer is Windows 7 (64-bit), Vbox is 4.3.24
The image worked just fine when running on the other computer
When I run sc.exe query vboxdrv I get :
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by jeebc » 5. Mar 2015, 18:17
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by michaln » 5. Mar 2015, 18:21
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by jeebc » 5. Mar 2015, 18:41
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by kpenrose » 6. Mar 2015, 18:50
Same issue with me — just downloaded and installed the 4.3.24 version — running on a Win 7 machine, Ubuntu 14.10 virtual machine.
I’ve attached my log file. I ran the sc.exe command and I see this:
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by kpenrose » 6. Mar 2015, 19:15
Okay — got it working.
Here’s what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed ‘sc start vboxdrv’ and got this:
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Molndav » 4. Jul 2015, 15:29
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by pitbullero88 » 19. Jul 2015, 10:41
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Saman » 29. Jul 2015, 13:47
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Nisa » 30. Jul 2015, 11:31
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Murat » 14. Aug 2015, 21:41
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Murat » 14. Aug 2015, 21:47
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by TechG » 11. Oct 2015, 14:01
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by NguyetHuynh » 4. Nov 2015, 05:31
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Maxx99 » 7. Nov 2015, 17:38
Источник
virtualbox.org
End user forums for VirtualBox
- Board index‹General‹VirtualBox on Windows Hosts
- Change font size
- Print view
- FAQ
- Login
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Air Force One » 17. Dec 2017, 01:34
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by ruga » 19. Dec 2017, 13:13
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by socratis » 19. Dec 2017, 17:31
People. Unless you want this thread locked, there is a specific section of the forums that deals with that kind of issues: VirtualBox on Windows pre-releases ; vote there!
I think we’ve had enough of «me too» , when they’re actually not.
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by gianluigi.zanettini » 8. Apr 2018, 21:53
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by bodhis » 18. Sep 2018, 11:37
After all king of solutions from internet I resolve that problem by searching «VBoxDrv.inf» file in C:WindowsSystem32 folder, right click on it and click Install.
So easy !
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by JadenLala » 30. Sep 2018, 05:57
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Gradzyna » 23. Nov 2018, 14:09
kpenrose wrote: Okay — got it working.
Here’s what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed ‘sc start vboxdrv’ and got this:
Hello! I had tried the same however it did not work. Im getting following message : «The virtual machine ‘Bartosz jest super’ has terminated unexpectedly during startup with exit code -1073741205 (0xc000026b)»
Im attaching my log,could anyone help me out please?Thanks!
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by socratis » 28. Nov 2018, 15:56
@Gradzyna
Please read really carefully the following FAQ: Diagnosing VirtualBox Hardening Issues for some generic guidelines/ideas. Remember, these are guidelines, not the exact solution, you have to use your judgement as to which program might be responsible.
I would start with Avast.
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by cygnal » 6. Apr 2019, 14:54
kpenrose wrote: Okay — got it working.
Here’s what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed ‘sc start vboxdrv’ and got this:
Well, I can give you a few hints why this is so. First of all, I noticed that there was no driver install prompt.
(I might have authorized Oracle driver signatures, so that may be)
Then I remembered that, whoa!, my VBox is running. But it was too late — the install proceeded.
The good thing about it is that it did not interrupt my guest.
The bad thing about it is that it seemed not to have installed the driver.
I was suspecting from beginning that the installation was somehow botched, because there was
a prompt for restarting the computer.
That’s the first time VB asked for a restart after install.
It was suspicious by itself, and this my two cents on why @kpenrose ‘s solution works.
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by cygnal » 6. Apr 2019, 15:06
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by socratis » 7. Apr 2019, 15:40
The installer would have detected a running VirtualBox and would have warned you, not sure why you saw what you saw.
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Righteous Desk Jump » 25. Oct 2019, 21:34
kpenrose wrote: Okay — got it working.
Here’s what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed ‘sc start vboxdrv’ and got this:
Thanks kpenrose . I had this problem and your post helped me get it going again.
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by Jimzzz » 24. Jan 2020, 15:29
kpenrose wrote: Okay — got it working.
Here’s what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed ‘sc start vboxdrv’ . . .
Many thanks.. worked like a charm for the same problem on Windows 10, VirtualBox 6.1.2, trying to run a Kali image.
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by faldeland » 16. Jul 2020, 19:20
this worked for me.
kpenrose wrote: Okay — got it working.
Here’s what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed ‘sc start vboxdrv’ and got this:
Re: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
by micaht » 13. May 2021, 01:46
Источник
У меня проблемы, я полагаю, так как я обновил свой ноутбук с Windows 8.1 до Windows 10, на эмуляции. Я здесь дам всю информацию, которую я могу о каждой моей попытке подражать.
Первый VirtualBox. Я создал несколько машин для разных ОС, но каждый раз, при первой попытке запустить машину и выбрать файл .iso, запуск завершился неудачей с этой ошибкой:
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND (0 retries) (rc=-101)Make sure the kernel module has been loaded successfully.
where: supR3HardenedWinReSpawn
what: 3
VERR_OPEN_FAILED (-101) - File/Device open failed.
Driver is probably stuck stopping/starting. Try 'sc.exe query vboxdrv' to get more information about its state. Rebooting may actually help.
В интернете у людей была такая же проблема после обновления их Windows 7 (без обновления до Windows 10). Затем Microsoft опубликовала это: https://support.microsoft.com/en-us/kb/3024777, и, похоже, это работает для них.
Я также попытался установить некоторые эмуляторы Android, и, если я успешно установил их, запустить их было невозможно.
Я подумал, что, возможно, проблема в BIOS, где визуализация может быть не включена. К сожалению, я не могу понять, как получить доступ к BIOS (мой ноутбук — серия ASUS R500V Intel), поэтому я не мог подтвердить или опровергнуть теорию. РЕДАКТИРОВАТЬ: мне наконец-то удалось проверить BIOS, и визуализация включена.
Я также хочу добавить, что почти все упомянутые здесь проблемы не существовали раньше. Я уже запускал Ubuntu на VirtualBox и использовал эмулятор Android на этом компьютере, но с момента появления первой проблемы прошло время, и у меня было время обновить Windows. Возможно, проблема не в обновлении, а в обновлении после или до обновления. Поэтому я могу найти причину, я мог установить проблемное обновление, упомянутое здесь: https://forums.virtualbox.org/viewtopic.php?f=6&t=67840. После обновления я не могу установить «исправление обновления», данное Microsoft, так как это только для Windows 7 (это также может быть глупо, так как у меня была Windows 8.1 до обновления).
Я с нетерпением жду решения, так как мне нужна система Linux для изучения, и я не хочу устанавливать Linux как двойную загрузку.
Found the answer elsewhere: however, I must note, that I ended up with another error not having multiple virtual screens or graphical options in configuration, reinstalling helped, but this error returned and the solution stopped to work, what effectively helped after was uninstalling and reinstalling VirtualBox — perhaps also due to error message
C: Program Files OracleVirtualBoxdrivers is unavailable. If the location is on this PC, make sure the device or drive is connected or the disc is inserted, and then try again
while the folder existed; I checked manually
From https://forums.virtualbox.org/viewtopic.php?t=66442#p314829:
RE: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034:
Postby kpenrose » 6. Mar 2015, 19:15
Okay — got it working. Here’s what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv
directory, right clicked on VBoxDrv.inf and selected Install. I then
went back to my console and typed ‘sc start vboxdrv’ and got this:SERVICE_NAME: vboxdrv TYPE : 1 KERNEL_DRIVER STATE : 4 RUNNING (STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN) WIN32_EXIT_CODE : 0 (0x0) SERVICE_EXIT_CODE : 0 (0x0) CHECKPOINT : 0x0 WAIT_HINT : 0x0 PID : 0 FLAGS :Went back to VirtualBox and was able to start the Ubuntu virtual
machine.
My similar error:

VirtualBox — Error In supR3Hardened WinkeSpawn
NtCreateFile(DeviceVBoxDrvStub) failed: Unknown Status -5633
(0xffffe9ff) (rcNt=0xe986e9ff) VBoxDrvStub error: Unknown image file
Device HarddiskVolume4Program
FilesOracleVirtualBoxVirtualBoxVM.exe at 00007ff7f1b90000.
(rc83Exp—91) (rc=-5633)Make sure the kernel module has been loaded successfully.
where: supR3HardenedWinReSpawn what: 3
VERR_SUP_VP_NOT_KNOWN_DLL_OR_EXE (-5633) — Process Verification
Failure: An unknown and unwanted DLL was found loaded into the
process.
other accompanying errors


VirtualBox — Error In supR3HardenedWinReSpawn
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000e
STATUS_NO_SUCH_DEVICE (160 retries) (rc=-101)Make sure the kernel
module has been loaded successfully.where: supR3HardenedWinReSpawn
what: 3 VERR_OPEN_FAILED (-101) — File/ Device open failed. Driver is
probably stuck stopping/starting. Try ‘sc. exe query vboxdrv’ to get
more information about its state. Rebooting may actually help.
I’m trying to create a default machine on windows 8.1 and it fails.
docker-machine -version
docker-machine version 0.4.1 (e2c88d6)
docker-machine create -d virtualbox default
Creating VirtualBox VM...
Creating SSH key...
Starting VirtualBox VM...
Error creating machine: exit status 1
You will want to check the provider to make sure the machine and associated resources were properly removed.
The vm is created in Virtualbox and when I try to start it manually, I get this error dialog:
VirtualBox - Error in supR3HardenedWinReSpawn
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND (0 retries) (rc= -101)
Make sure the kernel module has been loaded successfully.
where: supR3HardenedWinReSpawn what: 3 VERR_OPEN_FAILED (-101) -
File/Device open failed. Driver is probably stuck stopping/starting. Try 'sc.exe query vboxdrv' to get more information about its state. Rebooting may actually help.
When I try sc.exe query vboxdrv as told, I get this:
sc.exe query vboxdrv
SERVICE_NAME: vboxdrv
TYPE : 1 KERNEL_DRIVER
STATE : 1 STOPPED
WIN32_EXIT_CODE : 31 (0x1f)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
Il also get another error dialog in Virtualbox that says I should take a look at
.dockermachinemachinesdefaultdefaultLogsVBoxHardening.log. Here it is:
cd8.484: Log file opened: 5.0.6r103037 g_hStartupLog=0000000000000010 g_uNtVerCombined=0x63258000
cd8.484: SystemRootSystem32ntdll.dll:
cd8.484: CreationTime: 2015-06-17T21:23:30.147194800Z
cd8.484: LastWriteTime: 2015-06-18T08:45:36.802874500Z
cd8.484: ChangeTime: 2015-06-18T08:45:36.802874500Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0x1a7540
cd8.484: NT Headers: 0xd8
cd8.484: Timestamp: 0x54516b13
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x54516b13
cd8.484: Image Version: 6.3
cd8.484: SizeOfImage: 0x1ac000 (1753088)
cd8.484: Resource Dir: 0x148000 LB 0x62450
cd8.484: ProductName: Microsoft® Windows® Operating System
cd8.484: ProductVersion: 6.3.9600.17476
cd8.484: FileVersion: 6.3.9600.17476 (winblue_r5.141029-1500)
cd8.484: FileDescription: NT Layer DLL
cd8.484: SystemRootSystem32kernel32.dll:
cd8.484: CreationTime: 2014-11-21T05:13:32.023220600Z
cd8.484: LastWriteTime: 2014-11-21T05:13:32.054470800Z
cd8.484: ChangeTime: 2015-06-18T10:54:05.219847800Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0x13fc30
cd8.484: NT Headers: 0xf8
cd8.484: Timestamp: 0x545054ca
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x545054ca
cd8.484: Image Version: 6.3
cd8.484: SizeOfImage: 0x13e000 (1302528)
cd8.484: Resource Dir: 0x12e000 LB 0x518
cd8.484: ProductName: Microsoft® Windows® Operating System
cd8.484: ProductVersion: 6.3.9600.17415
cd8.484: FileVersion: 6.3.9600.17415 (winblue_r4.141028-1500)
cd8.484: FileDescription: Windows NT BASE API Client DLL
cd8.484: SystemRootSystem32KernelBase.dll:
cd8.484: CreationTime: 2014-11-21T05:12:54.538839100Z
cd8.484: LastWriteTime: 2014-11-21T05:12:54.585781900Z
cd8.484: ChangeTime: 2015-06-18T10:54:06.224193500Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0x114a90
cd8.484: NT Headers: 0xf0
cd8.484: Timestamp: 0x54505737
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x54505737
cd8.484: Image Version: 6.3
cd8.484: SizeOfImage: 0x115000 (1134592)
cd8.484: Resource Dir: 0x110000 LB 0x3528
cd8.484: ProductName: Microsoft® Windows® Operating System
cd8.484: ProductVersion: 6.3.9600.17415
cd8.484: FileVersion: 6.3.9600.17415 (winblue_r4.141028-1500)
cd8.484: FileDescription: Windows NT BASE API Client DLL
cd8.484: SystemRootSystem32apisetschema.dll:
cd8.484: CreationTime: 2013-08-22T12:13:09.745625900Z
cd8.484: LastWriteTime: 2013-08-22T12:35:12.091034400Z
cd8.484: ChangeTime: 2015-06-18T06:39:04.866645700Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0x11360
cd8.484: NT Headers: 0xd0
cd8.484: Timestamp: 0x52160049
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x52160049
cd8.484: Image Version: 6.3
cd8.484: SizeOfImage: 0x13000 (77824)
cd8.484: Resource Dir: 0x11000 LB 0x3f8
cd8.484: ProductName: Microsoft® Windows® Operating System
cd8.484: ProductVersion: 6.3.9600.16384
cd8.484: FileVersion: 6.3.9600.16384 (winblue_rtm.130821-1623)
cd8.484: FileDescription: ApiSet Schema DLL
cd8.484: NtOpenDirectoryObject failed on Driver: 0xc0000022
cd8.484: supR3HardenedWinFindAdversaries: 0x20
cd8.484: SystemRootSystem32driverscfwids.sys:
cd8.484: CreationTime: 2014-04-03T15:23:54.000000000Z
cd8.484: LastWriteTime: 2015-02-17T12:38:12.000000000Z
cd8.484: ChangeTime: 2015-10-14T15:24:37.013220700Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0x10cb0
cd8.484: NT Headers: 0xe8
cd8.484: Timestamp: 0x54dbcfb1
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x54dbcfb1
cd8.484: Image Version: 0.0
cd8.484: SizeOfImage: 0xec00 (60416)
cd8.484: Resource Dir: 0xe400 LB 0x518
cd8.484: ProductName: SYSCORE
cd8.484: FileVersion: SYSCORE.15.4.0.543
cd8.484: PrivateBuild: SYSCORE.15.4.0.543
cd8.484: FileDescription: McAfee Personal Firewall IDS Plugin
cd8.484: SystemRootSystem32driversmfeavfk.sys:
cd8.484: CreationTime: 2014-04-03T15:06:04.000000000Z
cd8.484: LastWriteTime: 2015-02-17T12:33:10.000000000Z
cd8.484: ChangeTime: 2015-10-14T15:24:36.327873200Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0x527e0
cd8.484: NT Headers: 0xf8
cd8.484: Timestamp: 0x54dbcf56
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x54dbcf56
cd8.484: Image Version: 0.0
cd8.484: SizeOfImage: 0x50100 (327936)
cd8.484: Resource Dir: 0x4f280 LB 0x718
cd8.484: ProductName: SYSCORE
cd8.484: FileVersion: SYSCORE.15.4.0.543
cd8.484: PrivateBuild: SYSCORE.15.4.0.543 F15,F16,F19
cd8.484: FileDescription: Anti-Virus File System Filter Driver
cd8.484: SystemRootSystem32driversmfefirek.sys:
cd8.484: CreationTime: 2014-04-03T15:08:04.000000000Z
cd8.484: LastWriteTime: 2015-02-17T12:33:54.000000000Z
cd8.484: ChangeTime: 2015-10-14T15:24:36.852560900Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0x77240
cd8.484: NT Headers: 0xe8
cd8.484: Timestamp: 0x54dbcf95
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x54dbcf95
cd8.484: Image Version: 0.0
cd8.484: SizeOfImage: 0x74800 (477184)
cd8.484: Resource Dir: 0x72000 LB 0x350
cd8.484: ProductName: SYSCORE
cd8.484: FileVersion: SYSCORE.15.4.0.543
cd8.484: PrivateBuild: SYSCORE.15.4.0.543 F17,F18
cd8.484: FileDescription: McAfee Core Firewall Engine Driver
cd8.484: SystemRootSystem32driversmfehidk.sys:
cd8.484: CreationTime: 2014-04-03T15:10:34.000000000Z
cd8.484: LastWriteTime: 2015-02-17T12:34:42.000000000Z
cd8.484: ChangeTime: 2015-10-14T15:24:31.883375900Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0xd2f48
cd8.484: NT Headers: 0x108
cd8.484: Timestamp: 0x54dbcf27
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x54dbcf27
cd8.484: Image Version: 0.0
cd8.484: SizeOfImage: 0xcfc80 (851072)
cd8.484: Resource Dir: 0xccd80 LB 0x720
cd8.484: ProductName: SYSCORE
cd8.484: FileVersion: SYSCORE.15.4.0.543
cd8.484: PrivateBuild: SYSCORE.15.4.0.543 F14,F15,F16,F18,F20
cd8.484: FileDescription: McAfee Link Driver
cd8.484: SystemRootSystem32driversmfencbdc.sys:
cd8.484: CreationTime: 2015-01-15T22:48:02.000000000Z
cd8.484: LastWriteTime: 2015-01-15T22:48:02.000000000Z
cd8.484: ChangeTime: 2015-10-14T15:25:41.665731000Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0x75d28
cd8.484: NT Headers: 0xf8
cd8.484: Timestamp: 0x54b8cfc6
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x54b8cfc6
cd8.484: Image Version: 0.0
cd8.484: SizeOfImage: 0x73300 (471808)
cd8.484: Resource Dir: 0x72900 LB 0x390
cd8.484: ProductName: Anti-Malware Core
cd8.484: ProductVersion: 1.3.2
cd8.484: FileVersion: Anti-Malware Core.1.3.2.207.x64
cd8.484: PrivateBuild: Anti-Malware Core.1.3.2.207.x64
cd8.484: FileDescription: Event Driver
cd8.484: SystemRootSystem32driversmfewfpk.sys:
cd8.484: CreationTime: 2014-04-03T15:16:04.000000000Z
cd8.484: LastWriteTime: 2015-02-17T12:36:18.000000000Z
cd8.484: ChangeTime: 2015-10-14T15:24:26.856458600Z
cd8.484: FileAttributes: 0x20
cd8.484: Size: 0x531e0
cd8.484: NT Headers: 0x100
cd8.484: Timestamp: 0x54dbcf33
cd8.484: Machine: 0x8664 - amd64
cd8.484: Timestamp: 0x54dbcf33
cd8.484: Image Version: 0.0
cd8.484: SizeOfImage: 0x50b00 (330496)
cd8.484: Resource Dir: 0x4ff80 LB 0x348
cd8.484: ProductName: SYSCORE
cd8.484: FileVersion: SYSCORE.15.4.0.543
cd8.484: PrivateBuild: SYSCORE.15.4.0.543 F17,F18
cd8.484: FileDescription: Anti-Virus Mini-Firewall Driver
cd8.484: supR3HardenedWinInitAppBin(0x0): 'DeviceHarddiskVolume3Program FilesOracleVirtualBox'
cd8.484: Calling main()
cd8.484: SUPR3HardenedMain: pszProgName=VirtualBox fFlags=0x2
cd8.484: supR3HardenedWinInitAppBin(0x2): 'DeviceHarddiskVolume3Program FilesOracleVirtualBox'
cd8.484: SUPR3HardenedMain: Respawn #1
cd8.484: System32: DeviceHarddiskVolume3WindowsSystem32
cd8.484: WinSxS: DeviceHarddiskVolume3WindowsWinSxS
cd8.484: KnownDllPath: C:WINDOWSsystem32
cd8.484: 'DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe' has no imports
cd8.484: supHardenedWinVerifyImageByHandle: -> 0 (DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe)
cd8.484: supR3HardNtEnableThreadCreation:
cd8.484: supR3HardNtDisableThreadCreation: pvLdrInitThunk=00007ffcd644a650 pvNtTerminateThread=00007ffcd64c1170
cd8.484: supR3HardenedWinDoReSpawn(1): New child f90.f8c [kernel32].
cd8.484: supR3HardNtChildGatherData: PebBaseAddress=00007ff62c5f9000 cbPeb=0x388
cd8.484: supR3HardNtPuChFindNtdll: uNtDllParentAddr=00007ffcd6430000 uNtDllChildAddr=00007ffcd6430000
cd8.484: supR3HardenedWinSetupChildInit: uLdrInitThunk=00007ffcd644a650
cd8.484: supR3HardenedWinSetupChildInit: Start child.
cd8.484: supR3HardNtChildWaitFor: Found expected request 0 (PurifyChildAndCloseHandles) after 0 ms.
cd8.484: supR3HardNtChildPurify: Startup delay kludge #1/0: 516 ms, 33 sleeps
cd8.484: supHardNtVpScanVirtualMemory: enmKind=CHILD_PURIFICATION
cd8.484: *0000000000000000-ffffffffff73ffff 0x0001/0x0000 0x0000000
cd8.484: *00000000008c0000-000000000089ffff 0x0004/0x0004 0x0020000
cd8.484: *00000000008e0000-00000000008d0fff 0x0002/0x0002 0x0040000
cd8.484: 00000000008ef000-00000000008edfff 0x0001/0x0000 0x0000000
cd8.484: *00000000008f0000-00000000007f3fff 0x0000/0x0004 0x0020000
cd8.484: 00000000009ec000-00000000009e8fff 0x0104/0x0004 0x0020000
cd8.484: 00000000009ef000-00000000009edfff 0x0004/0x0004 0x0020000
cd8.484: *00000000009f0000-00000000009ebfff 0x0002/0x0002 0x0040000
cd8.484: 00000000009f4000-00000000009e7fff 0x0001/0x0000 0x0000000
cd8.484: *0000000000a00000-00000000009fdfff 0x0004/0x0004 0x0020000
cd8.484: 0000000000a02000-ffffffff81423fff 0x0001/0x0000 0x0000000
cd8.484: *000000007ffe0000-000000007ffdefff 0x0002/0x0002 0x0020000
cd8.484: 000000007ffe1000-000000007ffd1fff 0x0000/0x0002 0x0020000
cd8.484: 000000007fff0000-ffff800ad3a0ffff 0x0001/0x0000 0x0000000
cd8.484: *00007ff62c5d0000-00007ff62c5acfff 0x0002/0x0002 0x0040000
cd8.484: 00007ff62c5f3000-00007ff62c5ecfff 0x0001/0x0000 0x0000000
cd8.484: *00007ff62c5f9000-00007ff62c5f7fff 0x0004/0x0004 0x0020000
cd8.484: 00007ff62c5fa000-00007ff62c5f5fff 0x0001/0x0000 0x0000000
cd8.484: *00007ff62c5fe000-00007ff62c5fbfff 0x0004/0x0004 0x0020000
cd8.484: 00007ff62c600000-00007ff62c2effff 0x0001/0x0000 0x0000000
cd8.484: *00007ff62c910000-00007ff62c910fff 0x0002/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c911000-00007ff62c997fff 0x0020/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c998000-00007ff62c998fff 0x0080/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c999000-00007ff62c9e3fff 0x0002/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c9e4000-00007ff62c9e4fff 0x0004/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c9e5000-00007ff62c9e5fff 0x0008/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c9e6000-00007ff62c9eafff 0x0004/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c9eb000-00007ff62c9ebfff 0x0008/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c9ec000-00007ff62c9ecfff 0x0004/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c9ed000-00007ff62c9f0fff 0x0008/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62c9f1000-00007ff62ca3bfff 0x0002/0x0080 0x1000000 DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe
cd8.484: 00007ff62ca3c000-00007fef83047fff 0x0001/0x0000 0x0000000
cd8.484: *00007ffcd6430000-00007ffcd6430fff 0x0002/0x0080 0x1000000 DeviceHarddiskVolume3WindowsSystem32ntdll.dll
cd8.484: 00007ffcd6431000-00007ffcd655cfff 0x0020/0x0080 0x1000000 DeviceHarddiskVolume3WindowsSystem32ntdll.dll
cd8.484: 00007ffcd655d000-00007ffcd6562fff 0x0008/0x0080 0x1000000 DeviceHarddiskVolume3WindowsSystem32ntdll.dll
cd8.484: 00007ffcd6563000-00007ffcd656ffff 0x0002/0x0080 0x1000000 DeviceHarddiskVolume3WindowsSystem32ntdll.dll
cd8.484: 00007ffcd6570000-00007ffcd6570fff 0x0004/0x0080 0x1000000 DeviceHarddiskVolume3WindowsSystem32ntdll.dll
cd8.484: 00007ffcd6571000-00007ffcd6573fff 0x0008/0x0080 0x1000000 DeviceHarddiskVolume3WindowsSystem32ntdll.dll
cd8.484: 00007ffcd6574000-00007ffcd6574fff 0x0010/0x0080 0x1000000 DeviceHarddiskVolume3WindowsSystem32ntdll.dll
cd8.484: 00007ffcd6575000-00007ffcd65dbfff 0x0002/0x0080 0x1000000 DeviceHarddiskVolume3WindowsSystem32ntdll.dll
cd8.484: 00007ffcd65dc000-00007ff9acbd7fff 0x0001/0x0000 0x0000000
cd8.484: *00007ffffffe0000-00007ffffffcffff 0x0001/0x0002 0x0020000
cd8.484: VirtualBox.exe: timestamp 0x560e7a58 (rc=VINF_SUCCESS)
cd8.484: 'DeviceHarddiskVolume3Program FilesOracleVirtualBoxVirtualBox.exe' has no imports
cd8.484: 'DeviceHarddiskVolume3WindowsSystem32ntdll.dll' has no imports
cd8.484: supR3HardNtChildPurify: Done after 641 ms and 0 fixes (loop #0).
cd8.484: supR3HardNtEnableThreadCreation:
f90.f8c: Log file opened: 5.0.6r103037 g_hStartupLog=0000000000000004 g_uNtVerCombined=0x63258000
f90.f8c: supR3HardenedVmProcessInit: uNtDllAddr=00007ffcd6430000
f90.f8c: ntdll.dll: timestamp 0x54516b13 (rc=VINF_SUCCESS)
f90.f8c: New simple heap: #1 0000000000b10000 LB 0x400000 (for 1753088 allocation)
f90.f8c: supR3HardenedWinInitAppBin(0x0): 'DeviceHarddiskVolume3Program FilesOracleVirtualBox'
f90.f8c: System32: DeviceHarddiskVolume3WindowsSystem32
f90.f8c: WinSxS: DeviceHarddiskVolume3WindowsWinSxS
f90.f8c: KnownDllPath: C:WINDOWSsystem32
f90.f8c: supR3HardenedVmProcessInit: Opening vboxdrv stub...
f90.f8c: Error opening VBoxDrvStub: STATUS_OBJECT_NAME_NOT_FOUND
f90.f8c: supR3HardenedWinReadErrorInfoDevice: NtCreateFile -> 0xc0000034
f90.f8c: Error -101 in supR3HardenedWinReSpawn! (enmWhat=3)
f90.f8c: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND (0 retries)
Driver is probably stuck stopping/starting. Try 'sc.exe query vboxdrv' to get more information about its state. Rebooting may actually help.
cd8.484: supR3HardenedWinCheckChild: enmRequest=2 rc=-101 enmWhat=3 supR3HardenedWinReSpawn: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND (0 retries)
Driver is probably stuck stopping/starting. Try 'sc.exe query vboxdrv' to get more information about its state. Rebooting may actually help.
cd8.484: Error -101 in supR3HardenedWinReSpawn! (enmWhat=3)
cd8.484: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc0000034 STATUS_OBJECT_NAME_NOT_FOUND (0 retries)
Driver is probably stuck stopping/starting. Try 'sc.exe query vboxdrv' to get more information about its state. Rebooting may actually help.
As the logs say multiple times that rebooting may actually help, I rebooted…
And yes, the vm can be started either manually or via docker-machine start default!!
VirtualBox не запускается после жесткого выключения
NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034 STATUS_OBJECT_NAME_NOT_FOUND)
2 ответа
Лучший ответ
Нашел ответ в другом месте:
https://forums.virtualbox.org/viewtopic.php?t=66442#p314829
: NtCreateFile(DeviceVBoxDrvStub) failed: 0xc000000034
Postby kpenrose » 6. Mar 2015, 19:15
Okay - got it working.
Here's what I did.
Went to the C:Program FilesOracleVirtualBoxdriversvboxdrv directory, right clicked on VBoxDrv.inf and selected Install. I then went back to my console and typed 'sc start vboxdrv' and got this:
SERVICE_NAME: vboxdrv
TYPE : 1 KERNEL_DRIVER
STATE : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
PID : 0
FLAGS :
Went back to VirtualBox and was able to start the Ubuntu virtual machine.
7
FantomX1
11 Ноя 2019 в 12:53
Я тоже столкнулся с той же проблемой. Просто выполните следующие шаги, и вы сможете решить проблему.
-
Перейдите в папку C: Program Files Oracle VirtualBox drivers vboxdrv .
папка. -
Щелкните правой кнопкой мыши VBoxDrv.inf и выберите «Установить».
-
Запустите командную строку от имени администратора.
-
Введите следующую команду и нажмите Enter.
sc start vboxdrv
-
Откройте Virtual Box и снова запустите виртуальную машину.
15
Adrian Mole
21 Май 2022 в 22:35