티스토리 뷰
Windows 10 업데이트 이후 블루스크린 문제 델타 패기지 지우는 방법
장치에 downloaded 및 준비 델타 패키지 버전의 KB4041676 또는 KB4041691사용자 수, 후 부팅에 실패 하 여 다시 시작. 시스템 관리자는 보류 중인 업데이트 관리 명령 프롬프트에서 다음 명령을 실행 하 여 제거할 수 있습니다 장치
@echo off
REM Stop all update related services
net stop usosvc
net stop wuauserv
net stop trustedinstaller
REM Delete pending.xml if it exists
takeown /f %windir%\winsxs\pending.xml >NUL 2>&1
icacls %windir%\winsxs\pending.xml /grant Everyone:F >NUL 2>&1
del %windir%\winsxs\pending.xml >NUL 2>&1
REM Modify the components hive
reg unload HKLM\Components >NUL 2>&1
reg load HKLM\ComponentsHive %windir%\system32\config\COMPONENTS
reg delete /f HKLM\ComponentsHive /v PendingXmlIdentifier >NUL 2>&1
reg delete /f HKLM\ComponentsHive /v PoqexecFailure >NUL 2>&1
reg delete /f HKLM\ComponentsHive /v ExecutionState >NUL 2>&1
reg delete /f HKLM\ComponentsHive /v RepairTransactionPended >NUL 2>&1
reg delete /f HKLM\ComponentsHive /v AIFailureInformation >NUL 2>&1
reg delete /f HKLM\ComponentsHive\Installers\RegKeySDTable /v Install >NUL 2>&1
reg delete /f HKLM\ComponentsHive\Installers\RegKeySDTable /v Uninstall >NUL 2>&1
reg delete /f HKLM\ComponentsHive\Installers\RegKeySDTable /v Uninstall >NUL 2>&1
reg unload HKLM\ComponentsHive
REM Stop Poqexec from running
reg delete /f HKLM\Software\Microsoft\Windows\CurrentVersion\SideBySide\Configuration /v DontRunPoqexecInSmss >NUL 2>&1
reg delete /f HKLM\Software\Microsoft\Windows\CurrentVersion\SideBySide\Configuration /v PoqexecCmdline >NUL 2>&1
reg delete /f "HKLM\System\CurrentControlSet\Control\Session Manager" /v SETUPEXECUTE >NUL 2>&1
REG ADD "HKLM\System\CurrentControlSet\Control\Session Manager" /v SETUPEXECUTE /t REG_MULTI_SZ /d \0 /f
dism /online /remove-package /PackageName:Package_for_RollupFix_Wrapper~31bf3856ad364e35~amd64~~15063.674.1.8 /norestart >NUL 2>&1
dism /online /remove-package /PackageName:Package_for_RollupFix_Wrapper~31bf3856ad364e35~x86~~15063.674.1.8 /norestart >NUL 2>&1
dism /online /remove-package /PackageName:Package_for_RollupFix_Wrapper~31bf3856ad364e35~amd64~~14393.1770.1.6 /norestart >NUL 2>&1
dism /online /remove-package /PackageName:Package_for_RollupFix_Wrapper~31bf3856ad364e35~x86~~14393.1770.1.6 /norestart >NUL 2>&1
원도우 커멘드(Windows Command) 유용한 것 모음(도스 커멘드(dos command)
레지스트리 하이브 로드 또는 언로드(Load or Unload Registry Hives) 작업
'PC&운영체제' 카테고리의 다른 글
[Outlook] Inbox(받은편지함)에서 수신 이메일이 사라지는 현상 (0) | 2017.11.03 |
---|---|
[MS Office] Outlook 언어변경에 따른 리본메뉴 언어 변경 방법 (1) | 2017.10.17 |
[Windows & Office] AD GPO - Microsoft Office 2013/2016 admin templates (0) | 2017.10.13 |
[Windows] forfiles - 윈도우 오래된 파일 저장일자 경과일 수 특정하여 지우기 (1) | 2017.10.11 |
[Windows] 탐색기에서 드라이브 숨기기 & 접근제어 (0) | 2017.09.14 |