Fix: Error 0x80070718 Not Enough Quota is Available to Process This Command

Error 0x80070718 occurs when system resources or permissions are insufficient. This guide explains how to resolve it by adjusting registry settings, verifying permissions, and running SFC/DISM scans.

Bertie Atkinson

Error 0x80070718, often accompanied by the message ‘Not enough quota is available to process this command,’ is a Windows-specific issue that typically arises when system resources or permissions are insufficient to complete a task. This error can occur during file operations, software installations, or system updates.

The root cause often lies in misconfigured quota settings, insufficient system permissions, or corrupted system files. Resolving this error requires a combination of registry adjustments, permission verification, and system file repairs using tools like SFC and DISM.

Adjusting System Quota Settings in the Registry

One of the primary causes of error 0x80070718 is incorrect quota settings in the Windows registry. Quotas define the amount of system resources allocated to processes, and misconfigurations can lead to resource shortages. To adjust these settings:

  • Open the Registry Editor by pressing Win + R, typing regedit, and pressing Enter.
  • Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters.
  • Locate or create a DWORD (32-bit) Value named IRPStackSize.
  • Set its value to 15 or higher, depending on your system’s requirements.
  • Restart your computer to apply the changes.

This adjustment increases the stack size for I/O operations, which can resolve quota-related errors. However, proceed with caution, as incorrect registry edits can cause system instability.

Verifying System Permissions

Insufficient permissions can also trigger error 0x80070718. Ensure that your user account has the necessary privileges to perform the operation causing the error. To verify and adjust permissions:

  • Right-click the folder or file involved in the operation and select Properties.
  • Navigate to the Security tab and click Edit.
  • Ensure your user account has Full Control permissions.
  • If necessary, add your account to the list and assign the required permissions.

Permissions issues are common when working with system directories or shared resources. Ensuring proper access can eliminate quota-related errors.

Running SFC and DISM Scans

Corrupted system files can contribute to error 0x80070718. Windows includes built-in tools like System File Checker (SFC) and Deployment Imaging Service and Management Tool (DISM) to repair these files. To use these tools:

  • Open Command Prompt as an administrator by searching for cmd, right-clicking, and selecting Run as administrator.
  • Run the command sfc /scannow to scan and repair system files.
  • If SFC does not resolve the issue, run DISM /Online /Cleanup-Image /RestoreHealth to repair the Windows image.
  • Restart your computer after the scans complete.

These tools can fix underlying system file corruption, which may be contributing to the quota error.

Checking Disk Space and Resource Usage

Insufficient disk space or excessive resource usage can also lead to error 0x80070718. Ensure your system has adequate free space and is not overburdened by background processes. To check and optimize:

  • Open Task Manager by pressing Ctrl + Shift + Esc.
  • Review the Processes tab for high resource usage and terminate unnecessary tasks.
  • Check disk space by opening This PC and reviewing available storage.
  • Delete unnecessary files or move them to external storage to free up space.

Maintaining sufficient disk space and managing resource usage can prevent quota-related errors.

Updating Windows and Drivers

Outdated system components can also cause error 0x80070718. Ensure your Windows operating system and device drivers are up to date. To update:

  • Open Settings and navigate to Update & Security.
  • Click Check for updates and install any available updates.
  • Visit your device manufacturer’s website to download and install the latest drivers.

Keeping your system updated ensures compatibility and can resolve quota-related issues.

Disabling Third-Party Antivirus Software

Third-party antivirus software can sometimes interfere with system operations, leading to error 0x80070718. Temporarily disable your antivirus software to determine if it is the cause. To disable:

  • Open your antivirus software and locate the option to disable real-time protection.
  • Attempt the operation that triggered the error.
  • If the error no longer occurs, consider switching to a different antivirus solution or adjusting its settings.

This step can help identify whether third-party software is contributing to the issue.

Share This Article