What's new

Help Help nag eerror pag nag update ako from 20H2 to 21H1

Jon_m04

Addict
Sinubukan ko magupdate galing 20H2 to 21H1 kaso nageerror. Sinubukan ko narin magupdate gamit assistant at iso kaso ganun parin. nasa picture yung error na lumalabas. Ano kaya problema non mga boss?

errr.png
 

Attachments

copy and paste it in notepad, and name it whatever you want with .cmd as the file extension ex: hotfix.cmd

RUN IT AT ADMINISTRATOR LEVEL

@echo off setlocal 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. if exist "%ProgramFilesPath%\Windows Resource Kits\Tools\subinacl.exe" goto filesExist echo ***ERROR*** - Could not find file %ProgramFilesPath%\Windows Resource Kits\Tools\subinacl.exe. Double-check that SubInAcl is correctly installed and re-run this script. goto END :filesExist pushd "%ProgramFilesPath%\Windows Resource Kits\Tools" subinacl.exe /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f subinacl.exe /subkeyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f subinacl.exe /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f subinacl.exe /subdirectories %windir% /grant=administrators=f /grant=system=f echo FINISHED. echo. echo Press any key to exit . . . pause >NUL popd :END endlocal
 

Similar threads

Back
Top