Windows error 0xC0000022, -1073741790

Detailed Error Information

HRESULT analysis[1]

FlagsSeverityFailure
Reserved (R)true
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[1][2]
DescriptionThe default facility code.[1][2]
Error Code34 (0x0022)

Questions

11votes
2answers

Why do many Windows error codes start with 0xC000xxxx? Is there a reference for them?

I've noticed that most Windows error codes come in one of two forms: * Standard system error codes, e.g. 0x05 is Access Denied. * Error codes in the form 0xC000xxxx, which I can't find any reference for. I first considered that the latter error codes were just system error codes [...] read more
windows
8votes
1answer

What is causing my Domain Controller to log dozens of successful authentication attempts per second?

We have a domain with about 15 servers and about 30 workstations. Servers are mostly 2008r2 and workstations are mostly Windows 7. The two DCs are 2012r2. Every few weeks, one of our admin accounts gets locked out. I'm trying to narrow down the cause and I've reached a dead [...] read more
active-directory
windows-server-2008-r2
windows-server-2012-r2
7votes
1answer

Can you use C++ DLLs in C# code in a UWP?

I wrote a C++ Class Library in Visual Studio that just defines a function that invokes some Python: #pragma once #include <Python.h> extern "C" __declspec(dllexport) void python() { Py_Initialize(); PyRun_SimpleString("2 + 2"); } I made another project in the same solution that was a C# Blank Universal app. I tried [...] read more
c#
c++
dll
uwp
6votes
6answers

Unable to perform an unattended domain join using WDS and an answer file on Windows 8.1

I've already looked through the other questions related to this and none of them were able to help me. I've already spent several days on this damned unattended process and, miraculously, I was able to get it to work ONCE yesterday but, alas, I did a noobish mistake and didn't [...] read more
windows
deployment
wds
unattended
4votes
1answer

C# Selenium ChromeDriver: Google Chrome fails when run as administrator

I have encountered an usual situation when using Selenium Web Driver C# with Chrome: if the process running the tests is "run as administrator" (Visual Studio or nunit3-console.exe) Chrome will fail to load. Context * OS: Windows 7 x64 * Chrome: Version 64.0.3282.167 (Official Build) (64-bit) * Selenium.Chrome.WebDriver (chromedriver.exe): 2.35.0 [...] read more
google-chrome
selenium
selenium-webdriver
selenium-chromedriver
4votes
2answers

Windows 7 x64: low IL process msdn example does not work

I want to create process with low integrity level from process with medium integrity level. I found msdn example: Designing Applications to Run at a Low Integrity Level But it does not work on my system. Process is created successfully, but message box "Alpplication failed to initialized properly(0xC0000022 -- STATUS_ACCESS_DENIED) [...] read more
c++
windows-7-x64
integrity
4votes
1answer

NtOpenSection(L"\\Device\\PhysicalMemory") returns STATUS_OBJECT_NAME_NOT_FOUND

I am implementing SMBIOS reading functionality for Windows systems. As API levels vary, there are several methods to support: 1. trouble-free GetSystemFirmwareTable('RSMB') available on Windows Server 2003 and later; 2. hardcore NtOpenSection(L"\\Device\\PhysicalMemory") for legacy systems prior to and including Windows XP; 3. essential WMI data in L"Win32_ComputerSystemProduct" path through cumbersome [...] read more
winapi
rom
3votes
1answer

Windows server 2016 {Access Denied} A process has requested access to an object, but has not been granted those access rights

I'm running some selenium c# chrome driver test with the latest version of chrome driver and chrome. On my desktop Windows 10 PC it works fine, however, in production Windows server 2016 I'm getting this error when selenium tries to start a new process. [0703/113439.645:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process [...] read more
permissions
windows-server-2016
selenium
3votes
6answers

Mounting Azure Files Share

When I try to mount with the following command: mount -v -t cifs //<storageaccount>.file.core.windows.net/<sharename> <localfolder> -o username=<myuser>,password=<storageaccountkey>,dir_mode=0777,file_mode=0777,vers=3.0 It works perfectly if I run it from an Azure Ubuntu VM or my Windows machine with the equivalent command. Trying to run the same command on my Linux box I get the [...] read more
linux
azure
cifs
3votes
0answers

Cannot start homestead VM after Win 10 1709 update

After installing the latest major Windows update, my Homestead VM would not start any more. Reverting the Windows update did not fix the issue. I then tried upgrading Vagrant and Virtualbox to the latest versions (2.1 and 5.1.30, then 5.2.2), which made the VM startup get further along, but still [...] read more
laravel
vagrant
virtualbox
homestead
3votes
2answers

Not able to mount azure file share into local RHEL7 VM

I want to mount(symlink) from Azure file share to a local RHEL7 VM . I am using the following command mount -t cifs //<storage-account-name>.file.core.windows.net/<share-name> /mymountpoint -o vers=3.0,username=<storage-acc-name>,password=<pwd>,dir_mode=0777,file_mode=0777,sec=ntlmssp,mfsymlinks but getting the following error > mount error(13): Permission denied > > Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) `The dmesg [...] read more
azure-storage
symlink
rhel
3votes
1answer

Windows process with Untrusted Integrity level

I couldn't find much information about Untrusted integrity level in Windows, and have some questions about it: 1. Is there a place where an untrusted integrity level process can create named objects? (mutexes, events, etc..) 2. Should untrusted integrity level process be able to open an existing named object, that [...] read more
windows
security
winapi
uac
windows-security
3votes
1answer

Chrome Automation Extension Error using Selenium with Protractor/Jasmine

EDITS: New direction for troubleshooting. Original Issue will remain below dashed lines. After further investigation I realized it was my screenshot reported causing the crash. I'm using protractor-jasmine2-screenshot-reporter to generate reports and screenshots on failing test cases. Thus, when a spec would fail, it would take a screenshot, and crash [...] read more
selenium
google-chrome-extension
automation
jasmine
protractor
3votes
2answers

0xC0000022 before RtlUserThreadStart

I'm injecting some code to hook apis in processes but I have some issues in some applications like chrome.exe My test app launches a suspended process, do injection and api hooking and then resumes it. CreateProcessW is hooked in order to be able to hook child processes. If CreateProcessW is [...] read more
windbg
inject
createremotethread
3votes
1answer

Process monitoring CreateProcessNotifyRoutineEx

I'm developing a driver for monitoring process creation, I wrote a simple code to do it. I use the PsSetCreateProcessNotifyRoutineEx. But this doesn't work ! I exactly following Microsoft help on this link #include <ntddk.h> NTSTATUS DriverEntry( IN PDRIVER_OBJECT DriverObject, IN PUNICODE_STRING RegistryPath ); VOID UnloadRoutine( IN PDRIVER_OBJECT DriverObject ); [...] read more
process
driver
monitoring
2votes
1answer

Windows 2008 R2 server loses connection to Active Directory

One of our many 2008R2 servers constantly loses connection to the domain, meaning that users cannot login to shares etc on the server, and it basically becomes useless. The event sometimes generated by the server when this happens is 3210 with the error code 0xC0000022. This does however not always [...] read more
active-directory
windows-server-2008-r2
2votes
0answers

Samba doesn't seem to stay joined to Active Directory domain

I can initially join a linux box to the domain with these commands: sudo kinit administrator@WINDOWS.CORP.SPRINGVENTUREGROUP.COM sudo net ads join -k After a few hours or the next day, this happens: user@host:~$ sudo wbinfo -a administrator Enter administrator's password: plaintext password authentication failed Could not authenticate user administrator with plaintext [...] read more
linux
active-directory
samba
winbind
2votes
3answers

Error (0xc0000022) during start explorer.exe after log in Windows 7

Hi I have problem with start Windows 7 x86. After I input credentials in log on screen I get this error: eplorer.exe The application was unable to start correctly (0xc0000022). Click OK to close the application. enter image description here [https://i.stack.imgur.com/EOfV0.jpg] I google it but I can find a solution [...] read more
windows-7
windows-explorer
2votes
3answers

Deployed Qt application QtWebEngineProcess unable to load Qt5Core.dll

I need help to correctly deploy a Qt 5.14.1 x64 application to a client's Windows 10 PC. The application uses the QtWebEngineProcess to display a google map in one of the tabbed interface windows. This used to work fine until either the Visual Studio 2019 (currently at the latest Version [...] read more
c++
qt
deployment
2votes
0answers

A process has requested access to an object, but has not been granted those access rights On windows 10 Using Selenuim with Chrome Driver

I am trying to scrape the contents of a webpage. My code works on a Windows 7 machine that has the same versions of the drivers as my Windows 10 machine. When I run it on windows 10, it opens a selenium controlled window, but then returns None, instead of [...] read more
python-3.x
selenium-webdriver
selenium-chromedriver
2votes
0answers

Qt Designer crashes using QWebEngineView

Qt Designer (5.11.2) crashes on selecting the QWebEngineView-Widget. I am creating a dialogform for including it in QGIS 3 as .ui file. In the form I want to display a website by using the QWebEngineView. Sadly I am not able to drag the widget inside the dialog window, because Qt [...] read more
qt-designer
qwebengineview
2votes
0answers

Unable to connect to smb File Server

I am using node.js. The problem is, no matter which module I use, I always end with the following error. > Error: STATUS_ACCESS_DENIED (0xC0000022) : {Access Denied} A process has > requested access to an object but has not been granted those access rights. I have already used smb2 module [...] read more
javascript
node.js
smb
2votes
1answer

chromedriver.exe has stopped working when driver.Navigate().GoToUrl("http://www.example.com/")

Upon reaching navigate.GoToUrl("http://www.example.com/") chromedriver.exe will stop working, but it's working when the FirefoxDriver is being used: using (IWebDriver driver = new ChromeDriver(DRIVER_PATH)) { // driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(10)); INavigation navigate = driver.Navigate(); navigate.GoToUrl("http://www.example.com/"); } 1. Chrome browser will successfully open. 2. Then a few second "chromedriver.exe has stopped working" will appear. Here's my [...] read more
c#
google-chrome
selenium
selenium-webdriver
selenium-chromedriver
2votes
1answer

Can't access Unified Memory after i ran kernel function using it

so I am calling cudaMallocManaged for 2 functions in my code and it works fine for first function (backwardMask()) after i call it i can easily access my data from host, but my problem is with kernel function seriesLength() - because i am doing cudaMallocManaged on my indexmask and then [...] read more
c++
parallel-processing
cuda
gpu
2votes
2answers

Why is my program crashing before it starts?

The program was compiled by g++ with the -g flag, -static-libgcc, and -static-libstdc++. No optimization flags were included. For some reason though, I cant get into main. Why? $ nm -C test.exe | grep main 006c05b0 T __getmainargs 006b0ad0 T __main 0088d0e8 B __mingw_winmain_hInstance 0088d0e4 B __mingw_winmain_lpCmdLine 0088d0ec B __mingw_winmain_nShowCmd [...] read more
c++
c
windows
gdb
mingw
2votes
0answers

CNG (Cryptography Next Generation) Provider doesn't work under regular user account in Win7

I used an example of CNG provider from CSPDK to implement my own CNG Hash Provider. But as appeared when I use PKCS7 (Signed Message) WinApi functions CNG provider doesn't work. CryptMsgOpenToEncode function reports 0xC0000005 error, which appears also when there is no provider at all. Under admin account everything [...] read more
winapi
cryptography
cng
1vote
1answer

Session "NT Kernel Logger" failed to start

I have encountered an error on windows server 2012 recently. Session "NT Kernel Logger" failed to start with the following error: 0xc0000022 More Details: LogName: Microsoft-Windows-Kernel-EventTracing/Admin Event ID: 2 Level: error OpCode: start * What causes this error? * Is this an important error or I can ignore it? read more
windows-server-2012
kernel
windows-event-log
session
1vote
0answers

Determine the root cause of Windows update rendering PCs unbootable

Dozens of Windows 8.1 PCs across my environment show Fatal Error: C0000022 and cannot boot any further after installing either KB4541505 or KB4541509. Automatic Repair fails; they cannot be restored with System Restore; DISM cannot roll back the update due to the image being unserviceable, and /Cleanup-Image will fail; and [...] read more
windows-update
windows-registry
windows-8.1
lsass
1vote
1answer

Cannot activate rust-analyzer: bootstrap error

Starting 2020-12-09, VSCode's Rust Analyzer extension no longer loads for me. On launch, it prints out this error message: > Cannot activate rust-analyzer: bootstrap error. See the logs in "OUTPUT > Rust > Analyzer Client" (should open automatically). To enable verbose logs use { > "rust-analyzer.trace.extension": true } Enabling extension [...] read more
windows
visual-studio-code
rust
rust-analyzer
1vote
0answers

Remote deploying UWP from x64 machine to ARM64

I have a windows x64 PC which is my development machine. I am building UWP app for ARM64 on my development machine. In order to test and deploy the app package, I use remote debugging. When I remote deploy on the ARM64 device, I get the following error on my [...] read more
uwp
visual-studio-2019
remote-debugging
arm64
1vote
1answer

Access Denied Calling OpenProcess From Process Running As IIS APPPOOL Account on Windows Server 2019

A tool for collecting diagnostic info, running under an account IIS APPPOOL\Content Server is attempting to make the following call: hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, false, <process id>); Process ID refers to a process running under NT AUTHORITY\IUSR account. hProcess is coming back NULL, in WinDbg !gle shows: 0:000> !gle LastErrorValue: (Win32) [...] read more
winapi
iis
permissions
openprocess
1vote
1answer

SSIS: package write file to network share - Call Package (RDP vs Remote)

I have an SSIS package that writes a .TXT data file to a folder. I tested this on my local machine: the SSIS packages successfully writes (to my C Drive-- C:\myPath). Then deployed to the server: the package fails to write (to network fileshare-- \myDomain\Folder1\Folder2). My user account has access [...] read more
sql-server
ssis
client-server
data-files
windows-networking
1vote
0answers

VirtualBox VM won't start because of Anti-Virus .dll injection

First off, I can't remove BeyondTrust PowerBroker / Symantec Anti-virus. A recent update has added an injection into VirtualBox in which VirtualBox see's it as an intrusion so the VM won't start. Now, VirtualBox itself starts fine, but starting a VM gives me this message: (rc = -5640) Please try [...] read more
dll
virtual-machine
virtualbox
antivirus
1vote
1answer

Can't start docker on Windows 10 with VirtualBox 5.1.8 r11374

Just can't start Docker on Windows 10. VT-x is on, I've re-installed Docker, Virtualbox, re-configured the NAT network device on Virtualbox, reconfigured the whole Virtualbox settings, I've re-installed whatever called the VBoxDrv.inf, I've rebooted almost 1000 times over, but I can't fix this issue. I have no idea what's going [...] read more
windows
docker
virtualbox
1vote
1answer

Microsoft SQL Server 2014 Express service fails to start

I'm having some trouble getting my SQL Server 2014 Express instance to start. In the SQL Server Config Manager, the service is set to automatic, but doesn't start with Windows. When I try and manually start it, I get this error: enter image description here [https://i.stack.imgur.com/KPKvd.jpg] I've attempted to re-install [...] read more
sql-server
installation
sql-server-express
sql-server-2014-express
1vote
1answer

Chrome crashes on screenshot using Protractor/Jasmine screenshot reporter

I've noticed that when running my protractor E2E tests in Chrome, whenever a spec fails and my reporter tries to take a screenshot, Chrome will crash with the below error log. Tests without failures work fine. IE and FF with failures work fine. [1026/090128:ERROR:process_reader_win.cc(114)] NtOpenThread: {Access Denied} A process has [...] read more
jasmine
protractor
selenium-chromedriver
chrome-options
jasmine-reporters
1vote
0answers

Winsock Kernel's WskSocket function fails with STATUS_ACCESS_DENIED on raw socket

I am using Winsock Kernel in my driver to send raw socket packets to localhost. I found g_WskProvider.Dispatch->WskSocket method failed with STATUS_ACCESS_DENIED (0xC0000022). 00000807 17.18302345 --> NPF_WSKStartup 00000808 17.18303871 <-- NPF_WSKStartup 00000809 17.18304253 --> NPF_WSKInitSockets 00000810 17.18304443 --> WSKCreateSocket 00000811 17.18304825 --> InitWskData 00000812 17.18305397 <-- InitWskData 00000813 17.18307495 --> [...] read more
c
windows
sockets
driver
winsock
1vote
4answers

Program crashing on exit

Whenever I exit my program it gives me this exception "0xC0000022: A process has requested access to an object, but has not been granted those access rights." It breaks right at the end of a function called _lock_file in _file.c. After trying to narrow down what the cause of the [...] read more
c++
c
visual-studio-2010
crash
sdl
1vote
2answers

Windows Phone 8 Emulator in VMWare Fusion on OSX

I am attempting to launch the windows phone 8 SDK emulator on my Mac so that i can do simple web testing of mobile websites i build. I have followed several guides and they all say the same thing. Such as: 6. Once the content (list of files and folders) [...] read more
visual-studio-2012
windows-phone-8
vmware
windows-phone-8-emulator
1vote
0answers

WAMP server in windowss 7 safe mode

Because windows 7 crashed and gives me this msg: The application was unable to start correctly (0xc0000022). So i started win 7 in safe mode to just backup my project database, but WAMP server is not working and it's icon is red. Is there any way to backup database or [...] read more
wamp
1vote
1answer

ffmpeg crashes on cygwin on launch with exit code 0xc0000022

I am trying to build ffmpeg with libx264 support. Configure and compilation is successful but when I am running the ffmpeg the application is crashing. ffmpeg configure option : ./configure --enable-static --enable-libx264 --enable-pthreads --enable-gpl --disable-doc --enable-memalign-hack --extra-ldflags="-L/usr/local/lib" gcc --version 4.3.4 Here is gdb dump, $gdb ffmpeg_g.exe GNU gdb(GDB) 7.2 Copyright(c) [...] read more
windows
cygwin
ffmpeg
0votes
0answers

Event 1006: SMBServer, The share denied access to the client

I have faced to Event: " The share denied access to the client. Client Name: \172.17.72.2 Client Address: 172.17.72.2:39725 User Name: SMBMM\ars Session ID: 0x980038000045 Share Name: \*\in Share Path: ??\C:\Users\jodat\Desktop\in Status: {Access Denied} A process has requested access to an object, but has not been granted those access rights. [...] read more
remote-access
windows-event-log
eventviewer
deny
0votes
0answers

KB4571703 doesn't fix ZeroLogon

I have a Windows server 2012 R2 and would like to apply the patch to fix ZeroLogon issue (CVE-2020-1472). So I download KB4571703 from Windows Update Catalog, then install it using following steps: 1.expand _f:* “C:\Temp\kb4571703.msu” C:\Temp\kb4571703 2.cd C:\Temp\kb4571703 3.dism /online /add-package /packagepath:Windows8.1-KB4571703-x64.cab 4.restart-computer I check the Installed Updates from [...] read more
windows-update
windows-server-2012-r2
0votes
2answers

Can connect to server via RDP but cannot via share files

On a Windows 2012 server I have a network shared folders. The problem is that I can access those resources using remote desktop connection, but when I use \serverIP also asks me username and password, I enter the data requested but responds with the message "access denied". Please help. This [...] read more
remote-desktop
network-shares
shared-folders
0votes
0answers

smb2 getting Access denied error on delete a file

I am using @marsaud/smb2 npm module to access the files in Network attached ,storage (i.e NAS drives). I am able to read and write the files successfully, below is my code - const SMB2 = require('@marsaud/smb2'); let opt = { "share":config.share, "domain":config.domain, "username":config.user, "password":config.password }; let smb2Client = new SMB2(opt); [...] read more
node.js
smb
nas
0votes
0answers

The application was unable to start correctly (0xc0000022)

I am stuck for weeks with my electron-angular app running locally but not on the VM it should be deployed in with this error message: The application was enable to start correctly [https://i.stack.imgur.com/YjC68.png] Has anyone encountered this error ? Here is the electron-builder.json { "productName": "MyApp", "directories": { "output": "C:-path-to-output" [...] read more
node.js
windows
electron
electron-builder
0votes
0answers

"com.hierynomus.mssmb2.SMBApiException: STATUS_ACCESS_DENIED: Authentication failed ..." on authenticate call

I'm trying to connect to an SMB server using com.hierynomus.smbj v0.10.0. Connection is ok but as soon as I try to authenticate I'm getting this exception: com.hierynomus.mssmb2.SMBApiException: STATUS_ACCESS_DENIED (0xc0000022): Authentication failed for 'USERNAME' using com.hierynomus.smbj.auth.NtlmAuthenticator@4152d38d at com.hierynomus.smbj.connection.Connection.authenticate(Connection.java:194) at MyTest.smbj(MyTest.java:...) Here is the test code to see what I'm doing: @Test [...] read more
java
smb
smbj
0votes
0answers

"com.hierynomus.mssmb2.SMBApiException: STATUS_BAD_NETWORK_NAME (0xc00000cc): Could not connect to \\\\smbproxy\\greatplains\

I am trying to access files from Linux box with hierynomus (SMB protocol) and getting this error. here is my code import java.util.EnumSet; import java.util.List; import java.util.concurrent.TimeUnit; import org.springframework.stereotype.Component; import com.hierynomus.msdtyp.AccessMask; import com.hierynomus.mssmb2.SMB2CreateDisposition; import com.hierynomus.mssmb2.SMB2ShareAccess; import com.hierynomus.smbj.SMBClient; import com.hierynomus.smbj.SmbConfig; import com.hierynomus.smbj.auth.AuthenticationContext; import com.hierynomus.smbj.connection.Connection; import com.hierynomus.smbj.session.Session; import com.hierynomus.smbj.share.DiskShare; import com.hierynomus.smbj.share.File; import [...] read more
java
smb
jcifs
smbj
0votes
0answers

Error in Whatsapp Automation using Selenium and Python

I tried to send a message to my friend in whatsapp using selenium. I downloaded the chromedriver of latest version for windows , when i ran the code the whatsapp web was opened but the message was not sent . This is my code and the errors i have got [...] read more
python
selenium
selenium-webdriver
selenium-chromedriver
whatsapp
0votes
0answers

The program [#####] iexplore.exe' has exited with code -########## The program '[#####] iisexpress.exe' has exited with code 0 (0x0)

I have asp.net MVC 3 application with extJs 4.0.7 as front end,which I used to run on VS 2015 professional and Windows 10. Whenever I am trying to execute that application it suddenly stops and throws an error: The program '[25076] iexplore.exe' has exited with code -1073741790 (0xc0000022). The program [...] read more
asp.net
asp.net-mvc
asp.net-mvc-3
iis
0votes
0answers

CreateRemoteThreadEx and NtCreateThreadEx fails

I'm currently trying to implement a Process Evasion method named Process Doppelgänging in Rust. I've successfully created the NTFS transaction, the process, I've written the new parameters in the PEB of the process but I can't create the main thread. When I attempt to create the main thread my program [...] read more
winapi
process
rust
0votes
1answer

How to allocate Dynamic Memory to Device Pointer variable in C++ CUDA

all programmers. I'm converting the existing C++ project to CUDA enhanced program. I'm new to CUDA. So I'm learning during work. I have to allocate memory to a dynamic struct member variable and the struct variable is allocated as device variable. like this: _cuda_params* dcuda_params; cudaMalloc(&dcuda_params, sizeof(_cuda_params)); cudaMemcpy((void *)dcuda_params, (void*)cuda_params, [...] read more
c++
cuda
0votes
0answers

Linaro gcc fails on Windows

I'm trying to bringup gcc-linaro-7.3.1 on windows. I've downloaded gcc-linaro-7.3.1-2018.05-i686-mingw32_aarch64-linux-gnu.tar from Linaro site, extracted using tar on Cygwin, but when I try to run "aarch64-linux-gnu-gcc.exe" it seems that nothing happens. when I try to run from Windows cmd, I get an error "The application was unable to start correctly (0xc0000022)". [...] read more
cygwin
cross-platform
linaro
0votes
1answer

Can low integrity process create a named mutant object?

I'm trying to create a new named mutant from a low integrity process. This code works great on a high integrity process, but fails on low and medium integrity. RtlInitUnicodeString(&Name, L"\\MutantName"); InitializeObjectAttributes(&Attr, &Name, OBJ_INHERIT | OBJ_OPENIF, NULL, NULL); NTStatus = NtCreateMutant(&Mutant, MUTANT_ALL_ACCESS, &Attr, 0); I'm getting NTStatus = ERROR_ACCESS_DENIED (0xc0000022). [...] read more
windows
winapi
synchronization
mutex
0votes
0answers

Docker precheck error "code E_FAIL(0x80004005)"

I started to study docker few days ago. And I had successfully created the virtual machine.But then came a problem. VBoxManage.exe throws the error to me. VBoxManage.exe:error:Details:code E_FAIL(0x80004005),component MachineWrap,interface IMachine Then I tried to reinstall the VirtualBox and Docker Toolbox, but the problem is still there. How can I run [...] read more
docker
0votes
0answers

Selenium with Python Exception when trying to get unicode text

I'm trying to get an Hebrew text out of an HTML page using the code: text = msg.find_element_by_class_name('selectable-text').text The code works great as long as we're dealing with English text. After some searching i've tried adding a utf-8 tag on the top, but it did not do anything: # This [...] read more
python
selenium
unicode
0votes
0answers

Winsock code produces 0xc0000022 error

I recently ported a linux application I wrote that uses BSD sockets extensively to winsock. The code seems to work perfectly fine on linux, and it compiles fine on windows, however when the executable is run I get a message box with the following content: The application was unable to [...] read more
c
dll
winsock
winsock2
0votes
1answer

Windows kernel error log

There are many same events all my Hyper V servers environment. I haven't found any solution for this event. If you have the solution for this error can you help me? >Log Name: Microsoft-Windows-Kernel-EventTracing/Admin >Source: Microsoft-Windows-Kernel-EventTracing >Date: 4/28/2016 1:34:27 PM >Event ID: 2 >Task Category: Session >Level: Error >Keywords: Session [...] read more
windows
kernel
0votes
1answer

Faulting application issue in NReco PDF conveter

I created an application which supports html to pdf services. I use NReco PDF Convert sdk for that. It is working well in my local machine but it is not working when I deployed it on live server. When I checked event viewer, the following error is showed. > Faulting [...] read more
c#
asp.net
windows-server-2008-r2
iis-8
0votes
0answers

IE11 crashes when started from Visual Studio

I upgraded to Windows 10 and now when I debug my websites from Visual Studio using IE 11, IE just closes. All I see is in VS's Output [Debug] Window is: The program '[984] iexplore.exe' has exited with code -1073741790 (0xc0000022). The program '[6600] w3wp.exe' has exited with code 0 [...] read more
visual-studio
debugging
crash
internet-explorer-11
windows-10
0votes
1answer

Run .exe as very restricted user

I am trying to run program.exe in a very restricted mode (Windows). This means program.exe should have access to five .txt files, and no other permissions like staring new process, shutdown, edit other files, etc. I've spent a month trying to achieve it, but there is still no results. I [...] read more
windows
cmd
sandbox
runas
0votes
0answers

Why GDB not loads dlls?

Help me to understand, why simple qt application with dynamically loading libraries run under gdb, but more complex is not. Qt Toolkit I use the for both. This is how my test application builds (lib and exe afterwards): C:/devtools/mingw-i686-4.8.2-release-posix-dwarf-rt_v3-rev3/mingw32/bin/mingw32-make -f Makefile.Debug mingw32-make[1]: Entering directory 'C:/Users/juriy/testlib' g++ -c -pipe -Wall -Wextra [...] read more
c++
qt
dll
gdb
mingw32
0votes
1answer

How can I fix this "Set-SecureBootUEFI : Incorrect authentication data: 0xC0000022" error?

I used the tutorial and the PowerShell scripts in UefiSecureBootManualTests.zip(EnableSecureBoot.ps1 and append_LostCA_db.ps1) found here to sign an .efi file and enable SecureBoot to see if the system boots(it all worked well). Now I'm trying to take the winload file from system32, sign it using the same scripts, and then overwrite [...] read more
powershell
boot
sign
winlogon
uefi
0votes
0answers

VS 2012 stops debugging right after start

I have got Windows 8 a few days ago and now there is a strange behavior: (Asp.net Application using local IIS and IE as Testbrowser) When i start the application with debugging, VS starts the build as it should be. The build completes without any errors and VS is switching [...] read more
asp.net
visual-studio-2012
windows-8
windows-8.1
0votes
2answers

Cygwin: bash.exe Application Error (0xc0000022)

I have downloaded the cygwin setup executable. When I run it, as adminstrator or not, I get the following message window: The application was unable to start correctly (0xc0000022). Click OK to close the application. Here is the list of "Unknown Package": Package: Unknown package 000-cygwin-post-install.sh exit code -1073741790 autoconf.sh [...] read more
windows-7
installation
cygwin
windows-7-x64
0votes
1answer

Application error

HI, I'm getting following error when I run the application after building it. Any solution to this problem is appreciated. "The application failed to initialize properly (0xc0000022). Click on OK to terminate the application." Thanks in adv.. read more
debugging
application-error
-1votes
1answer

WAMP server in Windows 7 safe mode

Windows 7 crashed and gives me this error message: > The application was unable to start correctly (0xc0000022) When I started Windows 7 in safe mode to backup my project database, I notice my WAMP server is not working, and it's displaying a red icon. Is there anyway to either [...] read more
windows
backup
windows-7
-1votes
1answer

Sharing folders from EFI system partition

I'm running Windows 10, and am unable to access folders I share with my local LAN boxes from an EFI partition. I have a GPT hard drive with single massive 'EFI System Partition' on it. Since Windows can't mount it automatically I run a batch script on boot which uses [...] read more
gpt
cifs
-1votes
1answer

exception in web crawler with selenium

I am learning web crawling and trying to run a simple program to print title of the page. But I am getting an org.openqa.selenium.WebDriverException. I have tried placing the chromedriver.exe file in C drive as well including options.addArguments("--no-sandbox") in program, but nothing worked. I have reinstalled chrome as well as [...] read more
java
selenium
-1votes
1answer

ZwAssignProcessToJobObject : ACCESS_DENIED

I'm trying finalize a determinated process (reference) but before it i need ZwAssignProcessToJobObject(), I made this following small code to demonstrate my problem, where Status is returning 0xC0000022 (ACCESS_DENIED). Is there a way to solve it? type NTSTATUS = cardinal; PClientId = ^TClientId; TClientId = record UniqueProcess: THandle; UniqueThread: THandle; [...] read more
delphi
winapi
kill-process
-1votes
2answers

What's the difference of launching native executable from Visual Studio with launching the exe by myself?

Details: 1. A function does not work if I launch it directly 2. From VS2015, even if I choose "Start without debugging", it will work 3. The function is RtlQueryProcessDebugInformation, it always return 0xc0000022 unless I launch it from VS 4. the file is a WMI provider DLL, #2 is [...] read more
c++
visual-studio
wmi
-1votes
2answers

Quickstart VM 5.5 failed to boot on VirtualBox 5.0.14

Not sure why it was so challenging to bring up Cloudera CDH 5.5 on VirtualBox 5.0.14 on my Windows 7 workstation (64-bit). My desktop is a Lenovo 30AGS01Y00 w/ 1 Intel64 CPU, 16GB RAM, and 1TB of HDD. The detail OS version: 6.1.7601 Service Pack 1 Build 7601. After installing [...] read more
hadoop
centos
virtualbox
cloudera
cloudera-quickstart-vm

Comments

Leave a comment

(plain text only)

Sources

  1. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  2. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0