좋은 BIOS 화면이 없다면 거의 확실히 하드웨어라는 데 동의합니다. 나는 그런 경우 당신이 해결되지 않습니다 답변을 게시 할,하지만 동일한 문제의 6 시간을 보냈다 때문 이었다 단순히 모든 수정을 무시 드라이버 (BIOS 안전 부팅 괜찮 았는데) .
드라이버 문제를 진단 할 때 가장 먼저하는 일은 Ubuntu LiveCD에서 부팅하여 하드웨어를 테스트하는 것입니다. 내 경우에는 부팅되고 제대로 작동 했으므로 이제 운전자에게 크게 기울고 있습니다. 안전 모드로 부팅하고 모든 일반적인 수정 사항, 새 드라이버, 이전 드라이버, 롤백 등을 시도합니다. 언젠가는 드라이버 설치가 완료되는 것처럼 보이지 않습니다. "시스템이 수정되지 않았습니다"라는 메시지가 표시됩니다. 그래서 나는 망가진 시스템을 가지고 있으며 무언가가 정상적으로 고치는 능력을 막고 있습니다.
이 경우 SubInACL.exe 라는 Microsoft 도구로 해결 된 레지스트리 권한 오류로 다음과 같은 명령 파일과 함께 사용되었습니다.
미래 독자 :이 문제를 발견하고 비슷한 문제가 발생하면 그냥 뛰어 내려 시도하지 마십시오. 조사를 수행하고 블로그 게시물, Google "nvidea subinacl 재설정 권한"을 읽고 진행 상황을 이해해야합니다. 업데이트 및 설치 오류가있는 여러 시스템 에서이 효과를 발휘했지만 악영향을 미치지는 않습니다.
@echo off
title Resetting ACLs...
echo.
echo Determine whether we are on an 32 or 64 bit machine
echo.
if "%PROCESSOR_ARCHITECTURE%"=="x86" if "%PROCESSOR_ARCHITEW6432%"=="" goto x86
set ProgramFilesPath=%ProgramFiles(x86)%
goto startResetting
:x86
set ProgramFilesPath=%ProgramFiles%
:startResetting
echo.
cd /d "%ProgramFilesPath%\Windows Resource Kits\Tools"
echo.
echo Resetting ACLs...
echo (this may take several minutes to complete)
echo.
echo IMPORTANT NOTE: For this script to run correctly, you must change
echo the values named YOURUSERNAME to be the Windows user account that
echo you are logged in with.
echo.
echo ==========================================================================
echo.
echo.
subinacl /subkeyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f /grant=restricted=r /grant=man=f /setowner=administrators > %temp%\subinacl_output.txt
echo.
echo.
subinacl /keyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f /grant=restricted=r /grant=man=f /setowner=administrators >> %temp%\subinacl_output.txt
echo.
echo.
subinacl /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f /grant=users=r /grant=everyone=r /grant=restricted=r /setowner=administrators >> %temp%\subinacl_output.txt
echo.
echo.
subinacl /keyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f /grant=users=r /grant=everyone=r /grant=restricted=r /setowner=administrators >> %temp%\subinacl_output.txt
echo.
echo.
subinacl /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f /grant=users=r /setowner=administrators >> %temp%\subinacl_output.txt
echo.
echo.
subinacl /keyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f /grant=users=r /setowner=administrators >> %temp%\subinacl_output.txt
echo.
echo.
echo System Drive...
subinacl /subdirectories %ProgramFilesPath%\ /grant=administrators=f /grant=system=f /grant=users=e >> %temp%\subinacl_output.txt
echo.
echo.
echo Windows Directory...
subinacl /subdirectories %windir%\ /grant=administrators=f /grant=system=f /grant=users=e >> %temp%\subinacl_output.txt
echo.
echo.
echo ==========================================================================
echo.
echo FINISHED.
echo.
echo Press any key to exit . . .
pause >NUL