FSCTL_UPDATE_OVERLAY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntifs.h

// CTL_CODE(0x0009, 0x0ce, METHOD_BUFFERED, FILE_WRITE_ACCESS)
#define FSCTL_UPDATE_OVERLAY 0x00098338
View the official Windows hardware development documentation

NtDoc

No description available.

Windows hardware development documentation (fsctl-update-overlay)

FSCTL_UPDATE_OVERLAY control code

The FSCTL_UPDATE_OVERLAY control code updates a new data source identifier for a backing source attached to a volume.

To perform this operation, call FltFsControlFile or ZwFsControlFile with the following parameters.

Parameters

Status block

FltFsControlFile or ZwFsControlFile returns STATUS_SUCCESS if the operation succeeds. Otherwise, the appropriate function might return one of the following NTSTATUS values.

Code Meaning
STATUS_ACCESS_DENIED The requester does not have administrative privileges.
STATUS_BUFFER_TOO_SMALL The length of the input buffer pointed to by InputBuffer, and specified by InputBufferLength, is too small.
STATUS_INTERNAL_ERROR The requested volume is not accessible.
STATUS_INVALID_DEVICE_REQUEST The backing service is not present or not started.

Remarks

When the data source to update is a Windows Imaging Format (WIM) file, the input buffer will contain a WOF_EXTERNAL_INFO structure followed by a WIM_PROVIDER_UPDATE_OVERLAY_INPUT structure. The InputBufferLength in this case will be sizeof(WOF_EXTERNAL_INFO) + sizeof(WIM_PROVIDER_UPDATE_OVERLAY_INPUT). The DataSourceId value in WIM_PROVIDER_UPDATE_OVERLAY_INPUT must be for a WIM file previously added in an FSCTL_ADD_OVERLAY request.

Other backing providers will define their own specific input parameter structures.

Requirements

Requirement type Requirement
Minimum supported client Windows 8.1 Update
Header Ntifs.h (include Ntifs.h or Fltkernel.h)

See also

FSCTL_ADD_OVERLAY

FSCTL_REMOVE_OVERLAY

FSCTL_SUSPEND_OVERLAY

FSCTL_GET_EXTERNAL_BACKING

FSCTL_SET_EXTERNAL_BACKING