Arama Yap Mesaj Submit
Request a Callback
+90
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro

Contact Us

Location Halkali merkez neighborhood fatih st ozgur apt no 46 , Kucukcekmece , Istanbul , 34303 , TR
EKA SUNUCU · DEEP TECHNICAL GUIDE

SFC: Windows Resource Protection Could Not Perform the Requested Operation

Diagnose the SFC requested operation error using Safe Mode, WinSxS Temp, DISM, CBS logs and offline SFC.

Windows 11 Windows Server Last technical review: 13 August 2026
Current source-verified findings
01

Microsoft specifically recommends rerunning SFC in Safe Mode for this result.

02

Microsoft also says to ensure PendingDeletes and PendingRenames exist under %WinDir%\WinSxS\Temp.

01

Symptoms

sfc /scannow returns requested operation shortly after start SFC repeatedly stops at the same percentage DISM and SFC results appear inconsistent
02

SFC and DISM do not do the same job

SFC validates live files protected by Windows Resource Protection. DISM services the Windows image/component store. If the component store is damaged, SFC's source for clean copies may also be compromised.

Therefore, simply repeating SFC is limited. Separate file-lock/service effects, WinSxS servicing state, component-store damage and filesystem issues.

03

Microsoft's specific advice: retry in Safe Mode

Microsoft's support page explicitly recommends Safe Mode for this result. Safe Mode reduces third-party services and drivers, which can remove certain file locks and hooks.

If SFC succeeds in Safe Mode, a normal-startup service or driver becomes a stronger suspect. If it fails there too, component store, filesystem or pending servicing state becomes more likely.

Command / check
sfc /scannow
04

WinSxS Temp: PendingDeletes and PendingRenames

Microsoft says to ensure the `PendingDeletes` and `PendingRenames` folders exist under `%WinDir%\WinSxS\Temp`. A broken servicing state around these paths can contribute to SFC failing its requested operation.

Do not download replacement folders from the internet. Inspect the local structure and permissions; random ownership or ACL changes can further damage servicing security.

Command / check
dir %windir%\WinSxS\Temp
icacls %windir%\WinSxS\Temp
05

Measure component-store health with DISM

`DISM /Online /Cleanup-Image /ScanHealth` checks the component store. If RestoreHealth fails with a source error such as 0x800f081f, focus on the repair source rather than looping SFC.

Command / check
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
06

Extract only SFC entries from CBS.log

The SFC console summary lacks detail. Microsoft documents extracting `[SR]` entries from CBS.log with `findstr` so you can see specific files and repeated repair failures.

Command / check
findstr /c:"[SR]" %windir%\Logs\CBS\CBS.log > "%userprofile%\Desktop\sfcdetails.txt"
07

Offline SFC when Windows does not boot

From WinRE, SFC can target an offline Windows installation. Do not assume C: for `/offbootdir` and `/offwindir`; Windows may be D: or another letter in WinRE.

Verify the real directory first. If the volume is BitLocker-locked, solve volume access before offline SFC.

Command / check
dir D:\Windows\System32
sfc /scannow /offbootdir=D:\ /offwindir=D:\Windows
Risk and rollback

Do not use destructive boot, BitLocker, firmware, partition or storage commands without backups and a rollback plan. Never copy example drive letters without verification.

FAQ

Frequently asked questions

How many times should I run SFC?

Do not loop the same result indefinitely; move to Safe Mode, DISM/component store and CBS logs.

Does SFC delete personal files?

SFC validates and repairs protected Windows system files; it is not a personal-file cleanup tool.

REFERANS

Official technical sources

CLUSTER

Related guides

EKA SUNUCU · WINDOWS ALTYAPISI

Is this happening on a server?

For boot, storage, RDP or update problems on a Windows VPS or physical server, send the exact error code, Windows version and console screenshot to technical support.

Top