Skip to content

Latest commit

 

History

History
109 lines (87 loc) · 3.09 KB

ni-winioctl-fsctl_initiate_repair.md

File metadata and controls

109 lines (87 loc) · 3.09 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist f1_keywords dev_langs topic_type api_type api_location api_name
NI:winioctl.FSCTL_INITIATE_REPAIR
FSCTL_INITIATE_REPAIR
Triggers the NTFS file system to start a self-healing cycle on a single file.
FSCTL_INITIATE_REPAIR
FSCTL_INITIATE_REPAIR control
FSCTL_INITIATE_REPAIR control code [Files]
fs.fsctl_initiate_repair
winioctl/FSCTL_INITIATE_REPAIR
fs\fsctl_initiate_repair.htm
fs
948f6c3e-34ac-4270-bb2f-dc2ffd111005
12/05/2018
FSCTL_INITIATE_REPAIR, FSCTL_INITIATE_REPAIR control, FSCTL_INITIATE_REPAIR control code [Files], fs.fsctl_initiate_repair, winioctl/FSCTL_INITIATE_REPAIR
winioctl.h
Windows.h
Windows
Windows Vista [desktop apps only]
Windows Server 2008 [desktop apps only]
Windows
FSCTL_INITIATE_REPAIR
winioctl/FSCTL_INITIATE_REPAIR
c++
APIRef
kbSyntax
HeaderDef
WinIoCtl.h
FSCTL_INITIATE_REPAIR

FSCTL_INITIATE_REPAIR IOCTL

-description

Triggers the NTFS file system to start a self-healing cycle on a single file.

To perform this operation, call the DeviceIoControl function with the following parameters.

BOOL DeviceIoControl(
  (HANDLE) hDevice,              // handle to device
  FSCTL_INITIATE_REPAIR,         // dwIoControlCode
  (PLONGLONG) lpInBuffer,        // input buffer
  (DWORD) nInBufferSize,         // size of input buffer
  NULL,                          // output buffer
  0,                             // size of output buffer
  (LPDWORD) lpBytesReturned,     // number of bytes returned
  (LPOVERLAPPED) lpOverlapped    // OVERLAPPED structure
);

-ioctlparameters

-input-buffer

-input-buffer-length

-output-buffer

-output-buffer-length

-in-out-buffer

-inout-buffer-length

-status-block

Irp->IoStatus.Status is set to STATUS_SUCCESS if the request is successful.

Otherwise, Status to the appropriate error condition as a NTSTATUS code.

For more information, see NTSTATUS Values.

-remarks

In Windows 8 and Windows Server 2012, this code is supported by the following technologies.

Technology Supported
Server Message Block (SMB) 3.0 protocol No
SMB 3.0 Transparent Failover (TFO) No
SMB 3.0 with Scale-out File Shares (SO) No
Cluster Shared Volume File System (CsvFS) Yes
Resilient File System (ReFS) No

-see-also