최대 80 % CPU를 지속적으로 사용하는 배달 최적화
지난 4 ~ 5 일 동안 Windows 서비스 Delivery Optimization
(표시 이름) / DoSvc
(서비스 이름)는 CPU의 최대 80 %를 지속적으로 사용했습니다. 때로는 CPU 사용량이 상당히 일관되고 다른 때는 "스파이 키"입니다. 때로는 관련 네트워크 활동이 있고 때로는 그렇지 않습니다.
지금까지 다음을 모두 시도했지만 아무런 차이가 없습니다.
- 서비스를 중지했지만 오류 메시지와 함께 시간이 초과되었습니다
The Delivery Optimization service could not be stopped
. - 서비스의 프로세스 ID를 죽이는 것은 /
ERROR: The process with PID 80788 could not be terminated. Reason: Access is denied.
로 수행하더라도 오류 메시지와 함께 실패합니다 .LOCAL SYSTEM
nt authority\system
- PC를 재부팅합니다.
- 설정 → 업데이트 및 보안 → 배달 최적화를 통해 비활성화합니다.
- 설정 → 업데이트 및 보안 → Windows 업데이트를 통해 Windows 업데이트를 일시 중지합니다.
- 설정 → 네트워크 및 인터넷 → <내 NIC> → 속성을 통해 내 NIC를 측정으로 설정합니다.
- 이벤트 로그 "응용 프로그램"및 "시스템"을 확인했지만 규칙적이거나 관련성이없는 것을 발견했습니다.
관련성이 있는지는 모르겠지만 내 PC의 RAM 사용량도 이상했습니다. 3.13GB RAM 누락
답변
"Windows 10 배달 최적화 로그"를 검색 한 결과 https://petri.com/troubleshoot-windows-update-delivery-optimization 이로 인해 PowerShell 커맨드 렛이 생겼습니다.
몇 가지 실험 후 Get-DeliveryOptimizationStatus -Verbose | Format-List Status,Priority,SourceURL,DownloadDuration,TotalBytesDownloaded
다음을 출력했습니다.
PS C:\WINDOWS\system32> Get-DeliveryOptimizationStatus -Verbose | Format-List Status,Priority,SourceURL,DownloadDuration,TotalBytesDownloaded
VERBOSE: Perform operation 'Enumerate CimInstances' with following parameters, ''namespaceName' = root/Microsoft/Windows/DeliveryOptimization,'className' = MSFT_DeliveryOptimizationFile'.
VERBOSE: Operation 'Enumerate CimInstances' complete.
Status : Caching
Priority : Foreground
SourceURL : https://clientupdates.dropboxstatic.com/dbx-releng/dropbox_passwords/win/DropboxPasswords_beta.appinstaller
DownloadDuration : 10:14:42.1920000
TotalBytesDownloaded : 50549400
Status : Paused
Priority : Background
SourceURL :
DownloadDuration : 00:00:00
TotalBytesDownloaded : 0
Status : Downloading
Priority : Foreground
SourceURL : https://clientupdates.dropboxstatic.com/dbx-releng/dropbox_passwords/win/DropboxPasswords_1.1.27.appx
DownloadDuration : 16:13:46.5660000
TotalBytesDownloaded : 70817815424
PS C:\WINDOWS\system32>
Dropbox 비밀번호와 관련된 항목이 아니라 Microsoft와 관련된 항목이 표시 될 것으로 예상했습니다. 그중 하나는 16 시간 이상 지속 되고 65.95GB를 다운로드 한 다운로드입니다 ! 전체 앱은 161MB 밖에되지 않습니다!
Dropbox 암호는 발표일 (2020/08/12) 또는 다음 날 (2020/08/13)에 설치했을 때이 문제가 시작된 시점 인 타임 라인과 일치합니다 .
설정 → 앱 → 앱 및 기능을 통해 앱을 제거했지만 문제가 진정되지 않고 Get-DeliveryOptimizationStatus
여전히 동일하게보고되었습니다.
내 PC를 재부팅 한 결과 다음을 발견했습니다.
- 문제는 거의 완전히 가라 앉았다 . 프로세스는 여전히 실행 중이지만 이제 정상일 수있는 ~ 12 %의 CPU 만 사용하고 있습니다.
- 처음 몇 분 동안
Get-DeliveryOptimizationStatus
은 활동이 없다고보고했습니다. - 몇 분 후
Get-DeliveryOptimizationStatus
두 가지 활동이보고되었습니다. 두 가지 모두 Dropbox 비밀번호 였지만 둘 다 일시 중지되었습니다. - 설정 → 앱 → 앱 및 기능에서 Dropbox 비밀번호가 다시 설치되었다고보고되어 다시 제거했습니다.
Get-DeliveryOptimizationStatus
여전히 모든 활동이 일시 중지되었다고보고합니다.