Geeks in Phoenix

Geek Blog


How to perform a repair upgrade of Windows 11

Are you having some problems with your computer and wish you could reinstall Windows 11 without losing your files and apps? Maybe you want to upgrade to the latest version of Windows 11, and Windows Update is not offering it. Here is how to perform a repair upgrade installation of Windows 11.

How to perform a repair upgrade of Windows 11

There is one thing every Windows user fears, and that is reinstalling Windows. The fear of losing your files and installed programs will deter most people until the problem becomes too bad to ignore.

But with Windows 11, you can do a repair upgrade reasonably easily. So what is a repair upgrade? It is reinstalling Windows 11 using the same version (repair) or a newer version (repair/upgrade). It is often called an in-place repair or upgrade.

Now I have repaired several Windows computers using this method, which works most of the time. I remember one laptop with issues with being unable to right-click using the touchpad or mouse, and an in-place repair installation fixed the problem.

We first need to download the latest version of Windows 11 from Microsoft (see the link below). We will be downloading an ISO file that we will use to reinstall Windows 11. An ISO file is the format for optical disks (CD, DVD, BD).

Download Windows 11

When you reach the Windows 11 download page, scroll down until you find Download Windows 11 Disk Image (ISO). You can also create an ISO file using the Create Windows 11 Installation Media, which involves a few more steps.

Once you have the ISO file downloaded, you will need to make it a virtual DVD drive. Locate the ISO file in File Explorer and right-click on it.
Mounting an ISO file as a virtual drive in Windows 11
From the context menu that appears, select Mount. If you receive a security warning, left-click on Open. It will now appear as a DVD drive inside File Explorer.

Click on the DVD drive to display the contents. In the list of files and folders, you will find a program named Setup.
Running Windows 11 Setup with administrator privileges
To ensure we are running the install with the correct privileges, right-click on Setup and select Run as administrator from the context menu that appears. This will start the repair upgrade installation.

The first window that appears is the Windows 11 Setup screen. Usually, you would click on the Next button and proceed with the installation.
The Windows 11 Setup main screen
But if you are performing a repair installation, you may want to change whether or not to download updates, drivers, and features at this time by clicking on the Change how Setup downloads updates link.
Select whether or not to download updates and drivers before installing Windows 11
I have found that delaying downloads until after the installation is complete works best for repairing Windows.

Next, you will get the EULA (End User License Agreement), click on Accept and continue. On the next screen, you can change if you keep your files and apps or remove them.
Select whether or not to save your personal files and apps
By default, both files and apps are saved. When you are ready to start the installation, click on Install.

Once the repair upgrade starts, it can take some time to finish.
The different stages of the repair upgrade of Windows 11
Grab something to drink and find something to do. Your computer will restart several times during the installation.

How to check and repair system files in Windows 11

When it comes to repairing Windows-based computers, I always do one thing: check for corrupt system files. Corrupt system files can cause all sorts of problems, so here is how to check and repair system files in Windows 11.

How to check and repair system files in Windows 11

Repairing system files is not complex, but it can be time-consuming. Going through all of the steps outlined in this article can take several hours. Once you start a scan, you will have to allow it to complete, so be prepared to watch your computer work. And all of the links included in this article will open in a new window.

We first need to check the drive's file structure that the operating system is installed on. It is usually drive C:. For this, we will use the disk error checking program built into Windows 11.

There are a couple of different ways to run it (standard and advanced), but the most thorough way is by using the advanced method (see link below). It may take some time to run, but it is the most thorough error checking you can perform.

How to check your drive for errors in Windows 11

Now that we have checked the drive for errors, we must check for corrupted system files. For this, we will use the built-in System File Checker (SFC). Like most of the programs in this article, this program has to be run from an Administrative Command Prompt.

How to open a Command Prompt with Administrator privileges in Windows 11

SFC has multiple syntaxes and parameters you can use with it. Here are all of the syntaxes and parameters with examples of their use.

SFC [/SCANNOW] [/VERIFYONLY] [/SCANFILE=<file>] [/VERIFYFILE=<file>] [/OFFWINDIR=<offline windows directory> /OFFBOOTDIR=<offline boot directory> [/OFFLOGFILE=<log file path>]]

  • /SCANNOW - Scans integrity of all protected system files and repairs files with problems when possible.
  • /VERIFYONLY - Scans integrity of all protected system files. No repair operation is performed.
  • /SCANFILE - Scans integrity of the referenced file, repairs file if problems are identified. Specify full path <file>.
  • /VERIFYFILE - Verifies the integrity of the file with full path <file>. No repair operation is performed.
  • /OFFBOOTDIR - For offline repair, specify the location of the offline boot directory.
  • /OFFWINDIR - For offline repair, specify the location of the offline windows directory.
  • /OFFLOGFILE - For offline repair, optionally enable logging by specifying a log file path.

Examples:

  • SFC /SCANNOW
  • SFC /VERIFYFILE=c:\windows\system32\kernel32.dll
  • SFC /SCANFILE=d:\windows\system32\kernel32.dll /OFFBOOTDIR=d:\ /OFFWINDIR=d:\windows
  • SFC /SCANFILE=d:\windows\system32\kernel32.dll /OFFBOOTDIR=d:\ /OFFWINDIR=d:\windows /OFFLOGFILE=c:\log.txt
  • SFC /VERIFYONLY

System File Checker running in an Administrative Command Prompt inside of Windows 11
We want to check all of the Windows 11 protected system files, so type the following into an Administrative Command Prompt and press Enter.

SFC /SCANNOW

System File Checker results in an Administrative Command Prompt inside of Windows 11
Now four (4) possible results can appear when SFC is done scanning. They are:

Windows Resource Protection did not find any integrity violations.
All system files are acceptable, and you are good to go.

Windows Resource Protection could not perform the requested operation.
There may be another program preventing SFC from running. In this case, boot the system up into safe mode and run SFC from there.

Windows Resource Protection found corrupt files and successfully repaired them.
All system files are now correct, and you're ready to go. Just restart your computer to finalize the repairs. If you want to view the repair details, type the following into an Administrative Command Prompt and press Enter.

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

It will create a text file on your desktop named sfcdetails.txt that has all of the details of the repaired files.

Windows Resource Protection found corrupt files but was unable to fix some of them.
If you received this message, you will need to repair the hidden Windows image. To do this, we will need to run the Deployment Image Servicing and Management (DISM) program.
Deployment Image Servicing and Management running in an Administrative Command Prompt inside of Windows 11
To restore the health of the Windows image, type the following into an Administrative Command Prompt and press Enter.

DISM /Online /Cleanup-image /Restorehealth

Once DISM finishes, run SFC /SCANNOW again. This time no integrity violations should be found. If, after several attemps at automatically repairing the corrupt system file(s) fails, you may have to fix them manually. To view the details of the files that could not be automatically repaired, type the following into an Administrative Command Prompt and press Enter.

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

It will create a text file on your desktop named sfcdetails.txt. You will need to search through it and find what file(s) could not be repaired

How to manually repair corrupt system files

Note: To replace a corrupt system file, you must have a known good copy of the file(s) in question. A good file source is another computer or virtual machine running Windows 11. Since I do computer repair for a living, I have all of the versions of Windows that are still supported by Microsoft running inside virtual machines.

The first thing to do is note the location (path) and name of the file(s) that need to be replaced from the sfcdetails.txt file. Once you have another copy of the corrupt file(s), you will need to take administrative ownership of the file(s). To do this, modify the following command with the path\filename of the file you want to replace and then type it into an Administrative Command Prompt and press Enter.

takeown /f path\filename

Example: takeown /f C:\Windows\FileToBeReplaced.dll

Next, you will have to grant administrators full access to the file(s) being replaced. To do this, modify the following command with the path\filename of the file you want to replace and then type it into an Administrative Command Prompt and press Enter.

icacls path\filename /grant administrators:F

Example: icacls C:\Windows\FileToBeReplaced.dll /grant administrators:F

The third thing to do is copy the new file(s) and replace the corrupt one(s).To do this, modify the following command with the path\filename of the file you want to replace and then type it into an Administrative Command Prompt and press Enter.

copy path\filename path\filename

Example: copy C:\Temp\FileToBeReplaced.dll C:\Windows\FileToBeReplaced.dll

Free computer diagnostics

Repairing a PC can sometimes be expensive, and that is why we offer free basic in-shop diagnostics. Give one of our professional and experienced technicians a call at (602) 795-1111, and let's see what we can do for you.

Check out our reviews

Geeks In Phoenix LLC, BBB Business Review

Customer service is #1

Here at Geeks in Phoenix, we take pride in providing excellent customer service. We aim to give the highest quality of service  from computer repair, virus removal, and data recovery.

Bring your computer to us and save

Repairing a computer can be time-consuming. That is why we base our in-shop service on the time we work on your computer, not the time it takes for your computer to work! From running memory checking software to scanning for viruses, these are processes that can take some time.

Contact us

If you have any questions, please feel free to give us a call at (602) 795-1111  and talk with one of our Geeks. Or you can send us a message from our contact page contact page , and one of our Geeks will get back to you as soon as possible. Or you can stop by and see us. Here are our hours and location.

Like Geeks in Phoenix on Facebook

Follow Geeks in Phoenix on Twitter

Watch Geeks in Phoenix on YouTube