Anavem
Languagefr
ErrorCommon system errors

0x00000070

ERROR_DISK_FULL

There is not enough space on the disk.

Hex code

0x00000070

Decimal

112

Severity

Error

Category

Common system errors

Description

ERROR_DISK_FULL (hex code 0x00000070, decimal 112) is a Windows error-level error code in the Common System Errors family. Microsoft surfaces this code through the Win32 API, the Common Language Runtime, the kernel, the event log, PowerShell, command-line tools (sfc, dism, gpupdate, sc), and Windows-side applications such as Outlook, Teams, Office, and System Center.

There is not enough space on the disk.

This page documents what triggers 0x00000070, the most common scenarios where it appears, the likely root causes, and a step-by-step troubleshooting workflow you can run against affected endpoints. It is intended for system administrators, MSP technicians, helpdesk engineers, and anyone diagnosing Windows behavior in a managed environment.

In-depth explanation

This is an error-severity code. Windows uses it to signal a failed operation that prevented the caller from completing its work. The underlying cause can range from a permissions or quota issue to a corrupted system component, missing dependency, or unreachable service.

It belongs to the standard Win32 error space (winerror.h) and is one of the most frequently observed codes across all Windows tooling.

The code can be looked up programmatically in PowerShell with [ComponentModel.Win32Exception]::new(112).Message (for Win32 / NTSTATUS codes that map cleanly), or with net helpmsg 112 for the legacy decimal range. For HRESULT-style codes, decode the facility and code with err.exe from the SDK or via the WinDbg !error command.

Common causes

  • Insufficient permissions — the calling process does not have the required access rights.
  • Incorrect path or filename — the target does not exist or is misspelled.
  • Antivirus or EDR locking the file or denying the operation.
  • Group Policy or Software Restriction blocking the action.
  • Disk full, quota exceeded, or volume offline.

Troubleshooting steps

  1. Re-run the failing operation from an elevated shell to rule out a UAC / permissions issue.
  2. Verify the target path or object exists and is reachable: Test-Path, icacls, Get-Acl.
  3. Temporarily disable the antivirus / EDR and retry — if it succeeds, add an exclusion or whitelist the binary.
  4. Check the Application and System event logs (eventvwr.msc) around the timestamp of the failure for related entries.
  5. Run sfc /scannow followed by DISM /Online /Cleanup-Image /RestoreHealth to repair system files if the error persists.

Decode in PowerShell

# Decode 0x00000070 (112) in PowerShell
[ComponentModel.Win32Exception]::new(112).Message

# Or via WinDbg / err.exe (Windows SDK)
# err 0x00000070

# Or net helpmsg (legacy decimal range only)
# net helpmsg 112

Frequently asked questions

What does the Windows error code 0x00000070 mean?
It is the Win32 / NTSTATUS code ERROR_DISK_FULL (decimal 112). There is not enough space on the disk.
How do I decode 0x00000070 in PowerShell?
Run [ComponentModel.Win32Exception]::new(112).Message in any PowerShell session. For HRESULT-style codes, use err.exe from the Windows SDK or the WinDbg !error command.
Where does Windows typically log this error?
It depends on the originating subsystem (Windows Update → %WinDir%\WindowsUpdate.log; AD/Kerberos → Security event log on the DC; BSOD → minidump under C:\Windows\Minidump; MSI → %TEMP%\msi*.log; WMI → Microsoft-Windows-WMI-Activity). Always cross-reference the timestamp and module name with the Application and System event logs.
Is this code recoverable?
Critical-severity codes usually require kernel-level investigation (driver, hardware, system file repair). Error and warning codes are typically recoverable through the troubleshooting workflow on this page — start with the elevated-shell + log review steps.
Should I open a Microsoft support case for this?
Open a case if the error reproduces after applying the troubleshooting steps, particularly if it blocks production workloads, occurs across multiple endpoints, or is associated with a security boundary (BitLocker recovery, Kerberos failure, DCOM hardening, SmartScreen / WDAC). Have a fresh CBS log, minidump, or Get-WinEvent export ready before opening the case.